Search found 167 matches

by p-OS
Fri Mar 31, 2017 12:17 am
Forum: Announcements
Topic: Hollywood 7: Eternity out now!
Replies: 42
Views: 75395

Re: Hollywood 7: Eternity out now!

I just got HW7 and tried to use Unicode I took UnicodeDemo.hws and added a line: https://butterblume.asuscomm.com/AICLOUD2084378205/Foren/hollywoodmalcom/UniCodeDemoArabicSource.png And this is the result when run: https://butterblume.asuscomm.com/AICLOUD2084378205/Foren/hollywoodmalcom/UniCodeDemoA...
by p-OS
Wed Dec 07, 2016 3:26 am
Forum: APK Compiler
Topic: tablet apk and playstore
Replies: 11
Views: 17063

Re: tablet apk and playstore

I could find it with both, web and Play store app.

If it is shown on the web but not in the app, web site probably shows your devices as not compatible...
by p-OS
Wed Dec 07, 2016 2:19 am
Forum: APK Compiler
Topic: tablet apk and playstore
Replies: 11
Views: 17063

Re: tablet apk and playstore

Play Store says, developed for phones.

Nonetheless I can install it und run successfully.

My tablet is a Pipo m6 Pro, running Android 4.2.2, rooted

Screen Resolution is 2048x1536
by p-OS
Tue Sep 20, 2016 10:30 pm
Forum: Wishlist
Topic: Setting Return Code at the end of a programm
Replies: 3
Views: 5616

Re: Setting Return Code at the end of a programm

Code: Select all

Print("Well done , Andreas :-D")
End(0)  -- default value...nonetheless ;)
by p-OS
Sun Sep 04, 2016 12:14 am
Forum: Newbie questions
Topic: I do not know here to go...so I posted it here.
Replies: 5
Views: 6655

Re: I do not know here to go...so I posted it here.

Cubic IDE is 68K, buit works fine on OS4 ans MorphOS , too.
by p-OS
Tue Jul 12, 2016 7:01 pm
Forum: Wishlist
Topic: optional plugin inclusion
Replies: 2
Views: 4558

Re: optional plugin inclusion

You want to have an executable , that is common to all users, but optionally load and execute some code, that is specific to single users ? You might have a look at WriteFunction/ReadFunction. the advantage over plugin system is, taht code is fully written in Hollywood itself, and is platform indepe...
by p-OS
Sat Jul 02, 2016 7:06 pm
Forum: Showcase
Topic: SQLMan released
Replies: 12
Views: 22285

Re: SQLMan released

Error 1: Open an existing SLQLite3 database file. In query Tab enter: select * from sqlite_master Press on exceute. As this table is part of any database file by default, I expected it to work. But nothing happens at all. Error 2: Open an existing SLQLite3 database file. In query Tab enter: select *...
by p-OS
Fri Jul 01, 2016 12:46 am
Forum: Wishlist
Topic: RapaGUI related improvements
Replies: 6
Views: 8308

Re: RapaGUI related improvements

@FILE 1, "myGUI.xml" .... moai.CreateAppI(ReadString(1,FileLength(1) ) ) You could use several strings and concatenate them before you call CreateApp. The first and last containg the xml header / footer. RapaGUI also allows you to dynamcally add objects like windows at runtime. Have a loo...
by p-OS
Thu Jun 30, 2016 4:58 pm
Forum: Wishlist
Topic: RapaGUI related improvements
Replies: 6
Views: 8308

Re: RapaGUI related improvements

RapaGUI (like MUIRoyale) gets the xml definiton as a String. The developer is free to choose the way in which he provides this string. In my MUIRoyale projects I already used different approaches. 1. external gui.xml file loaded at runtime 2. external gui.xml linked with @FILE 3. xml String created ...
by p-OS
Thu Jun 16, 2016 5:21 pm
Forum: General questions
Topic: Run Program?
Replies: 5
Views: 11421

Re: Run Program?

What exactly do you want to do ? Imagine you have two Presentations, let's call them Pres1 and Pres2. Pres 1 has a Button. When you klick on it , Pres2 shall be started, and Pres11 should exit? If you want to stop Pres1 before Pres2 starts, this is not possible that easily. If it is ok for you, that...