home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Acorn User 10
/
AU_CD10.iso
/
Archived
/
Updates
/
Flash
/
writeflash
/
Examples
/
first
< prev
next >
Wrap
Text File
|
2000-04-19
|
575b
|
38 lines
FileVersion 1
// all units are in 1/20th of a pixel
FrameArea {
width 4000
height 3000
}
// frames per second
FrameRate 10.0
BackgroundColour { 0 128 128 }
// define the shape
DefineShape {
id 1
fillstyle { solid ffffffff }
selectfillstyle0 1
moveby { 1000 1000 }
lineby { 1000 1000 }
lineby { 1000 -1000 }
lineby { -1000 -1000 }
lineby { -1000 1000 }
}
// place the shape on the screen
PlaceObject {
depth 1
id 1
matrix {
65536 // scale x and y
0 500 // translate
}
}
// show what we've got so far
ShowFrame { }