Jump to content
Search Community

Jeremy Rudd last won the day on January 6 2013

Jeremy Rudd had the most liked content!

Jeremy Rudd

Members
  • Posts

    30
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Jeremy Rudd

  1. TLFTextField is basically a wrapper around a faster version of TextField, the flash text engine classes. (FTE) So SplitTextField will basically have to be rewritten for FTE textfields, if you really need it then open up the code and consider changing every instance of TextField with TextLine (TextLine supports a single line of text, no formatting, no HTML). You could port the code that way to use a FTE textfield, and that could be used to work with TLFTextFields. Hope it helps.
  2. Hi all, Currently TweenLite marks completed tweens for garbage collection by setting gc=true. This gc var is later detected by the enterFrame function and the tween is removed from the masterList array using splice. Is there any specific reason its done like this? Could this not have been done directly in the complete() function? Thanks
  3. Hi all, This is more of a technical question, but anyways. I noticed that the "masterList" Dictionary object is cached in a local var before iterating through it. Why is this? Is there any speed benefit? var ml:Dictionary = masterList; var tgt:Object; for (tgt in ml) { I was just curious if this was needed. Thanks.
  4. Hi, What is the difference between TintPlugin and HexColorsPlugin? HexColors says it tweens colors so they "look correct", does tint plugin use a dumber version of the same? Thanks
  5. Hi all, I wanted to know how the EndArrayPlugin is different from the regular TweenLite? Comparing: var myArray:Array = [1,2,3,4]; TweenLite.to(myArray, 1.5, [10,20,30,40]); And the alternate EndArray syntax: var myArray:Array = [1,2,3,4]; TweenLite.to(myArray, 1.5, {endArray:[10,20,30,40]}); How would that be different? And I looked at the code in EndArrayPlugin, it supports round on/off which TweenLite does not? Is that the only difference or is there more? They both work, I've tested them.
×
×
  • Create New...