I have a fade effect, ie an image fades into view and then out of view using this code in the "on Timer"
if Opacity<=10 then
step=2;
elseif Opacity >=250 then
step=-2;
end
Opacity=Opacity+step;
long = DLL.CallFunction("AutoPlay\\Docs\\wTrans.dll", "SetWindowTransparency", handle..","..Opacity, DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL);
The trouble is I want it to fade into view and then out of view once only, and then to fade into my main application...how do I stop this looping I am getting and then launch my main application?
TIA
Wookie

