Search found 470 matches

by plouf
Wed Apr 03, 2024 12:10 pm
Forum: RapaGUI
Topic: Is there a way to process inputs during a dialog?
Replies: 8
Views: 390

Re: Is there a way to process inputs during a dialog?

no need for "appologies" :) thats a community forum and talking/developing is what for

btw you can force "klasse" with Textentry.Accept to accpet ONLY TRB letters
by plouf
Tue Apr 02, 2024 5:25 pm
Forum: RapaGUI
Topic: Is there a way to process inputs during a dialog?
Replies: 8
Views: 390

Re: Is there a way to process inputs during a dialog?

What exaclg loking for ? Redlion example shows that A) you can check dialog gadgets same as window ones B) script do not stop running when a dialog opens C) you need to activate notify for the gadget you need to check Maybe a acknowlwdge is better for you ? But also "text" notify will send...
by plouf
Fri Mar 29, 2024 10:44 am
Forum: Showcase
Topic: Los Malditos del Valle del Cerro
Replies: 4
Views: 521

Re: Los Malditos del Valle del Cerro

What do you mean "cant play" ?

68k version for png exist and work?!
by plouf
Wed Mar 27, 2024 4:37 pm
Forum: Showcase
Topic: Los Malditos del Valle del Cerro
Replies: 4
Views: 521

Re: Los Malditos del Valle del Cerro

Well done wiating to see progress :-)

Btw why dont you just distribute the applet ?
For future systems compatibilty
Also they can try at least on 68k . With winuae and vampire/pistoem... Never know :-)
by plouf
Wed Mar 27, 2024 7:35 am
Forum: RapaGUI
Topic: Input validation
Replies: 5
Views: 212

Re: Input validation

Text formating suuport bold italics underline

There both ways nice ;-)
by plouf
Tue Mar 26, 2024 10:02 pm
Forum: RapaGUI
Topic: Input validation
Replies: 5
Views: 212

Re: Input validation

The defacto way to visually inform user is to use an asterisk in descritpion


Username* [. ]
Password. [. ]
Country [ ] (optional)

Programticany check content, after user has press save/submit and if empty popup a requester... Its all done in your code :-)
by plouf
Mon Mar 25, 2024 2:26 pm
Forum: General programming
Topic: Any way to play sample till the end when quitting program?
Replies: 3
Views: 234

Re: Any way to play sample till the end when quitting program?

No and from the user experience i think its not good If rhe user closes means it was stop anythink Programamtically if you want just close all resources (screens windows etc )and remain minimized play But from user experience i would expect to remain a small window in the bottrom for exaplmple with ...
by plouf
Fri Mar 22, 2024 9:25 pm
Forum: General programming
Topic: Record desktop screen
Replies: 15
Views: 695

Re: Record desktop screen

think better.. wher do you find it ? if this command is NOT in the manual, maybe its not has to be ;) there are many solution to your problem, one solutio nis to use interval bellow example has perfect timing too exit with Esc but script must be active (selected window) to catch it HideDisplay() Qui...
by plouf
Mon Mar 18, 2024 9:25 pm
Forum: General programming
Topic: Record desktop screen
Replies: 15
Views: 695

Re: Record desktop screen

i dont think its possible to screenshot with mouse, afaik all screenhots, including OS's "printscreen" take not mouse in. you must take mouse position and draw something here is an example of a Screenrecorder free in hollywood few lines of code :) HideDisplay() BeginAnimStream(1, "tes...
by plouf
Sun Mar 17, 2024 8:48 pm
Forum: General programming
Topic: Chr(0,#ENCODING_RAW)
Replies: 3
Views: 166

Re: Chr(0,#ENCODING_RAW)

how do you check it ? look same to me dont forget strings terminated with a 0 :) edit correct myself, Chr is a code point converter , so its 0 which is alreay an empty string (string terminate with 0 so zero is emptty string anyway bytechr add the value to the string which is a single byte 0 since i...