Thread: UIFrameFade
View Single Post
06-13-11, 11:59 AM   #4
Goldpaw
A Wyrmkin Dreamwalker
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 56
Once a fade is in motion, you have to stop it in order to start a new one, or the new one will simply be ignored.

Try adding this before each fadein/out:

lua Code:
  1. if UIFrameIsFading(frame) then
  2.     UIFrameFadeRemoveFrame(frame)
  3. end

Last edited by Goldpaw : 06-13-11 at 12:01 PM.
  Reply With Quote