Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

what is this ":/" stand for in front of variable?

Status
Not open for further replies.

KattyKatty

Programmer
Nov 10, 2003
91
TH
Hello, :)

I would like to know the meaning of "/:" in front of variable such as:
-----------------------------
on (release) {
/: name=_name;
/: target=_target;
}
-----------------------------
what is this "/:" stand for?

Thank you,
Kathryn
 
This was Flash 4's way of referencing a variable, to the _root timeline...

The "/" is the same as _level0 and the ":" was to indicate that the following was a variable, thus...

/:name = somevalue;

...Is the same as...

_level0.name = somevalue;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top