Search found 361 matches

by amyren
Sat Apr 10, 2021 1:01 am
Forum: Newbie questions
Topic: How to return to normal pointer after setpointer()
Replies: 2
Views: 2292

How to return to normal pointer after setpointer()

Using the createpointer() and setpointer() to display a busy pointer works. But how to return to the normal pointer again?

Alternatively, is there a way to show the system busy pointer instead of creating your own pointer?
by amyren
Thu Apr 08, 2021 10:14 pm
Forum: Announcements
Topic: Hollywood APK Compiler 3.3 and Remedios 1.1 released
Replies: 13
Views: 11202

Re: Hollywood APK Compiler 3.3 and Remedios 1.1 released

I just had another program not working properly with compiler 3.3 It is a game that uses hurl and downloads a highscore list from a https adress. I get a network error message: Connection refused, In function DownloadFile. If I run the applet with HollyWood player in android, it works well, and also...
by amyren
Wed Apr 07, 2021 7:34 pm
Forum: General programming
Topic: Amiberry, Amikit, & Manjaro Linux desktop
Replies: 3
Views: 2499

Re: Amiberry, Amikit, & Manjaro Linux desktop

I have reported this bug at the amiberry github site a while back, and amiberry developer midwan did forward the bug to uae4arm developer PandTomB (who also does the JIT part). https://github.com/midwan/amiberry/issues/620 Some of the JIT problems seem to have been fixed in the 64 bit version, but I...
by amyren
Wed Apr 07, 2021 1:30 pm
Forum: General programming
Topic: Amiberry, Amikit, & Manjaro Linux desktop
Replies: 3
Views: 2499

Re: Amiberry, Amikit, & Manjaro Linux desktop

Have you tried disabling JIT in amiberry CPU settings?
I have experienced problems earlier with Hollywood apps on amiberry that only apeared when having JIT enabled.
by amyren
Wed Apr 07, 2021 11:01 am
Forum: Announcements
Topic: Hollywood APK Compiler 3.3 and Remedios 1.1 released
Replies: 13
Views: 11202

Re: Hollywood APK Compiler 3.3 and Remedios 1.1 released

I got another issue. In my script, line 104: e = hurl.Easy() I get this error message when trying to run it (android 9.0/Arm8): Failed initialization!(2) File: script.hws (current line: 104 - In function: Easy) Using the hwa with hollywood player, and it does work without this error. Also I have cre...
by amyren
Wed Apr 07, 2021 10:15 am
Forum: Announcements
Topic: Hollywood APK Compiler 3.3 and Remedios 1.1 released
Replies: 13
Views: 11202

Re: Hollywood APK Compiler 3.3 and Remedios 1.1 released

In "PermissionRequest(#PERMREQ_WRITEEXTERNAL)" it checks for permision to write to external storage, and in the following line the program try to store the file in the internal storage. Did it work under Hollywood 8.0 / APK Compiler 3.2? I think for your example to work it should be #PERMR...
by amyren
Fri Apr 02, 2021 8:10 pm
Forum: APK Compiler
Topic: apk API version
Replies: 25
Views: 32408

Re: apk API version

Thanks. That is even more needed now that 9.0 is out, since the apk's I made now with the current compiler will not work.

I guess this is also on your todo list, the hollywood player in the download area are still listed as ver. 8.0
by amyren
Wed Mar 31, 2021 3:31 pm
Forum: APK Compiler
Topic: apk API version
Replies: 25
Views: 32408

Re: apk API version

airsoftsoftwair wrote: Wed Oct 14, 2020 10:38 pm Thanks for the pointer! I'll try to release an update in time for the new target API requirement.
Now that Hollywood 9.0 is out, will you have some time to work look at the Apk Compiler update? Or is it scheduled after RapaGUI 2.0?
by amyren
Sun Mar 28, 2021 4:48 pm
Forum: Newbie questions
Topic: Is it possible to delete a file via FTP?
Replies: 21
Views: 9335

Re: Is it possible to delete a file via FTP?

Thank you, that works for me.
Your script was almost ready to run, just needed to add "/" to the ftp adress to make it work.
Quite a lot of code to do a single thing, so I doubt I would have figured that out by myself without growing even more gray hairs. :D
by amyren
Sun Mar 28, 2021 1:10 am
Forum: Newbie questions
Topic: Is it possible to delete a file via FTP?
Replies: 21
Views: 9335

Re: Is it possible to delete a file via FTP?

From the hURL docs it looks like easy:SetOpt DirListOnly could do this.
Unfortunalely there few examples in the docs on how to use this so I dont know where to start if I want to use that to get a file list from a ftp server.
Andreas, do you have any clues here?