Hello,
could ByteChr() be what you need?
Search found 133 matches
- Tue May 24, 2022 8:32 pm
- Forum: Newbie questions
- Topic: Is there command to do reverse of Chr()?
- Replies: 3
- Views: 326
- Fri May 20, 2022 6:33 pm
- Forum: Amiga IDE questions
- Topic: Online help CubicIDE MorphOS
- Replies: 8
- Views: 1460
Re: Online help CubicIDE MorphOS
Tried with plugin 9.0 and 9.1 for CubicIDE (in both cases with HW9.1) and both have the same behaviour as reported by tolkien. Logtool shows hits.
- Thu May 19, 2022 9:01 pm
- Forum: Announcements
- Topic: Hollywood Designer 6.0 released
- Replies: 5
- Views: 1675
Re: Hollywood Designer 6.0 released
Upgraded. Thanks!
- Thu Apr 28, 2022 8:31 pm
- Forum: Newbie questions
- Topic: Is there option to get current displayed brush width without LAYERS?
- Replies: 4
- Views: 487
Re: Is there option to get current displayed brush width without LAYERS?
Ok, I see.
So inside your function you use DisplayBrush() to show it scaled? Maybe using a copy with ScaleBrush() instead and displaying that one? That way you can use GetAttribute() with the copy.
So inside your function you use DisplayBrush() to show it scaled? Maybe using a copy with ScaleBrush() instead and displaying that one? That way you can use GetAttribute() with the copy.
- Thu Apr 28, 2022 3:48 pm
- Forum: Newbie questions
- Topic: Is there option to get current displayed brush width without LAYERS?
- Replies: 4
- Views: 487
Re: Is there option to get current displayed brush width without LAYERS?
GetAttribute() doesn't work?
Code: Select all
GetAttribute(#BRUSH, your_brush_id, #ATTRWIDTH)
- Wed Mar 23, 2022 8:03 pm
- Forum: General questions
- Topic: Aspect ratio not working in MorphOS
- Replies: 2
- Views: 1070
Re: Aspect ratio not working in MorphOS
I forgot about this:
viewtopic.php?f=5&t=1235
So, after about 7 years I asked MOS develpers and they told me that MUIA_String_EditHook was phased out of MOS more than 15 years ago.
They say that instead of hooks, subclassing is how it works now.
viewtopic.php?f=5&t=1235
So, after about 7 years I asked MOS develpers and they told me that MUIA_String_EditHook was phased out of MOS more than 15 years ago.
They say that instead of hooks, subclassing is how it works now.
- Mon Mar 21, 2022 11:18 pm
- Forum: General questions
- Topic: Text Object cursor color
- Replies: 2
- Views: 530
Re: Text Object cursor color
@amyren
In Designer go to Settings/MUI/TextEditor. Here you can change color, and width of cursor for example.
In Designer go to Settings/MUI/TextEditor. Here you can change color, and width of cursor for example.
- Mon Feb 14, 2022 11:25 pm
- Forum: General programming
- Topic: GPL projects
- Replies: 2
- Views: 834
Re: GPL projects
Thanks Andreas. Yes, GPL seems complicated. In summary, it seems that for distributing under GPL, not only the software must not be linked to proprietary libraries but also any user should be able to recompile it without requiring proprietary tools. So that makes GPL not ok for Hollywood. Maybe some...
- Sun Feb 13, 2022 7:50 am
- Forum: General programming
- Topic: GPL projects
- Replies: 2
- Views: 834
GPL projects
Hello, I'm interested in using the assets of a GPL project for reimplementing it with Hollywood, so to make it available to Amiga systems, under another name. Project's authors like the idea but one has expressed corncern about Hollywood's proprietary nature. It uses GPL, which requires that any der...
- Sun Feb 06, 2022 4:33 pm
- Forum: Wishlist
- Topic: Page dimensions and saving in pdf
- Replies: 10
- Views: 15060
Re: Page dimensions and saving in pdf
Never tried ImageMagick before, but found that it does the job very well. Even you can easily rotate the pages from landscape to portrait if wanted. convert test.png -rotate 90 -write test.pdf test.pdf But I am a bit uncertain what is the correct syntax for that convert command? In the commandline ...