Search found 69 matches

by Mazze
Sun Feb 03, 2013 6:39 am
Forum: Showcase
Topic: HollyPaint
Replies: 10
Views: 15913

Re: HollyPaint

Binaries for AROS, Morphos, AmigaOS4 included:

http://sourceforge.net/projects/hollypa ... p/download
by Mazze
Sun Feb 03, 2013 5:17 am
Forum: MUI Royale
Topic: Event handling problem
Replies: 7
Views: 9005

Re: Event handling problem

Ouch. Do you have an idea what's missing in Zune?
by Mazze
Sat Feb 02, 2013 12:43 pm
Forum: Showcase
Topic: HollyPaint
Replies: 10
Views: 15913

Re: HollyPaint

Allanon wrote:Looks great! :)
Thanks.

I've implemented some of the simpler filters:

Image
by Mazze
Thu Jan 31, 2013 9:21 am
Forum: Newbie questions
Topic: mask
Replies: 2
Views: 4001

Re: mask

Can you do "LoadBrush" and DisplayBrush" on that mask file?

If yes it should theoretically be possible to blit (i.e. DisplayBrush) the mask into the image brush.
by Mazze
Wed Jan 30, 2013 8:34 pm
Forum: MUI Royale
Topic: Event handling problem
Replies: 7
Views: 9005

Re: Event handling problem

It turned out that it isn't necessary to have a 2nd window. Just click somewhere on the desktop to deactivate the MUI window, then click again in the window. I get always an alert message. If I activate the window before clicking in it the coordinates are correct. <?xml version="1.0" encod...
by Mazze
Wed Jan 30, 2013 7:19 pm
Forum: General programming
Topic: Problem with BMP brushes on AROS
Replies: 5
Views: 6199

Re: Problem with BMP brushes on AROS

Andreas wrote:@Mazze: Open the *.bmp file with Multiview to see if it's a fault of the AROS bmp.datatype.
Oh, yes. Same corruption. /me kicks butts of AROS developers :lol:
by Mazze
Wed Jan 30, 2013 7:17 pm
Forum: General programming
Topic: Problem with BMP brushes on AROS
Replies: 5
Views: 6199

Re: Problem with BMP brushes on AROS

Allanon wrote:Hi Mazze,
I've done a quick test on windows, no problems here:
Thanks.
by Mazze
Tue Jan 29, 2013 11:18 pm
Forum: General programming
Topic: Problem with BMP brushes on AROS
Replies: 5
Views: 6199

Problem with BMP brushes on AROS

This sample... @DISPLAY 1, {Color = #SILVER} CreateBrush(1, 50, 50, #GREEN) SelectBrush(1) Circle(0, 0, 25, #RED) EndSelect DisplayBrush(1, 0, 0) SaveBrush(1, "tst.bmp") SaveBrush(1, "tst.png", #BLACK, #IMGFMT_PNG) LoadBrush(2, "tst.bmp") DisplayBrush(2, 50, 0) LoadBrus...
by Mazze
Tue Jan 29, 2013 10:24 pm
Forum: MUI Royale
Topic: Event handling problem
Replies: 7
Views: 9005

Re: Event handling problem

Nope, didn't help.

The problem doesn't happen if a manually activate the canvas window before clicking in it.
by Mazze
Tue Jan 29, 2013 9:31 pm
Forum: General programming
Topic: SetBrushTransparency after RotateBrush problem
Replies: 2
Views: 4105

Re: SetBrushTransparency after RotateBrush problem

Got it. Here's how my "make all pixels in background color transparent" is implemented in HollyPaint: Function Brush.p_DoTransparent() DebugPrint("***** Brush.p_DoTransparent") If Brush.have = True If GetAttribute(#BRUSH, Brush.brush, #ATTRHASMASK) ; rotation of a brush adds a ma...