WoW:API ScrollingMessageFrame AddMessage: Difference between revisions
Jump to navigation
Jump to search
AddMessage -Documentation by Jason Citron-
No edit summary |
mNo edit summary |
||
Line 30: | Line 30: | ||
;''Description'' | ;''Description'' | ||
: | IMPORTANT: This document is somewhat incomplete (there are additional arguments) | ||
---- | ---- | ||
{{Template:WoW API}} | {{Template:WoW API}} |
Revision as of 04:40, 7 February 2005
Outputs text to a local frame in the specified color.
AddMessage(text, red, green, blue);
- Arguments
- (String text, Number red, Number green, Number blue)
- text
- The message to output
- red
- The intensity of the red component. A clamped float between 0.0 and 1.0
- green
- The intensity of the green component. A clamped float between 0.0 and 1.0
- blue
- The intensity of the blue component. A clamped float between 0.0 and 1.0
- Returns
- nil
- Example
AddMessage("Testing", 1.0, 0.0, 0.0);
- Result
Testing -- in red
- Description
IMPORTANT: This document is somewhat incomplete (there are additional arguments)