Search found 635 matches
- Wed Jun 01, 2022 2:13 pm
- Forum: BASIC programs
- Topic: Breaking news....
- Replies: 0
- Views: 162
- Flag:
Breaking news....
For iPad only. Easily expandable with more text blocks. 7A42B5E2-503A-4D00-98C8-669DE4091E3E.jpeg init_prog() r=8 ! rr=24 ! rrrx=42-rr ! rrry=32-rr eyes(0,0) ! pause 1 ! wink() say_text(1) do slowdown for dx=rrrx to -rrrx step -5 dy=rrry-3+rnd(4) if rnd(1)<.1 then wink() eyes(dx,dy) ! pause .2 next ...
- Sun Feb 13, 2022 3:31 pm
- Forum: Other topics
- Topic: Image chopping
- Replies: 9
- Views: 981
- Flag:
Re: Image chopping
Look in the programs section for more stuff about cards.
- Sun Feb 13, 2022 3:27 pm
- Forum: BASIC programs
- Topic: Card trick
- Replies: 0
- Views: 473
- Flag:
Card trick
Hi, 2 programs. One to load and save a set of playing cards from internet (program and cards-file from Dave), and one program which uses the cards file for a trick. 4CBD85F1-A198-4044-96FA-165F0C164914.png First program: 'cards.txt v1.0 (iphone/ipad) 'Demos a nice deck of cards using a sprite sheet....
- Thu Dec 30, 2021 2:20 pm
- Forum: BASIC programs
- Topic: Roulette game
- Replies: 5
- Views: 872
- Flag:
Re: Roulette game
I assume that the file "wheel.jpg" has also been succesfully downloaded? if not please tell me. Anyhow, the only .sb file you really need is the following, usung the old-fashioned way: ' roulette project (final version oct. 25, 2019) ' bw=64 ' basic dimension for generated board xo=20 ! yo=20 ' left...
- Wed Dec 29, 2021 6:19 pm
- Forum: BASIC programs
- Topic: Roulette game
- Replies: 5
- Views: 872
- Flag:
Re: Roulette game
First create a "roulette" map in SB. Using the "Files" app, select the 11 unzipped files ("select" function in the right upper corner) and choose the "share" function at the bottom of the screen. The applications with the share capability appear on the screen; from them, then select the SB icon. Hav...
- Wed Dec 29, 2021 12:17 pm
- Forum: BASIC programs
- Topic: Roulette game
- Replies: 5
- Views: 872
- Flag:
- Tue Dec 28, 2021 11:11 am
- Forum: Other topics
- Topic: Test with .zip file
- Replies: 0
- Views: 371
- Flag:
- Tue Dec 07, 2021 8:24 am
- Forum: BASIC programs
- Topic: Rotating rods
- Replies: 1
- Views: 591
- Flag:
Rotating rods
This is a variation of the spirograph program. The connected rods themselves are added to the screen. Furthermore, the various parameters can be set at the start of the program. You may configure the rods yourself, or have them randomly generated. The lengths of the rods are normalized in such a way...
- Fri Nov 26, 2021 9:57 am
- Forum: BASIC programs
- Topic: Hanoi Tower to Go
- Replies: 1
- Views: 546
- Flag:
Re: Hanoi Tower to Go
Very nice user interface!
A classic example of a solution by recursion.
A classic example of a solution by recursion.
- Mon Nov 08, 2021 10:54 am
- Forum: BASIC programs
- Topic: Music player
- Replies: 0
- Views: 623
- Flag:
Music player
Hi, i use this music player to play my own (digitized) LP's and CD's. It has a fix size and fits on an iPhone 5S and up. B83D5F5A-7C8A-4A96-A0D9-81E7559EF191.jpeg The code: ' music player (version Dec. 11th, 2019) ' init_program() new_track1: fx=xs+10 ! fy=ys+10 ! fw=sw-100 ! fh=sh-200 f$=file_selec...