Search found 368 matches
- Wed Feb 07, 2018 6:16 pm
- Forum: Newbie questions
- Topic: Transparent app's background
- Replies: 17
- Views: 6739
Re: Transparent app's background
Unfortunately i failed to achieve my goals with SelectAlphaChannel and SelectBrush functions. To illustrate what i try to get i've prepared an image: https://www.czernik.me/plikiAMI/Mask_Holly.jpg Basicaly i want to make green brush called "MASK" to make orange brush with ID=1 invisible everywhere ...
- Mon Feb 05, 2018 7:15 pm
- Forum: Code snippets area
- Topic: 5 Band Resistor Calculator
- Replies: 5
- Views: 4273
Re: 5 Band Resistor Calculator
Yeah, tabs seem to get broken when you copy code from here. At least under OWB/MorphOS. But once you fix them (for example by using a "replace all" function in some text editor), you get it working. And programs using MUIRoyale only work under Amiga compatibles naturally :) Useful idea for a program...
- Sat Jan 27, 2018 11:01 am
- Forum: Showcase
- Topic: My new documentation site and about where I'm heading :)
- Replies: 82
- Views: 51521
Re: My new documentation site and about where I'm heading :)
Waiting for MorphOS version to try it out 

- Mon Jan 22, 2018 6:51 pm
- Forum: Newbie questions
- Topic: Transparent app's background
- Replies: 17
- Views: 6739
Re: Transparent app's background
Firstly i want to express my admiration for your RNOWidgets, wow, looks amazing :shock: . Thanks :) I'm pretty satisfied to it too ;) I was wondering if there is a function (didn't find one myself) that makes possible to mask object with transparent brush (100% or less transparency, depending on ne...
- Mon Jan 22, 2018 5:56 pm
- Forum: Newbie questions
- Topic: Cracktro
- Replies: 18
- Views: 6959
Re: Cracktro
1. However the problem persists in Windows 7 32bit (my test setup). Now the created (2nd) display, doesn't appear at all (music still run though) :( Is it a bug on Hollywood or an error on the code itself as shown here below? Hmm.. yeah. I made a quick try on Win10, and I can see that there's the s...
- Fri Jan 19, 2018 8:14 pm
- Forum: Newbie questions
- Topic: Cracktro
- Replies: 18
- Views: 6959
Re: Cracktro
Till then things looked good (though i can't understand why the cracktro got visually paused every time the menu was accessed or moving around it's window happened) Menu was accessed or the Credits window is opened? I don't see that just menus would pause it, but that window does, because it waits ...
- Wed Jan 10, 2018 6:39 pm
- Forum: Newbie questions
- Topic: Transparent app's background
- Replies: 17
- Views: 6739
Re: Transparent app's background
Example with brush with transparent regions works when we load bg picture,what in case i want to display just some text, lets say with TextOut(), is there anyway to make background 100% transparent and dipslay text only without any bg picture? I haven't found a way to render something directly over...
- Sat Jan 06, 2018 12:54 pm
- Forum: Wishlist
- Topic: Windows 10 Notifications
- Replies: 8
- Views: 3075
Re: Windows 10 Notifications
Or make it more generic and support also Magic Beacon on MorphOS and Ringhio on OS4 

- Sat Jan 06, 2018 12:41 pm
- Forum: Newbie questions
- Topic: Transparent app's background
- Replies: 17
- Views: 6739
Re: Transparent app's background
Is it possible to make window of an app's fully transparent? Lets say i want to make clock app that shape isn't rectangular, if i make my clock's dial circular i'll get nastily looking corners. Any chance there is a proper Hollywood's way of doing it, i even don't mind using some dirty tricks, if t...
- Fri Jan 05, 2018 6:19 pm
- Forum: Newbie questions
- Topic: OnMenuSelect not triggering?
- Replies: 6
- Views: 3493
Re: OnMenuSelect not triggering?
Don't put anything else than WaitEvent to the main loop, just install more event handlers , for example like this: Function p_myfunction(msg) DebugPrint(msg.key) EndFunction ; listen to "OnMenuSelect" event handler, and OnKeyDown too :) InstallEventHandler({OnMenuSelect = p_MenuFunc, OnKeyDown = p_m...