Search found 623 matches
- Mon Dec 07, 2020 10:06 am
- Forum: Other topics
- Topic: Copy files between BASIC v6 and other apps
- Replies: 20
- Views: 1157
- Flag:
Re: Copy files between BASIC v6 and other apps
[/quote] Yes, and the content of the old Smart Basic app is now in a zip file via step 1. Being in step 2, I cannot execute step 3 because no token or other reference appears to the Basic app after touching the ' share 'button. I am concerned that the latest iOS version (12.4.9) of this iPad Air fro...
- Thu Nov 19, 2020 4:45 pm
- Forum: Other topics
- Topic: Revival of (smart)Basic
- Replies: 3
- Views: 241
- Flag:
Re: Revival of (smart)Basic
How do i ZIP them within sB (5.8). I do not yet ,master the process of copying files from 5.8 to 6.0. That is still magic to me.
- Thu Nov 19, 2020 4:10 pm
- Forum: Other topics
- Topic: Revival of (smart)Basic
- Replies: 3
- Views: 241
- Flag:
Revival of (smart)Basic
(smart)Basic is alive again. I would like to post all files of my roulette program here, but i don't have a clue how to do it. Anybody?
- Tue Jun 16, 2020 7:19 am
- Forum: Other topics
- Topic: Is there an easy way to FILL a sector?
- Replies: 2
- Views: 1649
- Flag:
Re: Is there an easy way to FILL a sector?
There is. Send me an email at "hotoom@planet.nl" and i'll email you a function which does the job (and more
).


Re: Matlib
This works normal
Code: Select all
option base 1
graphics ! graphics clear .8,.8,.8
dim a(10)
vec_in(3,a,100,100)
text
for i=1 to 3 ! print a(i) ! next i
end
{matlib}
Re: Matlib
Hi,
Can you post the calling program? And which (date) version did you download?
Can you post the calling program? And which (date) version did you download?
- Thu May 23, 2019 8:40 pm
- Forum: Other topics
- Topic: Appending sound files ?
- Replies: 4
- Views: 192
- Flag:
Re: Appending sound files ?
Thank you for the info. I was hoping for a simple FILE "a.wav" APPEND "b.wav" But I now understand life isn 't that easy. 😂 If you look at the internal structure of a WAV file, you may understand why concatenating two WAV files is far more complicated than concatenating two strings. It is doable, i...
- Thu May 23, 2019 4:09 pm
- Forum: Other topics
- Topic: Appending sound files ?
- Replies: 4
- Views: 192
- Flag:
Re: Appending sound files ?
You could also search for "sound" and "FFT" for more libraries.
- Thu May 23, 2019 3:56 pm
- Forum: Other topics
- Topic: Appending sound files ?
- Replies: 4
- Views: 192
- Flag:
- Mon May 20, 2019 7:29 am
- Forum: BASIC programs
- Topic: A versatile clipboard
- Replies: 4
- Views: 3192
- Flag:
Re: A versatile clipboard
I think I mentioned in the other post that numeric values must be strings (with quotes). I was looking into seeing if I could create a DATA statement and instead of doing a SPLIT, I would do a READ directly into the variable name, removing the extra steps in splitting it into an array then looping ...