I have a symbol. With a button I want to move the X position of the symbol
Have you tried using .animate?
sym.$("symbol_name").animate({left:200}, 1000);
200 is the position and 1000 is the duration of the animation. 1000 = 1 second.
Retrieving data ...