First new remake is complete ..... sort of - it's the facelift for my website! Yep, the old 90's look has gone, and a snazzy new modern look has replaced it. That should now leave me free to start getting my head back into coding in 2012

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuFUNCTION LoadHiScore:
IF DOESFILEEXIST("hiscore.dat")
OPENFILE(0,"hiscore.dat",TRUE)
READWORD 0,hiscore
CLOSEFILE 0
ELSE
hiscore=0
ENDIF
ENDFUNCTION
Quote from: FutureCow on 2009-Oct-09
I'd love to see this command too.
In my case, I have a what you could think of as a set of selectable tiles where there are a lot more than fit on the screen at any time. The set of tiles can be scrolled left & right to find the one you want to select.
The tiles that get scrolled are created dynamically by the program, so there's no image file I can load as animation frames.
Additionally, as the set of tiles can scroll, the first and last tiles on the screen will often be partial ones, so I can't just draw animation "frames" to the screen to get around the problem as drawanim doesn't support drawing partial frames.