Page 1 of 1
[12 Mar 2008] Another question
Posted: Sat Jun 13, 2020 5:31 pm
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
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?
[13 Mar 2008] Re: Another question
Posted: Sat Jun 13, 2020 5:31 pm
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
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.
[14 Mar 2008] Re: Another question
Posted: Sat Jun 13, 2020 5:31 pm
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

(time to adjust my code

)