Search found 3298 matches

by Mr. Kibernetik
Wed Oct 01, 2025 12:50 am
Forum: Other topics
Topic: MOD() doesn't work
Replies: 1
Views: 166
Flag: Russia

Re: MOD() doesn't work

There is no MOD function in Basic.
by Mr. Kibernetik
Sun Sep 07, 2025 11:50 pm
Forum: Other topics
Topic: Sending a program to another iPad/iPhone?
Replies: 2
Views: 366
Flag: Russia

Re: Sending a program to another iPad/iPhone?

No. BASIC program is run by BASIC app only. You need BASIC app installed on the device to run BASIC program on it.
by Mr. Kibernetik
Wed Aug 13, 2025 12:35 pm
Forum: Loud Typer
Topic: New purchase, no sounds
Replies: 5
Views: 1744
Flag: Russia

Re: New purchase, no sounds

Maybe there is some incompatible sound configuration in your system. Loud Typer relies on the macOS sound setup to produce sounds. The only case when Loud Typer is silent is when typing inside browser password fields or similar places because macOS does not publish keyboard events from such protecte...
by Mr. Kibernetik
Wed Aug 13, 2025 3:30 am
Forum: Loud Typer
Topic: New purchase, no sounds
Replies: 5
Views: 1744
Flag: Russia

Re: New purchase, no sounds

Check the volume control inside the app.
You should hear sounds even in the free version.
by Mr. Kibernetik
Wed Jul 02, 2025 4:35 am
Forum: BASIC SDK for Xcode
Topic: BASIC SDK
Replies: 2
Views: 6076
Flag: Russia

Re: BASIC SDK

by Mr. Kibernetik
Fri Jan 17, 2025 2:50 am
Forum: Suggestions on improvement
Topic: Future of stereo master and ARM Macs
Replies: 1
Views: 53322
Flag: Russia

Re: Future of stereo master and ARM Macs

Thank you for your request.
by Mr. Kibernetik
Fri Oct 18, 2024 12:27 pm
Forum: Other topics
Topic: Copy/Paste printed output
Replies: 6
Views: 36385
Flag: Russia

Re: Copy/Paste printed output

You can print values to file if you need a text copy of results.
by Mr. Kibernetik
Thu Oct 17, 2024 8:08 am
Forum: Other topics
Topic: Copy/Paste printed output
Replies: 6
Views: 36385
Flag: Russia

Re: Copy/Paste printed output

I do not understand the problem.
The text printed by PRINT is selectable for copying after TEXT mode is switched into.
by Mr. Kibernetik
Fri Oct 11, 2024 9:48 pm
Forum: Other topics
Topic: Referencing a n array from a function
Replies: 3
Views: 15396
Flag: Russia

Re: Referencing a n array from a function

There are different ways to access array from function. This program sample demonstrates them: dim array(10,10) array(1,2)=1.2 array(3,4)=3.4 def func1(ar(,),x,y) return ar(x,y) enddef def func2(x,y) return .array(x,y) enddef print func1(array,1,2) print func2(3,4) Function "func1" accepts array as ...
by Mr. Kibernetik
Mon Sep 16, 2024 3:42 am
Forum: Other topics
Topic: Customize Button appearance
Replies: 9
Views: 27532
Flag: Russia

Re: Customize Button appearance

This is a simple example of two buttons, one is default and another one is transparent: graphics graphics clear 0,1,1 fill alpha 0 draw alpha 1 draw color 0,0,0 button 1 text "button 1" at 100,50 set buttons custom button 2 text "button 2" at 100,100 WhatsApp Image 2024-09-16 at 08.38.32_56deea2e.png