Page 1 of 1

[06 Dec 2009] CopyBrush question...

Posted: Sat Jun 13, 2020 5:32 pm
by Tuxedo
Note: This is an archived post that was originally sent to the Hollywood mailing list on Sun, 06 Dec 2009 15:19:34 -0000

Hi ALL! I wonder why I can do:

Code: Select all

CopyBrush(MyPic, 1)
but not:

Code: Select all

CopyBrush(1, MyPic)
If I need to get a buffer to work with my picture and then copy back to the same picture id(to display it), how I can?

Thanks to all!

Simone

[06 Dec 2009] Re: CopyBrush question...

Posted: Sat Jun 13, 2020 5:32 pm
by PEB
Note: This is an archived post that was originally sent to the Hollywood mailing list on Sun, 6 Dec 2009 09:59:10 -0800 (PST)

Try this:

Code: Select all

MyPic=CopyBrush(1, NIL)

[06 Dec 2009] Re: CopyBrush question...

Posted: Sat Jun 13, 2020 5:32 pm
by Tuxedo
Note: This is an archived post that was originally sent to the Hollywood mailing list on Sun, 06 Dec 2009 21:49:30 -0000

Thank you VERY MUCH!

Simone