WoW:API ScrollingMessageFrame SetFadeDuration

From AddOn Studio
Revision as of 04:38, 13 February 2006 by WoWWiki>Maldivia
Jump to navigation Jump to search
ScrollingMessageFrame:SetFadeDuration -Documentation by Maldivia-



Set the fade duration (the time it takes from the line starts to fade till it's hidden) of lines added to a ScrollingMessageFrame.

ScrollingMessageFrame:SetFadeDuration(seconds);



Arguments
(Number seconds)
seconds
The duration of the fade in seconds.

Returns
nil

Example
DEFAULT_CHAT_FRAME:SetFadeDuration(15);
Result
Changes the fade duration for lines added or updated to 15 seconds (very slow fade).

Details

SetFadeDuration(seconds) doesn't affect already visible lines, unless these are updated.
A way to update them is to call one of the Scroll methods.
The default fade duration seems to be 3 seconds.
See also ScrollingMessageFrame:EnableFading([isEnabled]) and ScrollingMessageFrame:SetTimeVisible(seconds).

Template:WoW API