Browse by Tags

Tagged Content List
  • Wiki Page: Small Basic Sample: GameGraphics

    Code '*************************************************************************************** 'Import XZG681 'Sample program to demonstate virtually all of the SmallBasic GraphicsWindow commands 'Includes use of Shapes, Images, Arrays, Mouse and Keyboard control 'Does...
  • Wiki Page: Small Basic Sample: Turtle Plus Flickr

    Code GraphicsWindow.Show() pic = Flickr.GetRandomPicture("lightning") gw = GraphicsWindow.Width gh = GraphicsWindow.Height GraphicsWindow.DrawResizedImage(pic, 0, 0, gw, gh) distance = 50 Turtle.Speed = 9 For sides = 3 To 20 DrawPolygon() EndFor Sub DrawPolygon...
  • Wiki Page: Small Basic Sample: Arrays

    Code '*************************************************************************************** 'Import FCL390 'Sample program to demonstate the use of arrays 'An array is a list of related data that can be added to, deleted from, modified and accessed to perform a task '...
  • Wiki Page: Small Basic Sample: Snake

    Code Initialize() While (GameState <> "") DoGameLoop() EndWhile Program.End() Sub Initialize InitializeVariables() InitializeScreen() EndSub Sub InitializeVariables Array.SetValue("DeltaX","North",0) Array.SetValue("DeltaX","East"...
  • Wiki Page: Small Basic Sample: JetLag

    This is a video game where you have to avoid obstacles. Start the game by hitting the space bar, move left and right with the arrow keys. You can import the program with ID RCB513 Code Initialize() While (GameState<>"End") DoGameLoop() EndWhile Program.End() Sub Initialize...
  • Wiki Page: Small Basic Sample: Flickr Collage

    Table of Contents What is Flickr Collage? Code Reference What is Flickr Collage? With this sample you can use flickr to randomize some online photos on a tag.They will displayed on Graphics Window. Code tag = "seattle" pic = "MyPic" For i = 1 To 20 x = Math.GetRandomNumber...
Page 1 of 1 (6 items)
Can't find it? Write it!