ghetek Posted July 10, 2005 Posted July 10, 2005 all i wanted to do was move an image across the screen SMOOTHLY! first i tried a splash screen with a pixel move over and a 10ms sleep time but that was way too choppy so i had to resort to this nasty little image jumping splash screen... would there be a better way to move that image in a gui? i just want to move a few images from the extent of the right side to the left side. For $i = 1 to iniread($db,"geninfo","numinages","10") Step 1 scrollsplash(@scriptdir & iniread($db,"image" & $i,"file","NA"),iniread($db,"image" & $i,"width","NA"),iniread($db,"image" & $i,"height","NA"),[COLOR=red]2500[/COLOR]) Next func scrollsplash($file,$picwidth,$picheight,$sleepval) For $i = @DesktopWidth + 1 to 0-$picwidth Step -200 SplashImageOn ( "you shouldnt see this!",$file,$picwidth,$picheight,$i,-1,1) sleep($sleepval) Next endfunc
w0uter Posted July 10, 2005 Posted July 10, 2005 you could make it in flash. and then embed it in a gui. My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now