Search found 3299 matches

by Mr. Kibernetik
Fri Dec 01, 2023 5:56 am
Forum: Loud Typer
Topic: unable to restore purchase, no sounds heard anymore
Replies: 2
Views: 9533
Flag: Russia

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...
by Mr. Kibernetik
Sun Nov 05, 2023 4:08 pm
Forum: Other topics
Topic: Does SB have a SWAP function?
Replies: 1
Views: 6554
Flag: Russia

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...
by Mr. Kibernetik
Fri Nov 03, 2023 4:46 pm
Forum: Loud Typer
Topic: One license for two Macbooks?
Replies: 1
Views: 5874
Flag: Russia

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.
by Mr. Kibernetik
Mon Oct 16, 2023 9:35 am
Forum: Инструкции
Topic: Smart BASIC SDK для Xcode
Replies: 54
Views: 162995
Flag: Russia

Re: Smart BASIC SDK для Xcode

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

Re: Smart BASIC SDK for Xcode

SDK is updated to version 6.8.
by Mr. Kibernetik
Fri Oct 13, 2023 7:05 pm
Forum: Версии
Topic: 6.8
Replies: 1
Views: 3490
Flag: Russia

Re: 6.8

Версия опубликована.
by Mr. Kibernetik
Fri Oct 13, 2023 7:05 pm
Forum: Versions
Topic: 6.8
Replies: 1
Views: 3345
Flag: Russia

Re: 6.8

The version is published.
by Mr. Kibernetik
Fri Oct 13, 2023 12:19 pm
Forum: Versions
Topic: 6.8
Replies: 1
Views: 3345
Flag: Russia

6.8

A bug in RND function will be fixed.
https://nitisara.ru/forum/viewtopic.php ... 400#p15400
by Mr. Kibernetik
Fri Oct 13, 2023 12:19 pm
Forum: Версии
Topic: 6.8
Replies: 1
Views: 3490
Flag: Russia

6.8

Будет исправлена ошибка функции RND.
https://nitisara.ru/forum/viewtopic.php ... 400#p15400
by Mr. Kibernetik
Wed Oct 04, 2023 6:19 pm
Forum: Other topics
Topic: Programming for button release
Replies: 9
Views: 34619
Flag: Russia

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 ...