[12 Mar 2008] Another question

Contains all messages from the Hollywood mailing list between 01/2006 and 08/2012
Locked
Andrea

[12 Mar 2008] Another question

Post by Andrea »

Note: This is an archived post that was originally sent to the Hollywood mailing list on Wed, 12 Mar 2008 01:05:33 +0100

Hi, it's me again :D

in hollywood there is the possibility to update the gfx of a particular layer?

Something like the SelectBrush<------> EndSelect but only for a specific layer?

If no, is this "feature" in the todo list maybe?
User avatar
airsoftsoftwair
Posts: 5833
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

[13 Mar 2008] Re: Another question

Post by airsoftsoftwair »

Note: This is an archived post that was originally sent to the Hollywood mailing list on Thu, 13 Mar 2008 22:40:56 +0100
Hi, it's me again :D

in hollywood there is the possibility to update the gfx of a particular layer?

Something like the SelectBrush<------> EndSelect but only for a specific layer?
No.
If no, is this "feature" in the todo list maybe?
Not really. You can simulate this behaviour by updating a brush and then use a DoMove() call to switch layers, e.g.

Code: Select all

AddMove(1, #REMOVELAYER, ....)   ; kill old layer
AddMove(1, #INSERTBRUSH, .... )   ; put new brush into old layer position
DoMove(1)
That should do the trick.
Andrea

[14 Mar 2008] Re: Another question

Post by Andrea »

Note: This is an archived post that was originally sent to the Hollywood mailing list on Fri, 14 Mar 2008 00:04:29 +0100

ok, thx for the replies :D :D (time to adjust my code :P )
Locked