WoW:API MessageFrame AddMessage: Difference between revisions
Jump to navigation
Jump to search
MessageFrame:AddMessage -Documentation by Jason Citron, Additions by Dan Yankowsky, Fixes by Beladona-
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<center>'''AddMessage''' ''-Documentation by Jason Citron, Additions by Dan Yankowsky-''</center> | <center>'''MessageFrame:AddMessage''' ''-Documentation by Jason Citron, Additions by Dan Yankowsky, Fixes by Beladona-''</center><br/><br/> | ||
AddMessage(text, red, green, blue, alpha, holdTime); | Outputs text to a MessageFrame in the specified color, for a specified amount of time. | ||
MessageFrame:AddMessage("text", red, green, blue, alpha, holdTime); | |||
---- | ---- | ||
Line 11: | Line 12: | ||
:;text : The message to output | :;text : The message to output | ||
:;red : The intensity of the red component. A | :;red : The intensity of the red component. A clamped float between 0.0 and 1.0 | ||
:;green : The intensity of the green component. A | :;green : The intensity of the green component. A clamped float between 0.0 and 1.0 | ||
:;blue : The intensity of the blue component. A | :;blue : The intensity of the blue component. A clamped float between 0.0 and 1.0 | ||
:;alpha : The opacity | :;alpha : The level of alpha opacity. A clamped float between 0.0 and 1.0 | ||
:;holdTime : | :;holdTime : length of time before the message fades out from the frame, in seconds | ||
---- | ---- | ||
Line 24: | Line 25: | ||
---- | ---- | ||
;''Example'' | ;''Example'' | ||
AddMessage("Testing", 1.0, 0.0, 0.0, 1.0, 5); | UIErrorsFrame:AddMessage("Testing", 1.0, 0.0, 0.0, 1.0, 5); | ||
;''Result'' | ;''Result'' | ||
Testing -- in red | Testing -- in red, fades out after 5 seconds | ||
---- | ---- | ||
;''Description'' | |||
Any of the parameters after text are optional. The hold time should also be set however, otherwise the message will remain within the ScrollingMessageFrame until it is scrolled up past the lines specified in the frame, or until you exit the game. | |||
---- | ---- | ||
{{Template:WoW API}} | {{Template:WoW API}} |
Revision as of 22:43, 11 January 2006
Outputs text to a MessageFrame in the specified color, for a specified amount of time.
MessageFrame:AddMessage("text", red, green, blue, alpha, holdTime);
- Arguments
- (String text, Number red, Number green, Number blue, Number alpha, Number holdTime)
- 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
- alpha
- The level of alpha opacity. A clamped float between 0.0 and 1.0
- holdTime
- length of time before the message fades out from the frame, in seconds
- Returns
- nil
- Example
UIErrorsFrame:AddMessage("Testing", 1.0, 0.0, 0.0, 1.0, 5);
- Result
Testing -- in red, fades out after 5 seconds
- Description
Any of the parameters after text are optional. The hold time should also be set however, otherwise the message will remain within the ScrollingMessageFrame until it is scrolled up past the lines specified in the frame, or until you exit the game.