Search found 475 matches

by SamuraiCrow
Sun May 30, 2021 3:44 am
Forum: Polybios
Topic: execute() on android (again)
Replies: 4
Views: 5407

Re: execute() on android (again)

PolyBios should be able to view a PDF without loading an external viewer anyway. Doesn't the plugin come with an example of how to do this?
by SamuraiCrow
Sun May 30, 2021 3:39 am
Forum: Wishlist
Topic: Treat missing table item the same as a NIL-variable
Replies: 4
Views: 3107

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

You can use RawGet(), it won't fail if a key doesn't exist. If RawGet(table, "test") ; these should do the same... DebugPrint(table.test) DebugPrint(RawGet(table, "test")) Else DebugPrint("Not found.") EndIf Fixed your example, jPV. @op RawGet() is the function you're ...
by SamuraiCrow
Sun May 30, 2021 3:34 am
Forum: Polybios
Topic: doc:SaveToFile() and APK-Compiler
Replies: 7
Views: 5488

Re: doc:SaveToFile() and APK-Compiler

evil wrote: Thu May 27, 2021 2:46 pm What else is doc:SaveToFile() about then???

Wrong thread? ;)
Yes. Must have been.
by SamuraiCrow
Sun May 30, 2021 3:32 am
Forum: RapaGUI
Topic: Is RapaGUI slower on Windows 10 than on other platforms?
Replies: 10
Views: 4957

Re: Is RapaGUI slower on Windows 10 than on other platforms?

At the time of the posting it is still being finalized.
by SamuraiCrow
Thu May 27, 2021 2:21 pm
Forum: Polybios
Topic: doc:SaveToFile() and APK-Compiler
Replies: 7
Views: 5488

Re: doc:SaveToFile() and APK-Compiler

...and next time use the correct forum. This has nothing to do with the Polybios plugin.
by SamuraiCrow
Tue May 11, 2021 2:22 am
Forum: RapaGUI
Topic: A couple of requests for the new RG version
Replies: 11
Views: 10371

Re: A couple of requests for the new RG version

I had the idea to make an organizer app in Hollywood and it would have been possible except that MCC_Calendar isn't available for OS4 or AROS. Even though it's on the Aminet now I see that it had been noticed in its old link.
by SamuraiCrow
Tue May 11, 2021 2:07 am
Forum: Off topic
Topic: Date Picker gadget for MUI?
Replies: 2
Views: 6758

Re: Date Picker gadget for MUI?

Thanks! I must have done my search for "date" instead of "dates" and the description didn't pick up on the search! There's even a MorphOS version in another archive as well! Thanks again!
by SamuraiCrow
Mon May 10, 2021 7:11 pm
Forum: Off topic
Topic: Date Picker gadget for MUI?
Replies: 2
Views: 6758

Date Picker gadget for MUI?

I realize that the time preferences program on AmigaOS has had a custom date picker since day one but is there a BOOPSI or MUI Custom Class compliant generic one that can be used in RapaGUI as a counterpart to the wxWidgets date picker gadget? Likewise AmigaOS has a clock application but no BOOPSI o...
by SamuraiCrow
Sun May 09, 2021 5:07 am
Forum: Newbie questions
Topic: How do I empty a table when using reference?
Replies: 4
Views: 3476

Re: How do I empty a table when using reference?

Try this:

Code: Select all

Function p_ClearTable(t)
	For k,v In Pairs(t)
		t[k]=Nil
	Next
	Return(t)
EndFunction

Global tab={1,2,3,4,5,{"a","b"}}
tab=p_ClearTable(tab)
DebugPrint(TableItems(tab))
by SamuraiCrow
Sat May 01, 2021 6:29 am
Forum: RapaGUI
Topic: Crash with "Choice" object on Android
Replies: 3
Views: 2527

Re: Crash with "Choice" object on Android

The Hollywood Player plugin is RapaGUI version 2.0 on Android. MorphOS is still on RapaGUI 1.x and the 2 versions are not fully compatible.