Move/Tween Display Object Text

  • #1, by dionousTuesday, 06. March 2018, 10:30 6 years ago
    Hi all,

    Anyone knows if it is possible to move/tween a display object text from one position to another?

    Forum Fan

    246 Posts


  • #2, by SimonSTuesday, 06. March 2018, 11:49 6 years ago
    Yep, possible:

    for i=1,ActiveTexts.__len do
    
      if ActiveTexts[i].Owner == Objects.Objekt0 then 
        ActiveTexts[i]:to(1000,{Position={x=500,y=500}},easeQuadInOut)
    
      end
    
    end

    Thread Captain

    1581 Posts

  • #3, by dionousTuesday, 06. March 2018, 16:56 6 years ago
    works great, thanks!

    Forum Fan

    246 Posts