Search found 167 matches

by p-OS
Wed Nov 03, 2021 9:43 pm
Forum: Hollywood bugs
Topic: FOR statement - documentation missing 2 versions
Replies: 3
Views: 1696

Re: FOR statement - documentation missing 2 versions

No, the generic FOR statement has two variables , separated by comma , to be used as run variable/control variable. My variants however have two values/vars, separated by comma, that define the start and end of the run. Thus the comma is an alternative to the TO keyword. The second difference: My va...
by p-OS
Tue Nov 02, 2021 11:25 pm
Forum: Hollywood bugs
Topic: FOR statement - documentation missing 2 versions
Replies: 3
Views: 1696

FOR statement - documentation missing 2 versions

Besides the 3 versions of the FOR statement listed in the documentation (chapter 11.4) there exist two more ! For <var> = <expr1>,<expr2> [Step <expr3>] <loop-block> Next For i=1,10 Step 2 DebugPrint(i) Next For <var> = <expr1>,<expr2> [Step <expr3>] Do <stat> For i=1,10 Step 2 Do DebugPrint(i) Both...
by p-OS
Fri Oct 29, 2021 5:14 pm
Forum: General programming
Topic: Remberposition
Replies: 2
Views: 1394

Re: Remberposition

Did you define the necessaryb @APPIDENTIFIER preprocessor command as the doc says ?
by p-OS
Wed Jun 09, 2021 5:10 am
Forum: Polybios
Topic: execute() on android (again)
Replies: 4
Views: 5124

Re: execute() on android (again)

evil wrote: Sun Jun 06, 2021 11:35 pm @SamuraiCrow:
My goal is to send the pdf to a printer.
Many printers nowadays directly support PDF. If you use a PDF capable printer that has LAN or WLAN support, the easiest way is to open a network connection to its IP and port and send the content of the PDF file (as binary) to it.
by p-OS
Fri May 28, 2021 10:58 pm
Forum: Wishlist
Topic: Treat missing table item the same as a NIL-variable
Replies: 4
Views: 3031

Re: Treat missing table item the same as a NIL-variable

Now, my suggestion is not to throw an error when trying to access a nonexistent table attribute but to return Nil instead, which would make it easier to check an attribute to be present in an If-statement without having to use an additional HaveItem(). You could assign a metatable to your tabel tha...
by p-OS
Fri May 21, 2021 2:34 pm
Forum: RapaGUI
Topic: Get MUI version
Replies: 11
Views: 5088

Re: Get MUI version

No,

but I would suggest to use HW own functions for creating temporary files insted of hardcoded filenames.
by p-OS
Mon Mar 15, 2021 12:49 am
Forum: Wishlist
Topic: SystemRequest keyboard inputs
Replies: 4
Views: 2611

Re: SystemRequest keyboard inputs

Thanks for the clarification. I am sure, that it worked in my Amiga Classic Times. But maybe I mixed it up and I used reqtools...
by p-OS
Sun Mar 14, 2021 12:27 am
Forum: Wishlist
Topic: SystemRequest keyboard inputs
Replies: 4
Views: 2611

Re: SystemRequest keyboard inputs

... but on AmigaOS, standard requesters thru intuition.library don't support keyboard control. It is really quite long time since I used intuition.library directly...and had it different in my mind. Thus I looked into the Autodoc: intuition.library/EasyRequestArgs ... struct EasyStruct ... struct T...
by p-OS
Wed Feb 24, 2021 5:23 pm
Forum: General questions
Topic: Run Code or Run Program cant seem to figure it out?
Replies: 4
Views: 4094

Re: Run Code or Run Program cant seem to figure it out?

I don't really know what exactly AmiKit is, thought it is just an AmigaOS Classic Distribution. I guess your Host OS is Windows ? And winlaunch is a program that runs under AmigaOS ? Execute("C:winlaunch >NIL: C:windows\system32\mspaint.exe ") Execute("C:winlaunch >NIL: "C:window...
by p-OS
Mon Feb 15, 2021 5:52 pm
Forum: MUI Royale
Topic: Bug: Imagebutton does not trigger pressed notification
Replies: 2
Views: 3376

Re: Bug: Imagebutton does not trigger pressed notification

MorphOS.I try to isolate it in a simple example.