0

I have a label which displays dynamic text. For example, However, I want to add a slide in/slide out feature to the text that appears on the label. How can I do that ?

user782400
  • 1,617
  • 7
  • 30
  • 51

1 Answers1

0

I have a made an helper library for Titanium animations that you can find here https://github.com/raulriera/Animator

However, if you want to do this yourself "by hand", uou can achieve this using the 2DMatrix API http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.UI.2DMatrix you want to take a look at the translate method (which is the one responsible for moving views)

raulriera
  • 714
  • 10
  • 28
  • and how do I use the library ? Where do I have to add it in order to use the helper library ? – user782400 Jun 18 '13 at 07:42
  • You can find all the documentation in the github page. Under "Usage" – raulriera Jun 18 '13 at 16:17
  • where do I have to place the Animator folder ? – user782400 Jun 18 '13 at 19:11
  • there is no Animator folder, it's a JS file (put it anywhere in your resources). You do know how to use commonJS right? it seems like this is the first time you see Titanium. In that case I will suggest you try more basic stuff first. – raulriera Jun 18 '13 at 23:27