Idan
1
:cowboy:
ok, I make input text and gave him the var “Roc”
I created box and give him the name “box”
Now, I made button with the action:
on (release) {
setProperty(“box”, _rotation, “???”);
}
What I need to write instead of the ??? for get the value of the input text?
thanks! 
and sorry about my english :A+:
system
2
try this 
on (release) {
_parent.box._rotation = _parent.Roc;
}
system
3
thanks but…
You check it’s work?
because it doesnt work to me…
system
4
nope… i didn’t 
it should work though :-\
is the instance name of the movie clip box correct?
system
6
thanks…
But why it isnt work in my file?
system
7
stupid addressing from buttons… :hair:
that’s why i always put all my scripts in the timeline 
use this one 
on (release) {
box._rotation = roc;
}