Skip to main content
Participant
July 22, 2007
Answered

Migrate Action Script 1.0 to 2.0

  • July 22, 2007
  • 1 reply
  • 276 views
hello, I am migrating a flash app from action script 1.0 to 2.0 and have the following error:
/: w = getProperty (“/nav”, _width);
please which is the solution, thanks
This topic has been closed for replies.
Correct answer SymTsb
AS1 used tellTarget style access to clips and buttons. I believe AS2 used dot syntax and rather than /nav you can just use nav (assuming that is the instance name of the object whose property you need to access).

1 reply

SymTsbCorrect answer
Inspiring
July 23, 2007
AS1 used tellTarget style access to clips and buttons. I believe AS2 used dot syntax and rather than /nav you can just use nav (assuming that is the instance name of the object whose property you need to access).
Participant
July 23, 2007
Ok Thanks you symtbs
Inspiring
July 23, 2007
You're welcome