Quote: "
4: Can someone help me a bit with the Sync on and Load file stuff?"
Well, sync on turns on sync, which refreshes the screen. You put it at the beginning of programs, like this:
See the sync rate 60? Yes you do. That is the framerate you want your program to run at.
As for loading files, it depends on what you're loading. There are many different types of media. To load an image, you would use
load image "filename",image number
To load a 3d model:
load object "filename",object number
There are more variables you can define in those calls but you won't need to worry about that for now.
Hope that helps.