Page 1 of 2

Color Image Mark

Posted: 24 Sep 2010, 08:21
by Hervé
Image marks with a special color. ( 9.5.18 )

V 1. ->V 2.

Re: Color Image Mark

Posted: 24 Sep 2010, 08:40
by Sewie
Great! Thanks a million.

Re: Color Image Mark

Posted: 24 Sep 2010, 09:35
by chatbraque
Thx ! merci ! :lol: (trop top!)
I'm triyng to customize the color of the mark…
It does "something" when I'm changing the last number of the Georges script affected to each colored button…
… but I can't see a relation between this number and the color I'm obtaining…

How can you obtain a specific color ?

Re: Color Image Mark

Posted: 24 Sep 2010, 12:02
by meslin
This is becoming a very interesting feature!
Is there a way to have a button (=keyboard shortcut) that advances to the next or previous image mark *of the same color*?
This would enable flipping of keys/extremes/etc all on one layer. I'm impressed with this concept in general.

/David

Re: Color Image Mark

Posted: 24 Sep 2010, 12:51
by Hervé
meslin wrote:This is becoming a very interesting feature!
Is there a way to have a button (=keyboard shortcut) that advances to the next or previous image mark *of the same color*?
This would enable flipping of keys/extremes/etc all on one layer. I'm impressed with this concept in general.
/David
V 2. -> V 3.
ImageMark.png
ImageMark.png (6.51 KiB) Viewed 4473 times

Re: Color Image Mark

Posted: 24 Sep 2010, 12:55
by chatbraque
And a brand new computer ?…
(with a cintiq) :D

Môrci !

Re: Color Image Mark

Posted: 24 Sep 2010, 13:03
by Hervé
V 3.
ImageMark.png
ImageMark.png (9.7 KiB) Viewed 4469 times

Re: Color Image Mark

Posted: 24 Sep 2010, 13:14
by Sewie
This is a great help for distinguishing between keysdrawings, breakdowns, inbetweens, slow ins/outs, etc, etc.
Thanks so much!

Re: Color Image Mark

Posted: 24 Sep 2010, 17:38
by malcooning
Amazing stuff Herve!
This has been a long-time feature request. So nice to have.
Thank you!

Next step: integrate it somehow into the timeline panel (in the similar fashion the layer-colors are integrated, but collapsable)

Re: Color Image Mark

Posted: 25 Sep 2010, 05:26
by meslin
Hervé,
This is so great!
Thanks so much!
David

--Now here's a tricky modification, not necessary but would be very cool--
Go to next/previous image with same color mark as current image (no effect if current image has no mark).

Re: Color Image Mark

Posted: 25 Sep 2010, 10:10
by Hervé
meslin wrote: --Now here's a tricky modification, not necessary but would be very cool--
Go to next/previous image with same color mark as current image (no effect if current image has no mark).
Good idea.
Create a new Action and add this code in a Embeded Grg Script
Go to the Previous Current Color Mark:

Code: Select all

tv_layergetimage
image = result

tv_layermarkget 0 image
color = result

tv_layerinfo 0
PARSE result state position density name type first last xxx

FOR i = image-1 to first STEP -1
   tv_layermarkget 0 i
   IF ( result == color )
      tv_layerimage i
      EXIT
   END
END
Go to the Next Current Color Mark:

Code: Select all

tv_layergetimage
image = result

tv_layermarkget 0 image
color = result

tv_layerinfo 0
PARSE result state position density name type first last xxx

FOR i = image+1 to last
   tv_layermarkget 0 i
   IF ( result == color )
      tv_layerimage i
      EXIT
   END
END

Re: Color Image Mark

Posted: 25 Sep 2010, 14:44
by Sewie
This new option is getting better and better. :)
I've made some adjustments to the appearance of the buttons and added the "previous/next current color mark" buttons.

Image

Re: Color Image Mark

Posted: 25 Sep 2010, 23:45
by malcooning
Herve, is there a way to make layer marks undoable?
If I click the "Clear all marks" button (even accidentally), the marks are removed with no way of bringing them back.
The only way is to recreate the marks from scratch.

Re: Color Image Mark

Posted: 06 Oct 2010, 10:08
by Mads Juul
Is it just me or?

If find it very Annoying that if my next image mark is outside the timeline view. lets say Im at the start and the next imagemark is at the end frame 100000
then if I press next I go the the next frame but the current frame is now outside the timeline.
Its because tv_layergetimage goesn't upfade the timeline view like for instance tv_exposurenext
And I have been complaining about it before. But is it only me??
-Mads

Re: Color Image Mark

Posted: 06 Oct 2010, 11:03
by hilere
I'm a huge fan of these image marks. I use them a lot. But found one other feature that could make it even better.

Sometimes I have been working on an animation without marking certain extremes. Sometimes some of those extremes are reused (i.e. cycles). Now I think it would be nice to be able to mark one and the soft immediately marks all copies of the same drawing. This way you immediately see where those drawings are reused and you immediately recognise your cycles.

Don't know if this should be an option (seperate setting) or just the only way it works (all copies are always marked). For my use it could be standard, but I don't know how others work with these marks.