Search found 112 matches
- Wed May 01, 2019 1:16 am
- Forum: SDK
- Topic: New plugin: Json Parser
- Replies: 19
- Views: 5283
Re: New plugin: Json Parser
Thanx for the port, might be quite useful for reading data from public web services..
- Sat Apr 20, 2019 1:06 am
- Forum: General programming
- Topic: Linux ARM not recognized as executable
- Replies: 1
- Views: 304
Linux ARM not recognized as executable
Now, as Hollywood 8 is said to work on Linux without X-Server now, i retried this. I have this simple program: @DISPLAY {hidden=True} ConsolePrint("Hallo Welt!") I compiled for target Linux(arm). I copied to the HDD connected to my Router (ASUS AC88U), running an Linux based OS. It has a Cortex 9 CP...
- Wed Mar 27, 2019 6:53 pm
- Forum: MUI Royale
- Topic: Area without border
- Replies: 2
- Views: 469
Re: Area without border
Set these attributes for the Object of your choice:
(not tested)
Area.Frame="none"
Area.InnerLeft="0"
Area.InnerRight="0"
Area.InnerTop="0",
Area.InnerBottom="0"
most GUI classes are dervied from area.class
(not tested)
Area.Frame="none"
Area.InnerLeft="0"
Area.InnerRight="0"
Area.InnerTop="0",
Area.InnerBottom="0"
most GUI classes are dervied from area.class
- Fri Mar 01, 2019 11:31 am
- Forum: Tutorials
- Topic: How to properly release something out to the wild
- Replies: 9
- Views: 1318
Re: How to properly release something out to the wild
Good approach ! Indeed the quality of deployments could be better. And regarding Amiga Software not only Hollywood programs, but other SW , too. Within the last few years the quality decreased for: 1. deployment itself: Missing Docs, missing dependant files, no Icons, no Install-Scipt (if necessary)...
- Sat Feb 23, 2019 2:12 pm
- Forum: Newbie questions
- Topic: Silent mode
- Replies: 2
- Views: 459
Re: Silent mode
On top of your script you can pass quite some "preprocessor commands", one is @DISPLAy
Code: Select all
@DISPLAY {hidden=True}
- Sun Feb 10, 2019 10:16 pm
- Forum: Announcements
- Topic: Hollywood 8: Supremacy out now!
- Replies: 65
- Views: 11273
Re: Hollywood 8: Supremacy out now!
"System notifications are now supported"
Is this a Android only feature or available on the other platforms as well ?
Is this a Android only feature or available on the other platforms as well ?
- Sun Jan 06, 2019 10:28 pm
- Forum: Newbie questions
- Topic: Actual Book on Hollywood 7?
- Replies: 6
- Views: 1652
Re: Actual Book on Hollywood 7?

I never liked, that I have to download extract it from Linux tar.bzip as it is quite slow to navigate through that archive type on a G4...
(and on Windows this type is not supported at all by default)
- Sun Jan 06, 2019 3:19 am
- Forum: Wishlist
- Topic: Metamethod for reading any item
- Replies: 3
- Views: 613
Re: Metamethod for reading any item
Hi, if you have an even simpler solution (working with the current Hollywood version), please share your ideas ! My suggestion was the simpler version of what i actually implemented for my purposes: mytab={ x=3, y=7, z=9 } --> mytab={ oldmytab={ {"x", 3 }, {"y", 7 }, {"z" , 9} } } My private solutio...
- Sat Jan 05, 2019 4:01 am
- Forum: Wishlist
- Topic: Metamethod for reading any item
- Replies: 3
- Views: 613
Re: Metamethod for reading any item
Well, __index and __newindex only work for non-existing entries in a table. You want them to work for every access (also for existing table entries), Right ? There is a workaround: Put a table around your existing table, with index and newindex defined. Example: you have: mytab={1,2,3} make instead:...
- Mon Dec 31, 2018 12:21 am
- Forum: General programming
- Topic: Android Svreenshot Utility - what's wrong with my code
- Replies: 2
- Views: 596
Android Svreenshot Utility - what's wrong with my code
I wrote a tiny screengrabber Utility for Android 8.1 When running I don't get any error Messages, but also no result: mydesktop.png is not created… I wonder what might be wrong with my code ? @FILE 1,"dummy.jpg",{link=True} @DISPLAY {hidden=True} Wait(500) mybrush=GrabDesktop(Nil) SaveBrush(mybrush,...