Search found 3299 matches
- Fri Dec 01, 2023 5:56 am
- Forum: Loud Typer
- Topic: unable to restore purchase, no sounds heard anymore
- Replies: 2
- Views: 9533
- Flag:

Re: unable to restore purchase, no sounds heard anymore
You report that: a) purchase cannot be restored b) app plays no sounds at all despite that you rebooted your Mac and re-installed the app. Regarding problem (a) Are you sure you did not change your AppleID on your Mac? "Nothing to restore" error says that your current AppleID cannot be verified as a...
- Sun Nov 05, 2023 4:08 pm
- Forum: Other topics
- Topic: Does SB have a SWAP function?
- Replies: 1
- Views: 6554
- Flag:

Re: Does SB have a SWAP function?
In BASIC language there is no SWAP function. In any case you will need to use extra assignment to change variables values. a=1 ! b=2 PRINT a,b swap(a,b) a=swap.x ! b=swap.y PRINT a,b END DEF swap(x,y) temp=x x=y y=temp ENDDEF Or more simple way, without a function: a=1 ! b=2 PRINT a,b temp=a ! a = b...
- Fri Nov 03, 2023 4:46 pm
- Forum: Loud Typer
- Topic: One license for two Macbooks?
- Replies: 1
- Views: 5874
- Flag:

Re: One license for two Macbooks?
Hi!
As far as I know, Apple treats different Apple iCloud accounts as different users.
Maybe they have some exclusions, you better ask Apple for the details.
As far as I know, Apple treats different Apple iCloud accounts as different users.
Maybe they have some exclusions, you better ask Apple for the details.
- Mon Oct 16, 2023 9:35 am
- Forum: Инструкции
- Topic: Smart BASIC SDK для Xcode
- Replies: 54
- Views: 162995
- Flag:

Re: Smart BASIC SDK для Xcode
SDK обновлен до версии 6.8.
- Mon Oct 16, 2023 9:35 am
- Forum: Instructions
- Topic: Smart BASIC SDK for Xcode
- Replies: 60
- Views: 174036
- Flag:

Re: Smart BASIC SDK for Xcode
SDK is updated to version 6.8.
Re: 6.8
Версия опубликована.
Re: 6.8
The version is published.
6.8
A bug in RND function will be fixed.
https://nitisara.ru/forum/viewtopic.php ... 400#p15400
https://nitisara.ru/forum/viewtopic.php ... 400#p15400
6.8
Будет исправлена ошибка функции RND.
https://nitisara.ru/forum/viewtopic.php ... 400#p15400
https://nitisara.ru/forum/viewtopic.php ... 400#p15400
- Wed Oct 04, 2023 6:19 pm
- Forum: Other topics
- Topic: Programming for button release
- Replies: 9
- Views: 34619
- Flag:

Re: Programming for button release
I think I am not clear on how buttons operate: Exactly what do you mean "button WAS pressed"? When was the button pressed? When does it no longer indicate that it is pressed? ( i.e. expression returns "0"). I have assumed that when it is released it will immediately give "0" as the result. I think ...