Search found 27 matches
- Mon Jan 05, 2026 11:14 pm
- Forum: RapaGUI
- Topic: popfile and poppath make output window slow to disappear
- Replies: 0
- Views: 48
popfile and poppath make output window slow to disappear
On Linux, when I create an object that has a popfile or poppath widget in it and then close the window of the app, the output window of the interpreter only closes after a second or so instead of immediately. The delay does not happen with a popcolor or popfont widget. Not a big deal, but slightly a...
- Wed Dec 03, 2025 5:09 pm
- Forum: APK Compiler
- Topic: Windows 86
- Replies: 3
- Views: 538
Re: Windows 86
Only me then? Well, it's a start.
- Wed Dec 03, 2025 11:41 am
- Forum: APK Compiler
- Topic: Windows 86
- Replies: 3
- Views: 538
Windows 86
Hi, I am turning into an old fart, using Hollywood for hobby projects so I am not an expert at anything. I have found I don't really need Windows for much anymore and started using Linux which has its pros and cons, mostly pros. But I can't use the APK compiler on it so I keep Windows 10 around for ...
- Sat Nov 22, 2025 4:58 pm
- Forum: Hollywood bugs
- Topic: ShowDisplay() problem
- Replies: 1
- Views: 962
ShowDisplay() problem
Hi, On Ubuntu Linux here, when I call HideDisplay() and then call ShowDisplay(), the display will hide but not show again and the program will hang. It does work on Raspberry Pi OS and AmigaOS 4, unless you unhide the program yourself before the program gets to it. DebugPrint("hiding in 2 secon...
- Sat Oct 11, 2025 5:47 pm
- Forum: Hollywood bugs
- Topic: SetFileAttributes() goes back in time
- Replies: 3
- Views: 1975
Re: SetFileAttributes() goes back in time
Ok, thanks for the explanation. I just checked in a cmd window and in an explorer window and to my amazement they actually do give different dates for the test file. Is there some kind of work-around then? Because otherwise I'll think of something else for my purposes because I consider this way too...
- Sat Oct 11, 2025 11:43 am
- Forum: Hollywood bugs
- Topic: SetFileAttributes() goes back in time
- Replies: 3
- Views: 1975
SetFileAttributes() goes back in time
Hi, When I set the date of a file with SetFileAtrributes(), it changes the date to one hour earlier. testfile$ = "testfile.txt" StringToFile("Hi!", testfile$) time$ = "01-Jan-2000 00:00:00" DebugPrint(time$) SetFileAttributes(testfile$, { Time = time$ }) t = GetFileAttr...
- Sun Jun 15, 2025 7:01 pm
- Forum: Wishlist
- Topic: Displays as Backdrop Windows (always behind)
- Replies: 7
- Views: 6132
Re: Displays as Backdrop Windows (always behind)
Ok, you convinced me, here it is ;) - New [Amiga]: Added support for backdrop windows; these are special windows specific to AmigaOS and its clones that always stay behind all other windows; to open a backdrop window, just set the new "Backdrop" tag to TRUE in @DISPLAY or CreateDisplay() ...
- Sun Jun 15, 2025 6:59 pm
- Forum: Wishlist
- Topic: TextOut() ignoring text format tags
- Replies: 4
- Views: 909
Re: TextOut() ignoring text format tags
That is a good addition. I was facing this same problem too when I was displaying filenames using TextOut, in some cases these files names might have contained text that would be same as Hollywood TextOut format Tags. While it was easy to fix, main problem is that when a software like that is relea...
- Sun Jun 15, 2025 6:56 pm
- Forum: Wishlist
- Topic: TextOut() ignoring text format tags
- Replies: 4
- Views: 909
- Sat Jun 07, 2025 5:50 pm
- Forum: Wishlist
- Topic: TextOut() ignoring text format tags
- Replies: 4
- Views: 909
TextOut() ignoring text format tags
I sometimes have files with weird names that contain characters that TextOut() considers text format tags but are not. I want the file names printed as is so I had to write some code to adapt the file name strings. Although that was easy enough to do, It must always happen and it might not always wo...