Search found 160 matches
- Tue Oct 03, 2017 12:38 am
- Forum: Other topics
- Topic: Keyboard Issue with iOS 11
- Replies: 23
- Views: 6835
Re: Keyboard Issue with iOS 11
It’s the same in iOS 11.1 beta 1 too! Apple isn’t going to change it.
- Mon Oct 02, 2017 10:38 pm
- Forum: Other topics
- Topic: Keyboard Issue with iOS 11
- Replies: 23
- Views: 6835
Re: Keyboard Issue with iOS 11
Hold down the ' button and it will give you options. You can select the correct quote. It frustrated me at first too!
- Fri Sep 22, 2017 3:22 am
- Forum: BASIC programs
- Topic: Frog Jump v1.1 - peg jump type puzzle game (iPad/iPhone)
- Replies: 15
- Views: 8459
Re: Frog Jump v1.1 - peg jump type puzzle game (iPad/iPhone)
REM poop hop.txt v1.1 (ipad/iphone) 'A triangle peg jump type puzzle game 'Coded by Dav, SEP/2017 'changed emojio 9.21.2017 'HOW TO PLAY: Tap on a frog and jump over another. 'You can only jump to an empty spot, and over 1 frog. 'The goal is to get rid of as many frogs as possible. 'Leave only ONE...
- Fri Sep 22, 2017 12:23 am
- Forum: BASIC programs
- Topic: Frog Jump v1.1 - peg jump type puzzle game (iPad/iPhone)
- Replies: 15
- Views: 8459
Re: Frog Jump v1.1 - peg jump type puzzle game (iPad/iPhone)
X = sw/2 - (character_point * characters)
- Thu Sep 21, 2017 7:08 pm
- Forum: BASIC programs
- Topic: Frog Jump v1.1 - peg jump type puzzle game (iPad/iPhone)
- Replies: 15
- Views: 8459
Re: Frog Jump v1.1 - peg jump type puzzle game (iPad/iPhone)
Just for fun I changed it a bit! Lol
- Thu Sep 21, 2017 3:24 pm
- Forum: BASIC programs
- Topic: Frog Jump v1.1 - peg jump type puzzle game (iPad/iPhone)
- Replies: 15
- Views: 8459
Re: Frog Jump v1.1 - peg jump type puzzle game (iPad/iPhone)
Love the old Peg game with a new frog twist! It’s fun but it’s belittling my IQ! I need to make a solve function so stroke my ego!
Cheers,
DrChip
Cheers,
DrChip
- Sun Jun 11, 2017 5:38 pm
- Forum: Другие темы
- Topic: Масштабирование под разные экраны
- Replies: 20
- Views: 10804
Re: Масштабирование под разные экраны
GRAPHICS REFRESH OFF SET TOOLBAR OFF SET ORIENTATION LANDSCAPE OPTION TEXT POS CENTRAL OPTION SPRITE POS CENTRAL OPTION IMAGE POS CENTRAL maxx=SCREEN_WIDTH() maxy=SCREEN_HEIGHT() SPRITE 1 BEGIN maxx,maxy GRAPHICS CLEAR 0,0,0 DRAW CIRCLE maxx/2,maxy/2 SIZE maxy/2 DRAW LINE 0,maxy/2 TO maxx,maxy/2 DRA...
- Wed May 31, 2017 10:19 am
- Forum: BASIC programs
- Topic: Lissajous Curves/Figures
- Replies: 13
- Views: 9446
Re: Lissajous Curves/Figures
Hi George,
It runs fine on a iPhone. I just added the screen width and height to the code. Small change but it works.
It runs fine on a iPhone. I just added the screen width and height to the code. Small change but it works.
- Wed May 31, 2017 3:31 am
- Forum: BASIC programs
- Topic: Lissajous Curves/Figures
- Replies: 13
- Views: 9446
Re: Lissajous Curves/Figures
/* PROGRAM: Lissajous Curves v1.0 George McGinn May 30, 2017 V1.0 – Initial Program (sizing for iPhone not working) Definition of Lissajous figure: any of an infinite variety of curves formed by combining two mutually perpendicular simple harmonic motions, commonly exhibited by the oscilloscope, an...
- Tue May 23, 2017 8:07 pm
- Forum: BASIC programs
- Topic: 3d cone
- Replies: 1
- Views: 2295
3d cone
REM 3D cone REM just having some fun with optics! REM enjoy... GRAPHICS sh=SCREEN_HEIGHT() sw=SCREEN_WIDTH() circles = 8 DIM cx(circles+1), cy(circles+1), cxr(circles+1), cyr(circles+1) DIM cc(circles+1), cs(circles+1), ct(circles+1), ctg(circles+1) setup: sizee = 220 c = 0 FOR i = 1 TO circles cx(...