[MX] Sending variables from PHP to Flash

ok attached is the fla, the html and the swf for the other movie i want to load. G/L

page = “contact.swf”;
_root.loadMovie(page, 1);

here it imidiatly give an error that it cannot load contact.swf… coz it dozn’t exists, meaning it works

_root. loadMovie(page, 1) ?

Dont know why but it works with _root..

Hmm.

:thumb: Well thanks for all the help every one! :thumb:

root

Availability

Flash Player 4.

Usage

_root.movieClip
_root.action
_root.property

Parameters

movieClip The instance name of a movie clip.

action An action or method.

property A property of the MovieClip object.

Description

Property; specifies or returns a reference to the root movie Timeline. If a movie has multiple levels, the root movie Timeline is on the level containing the currently executing script. For example, if a script in level 1 evaluates _root, _level1 is returned.

Specifying _root is the same as using the slash notation (/) to specify an absolute path within the current level.

Example

The following example stops the Timeline of the level containing the currently executing script:

_root.stop();

The following example sends the Timeline in the current level to frame 3:

_root.gotoAndStop(3);

But I thought actions in the main timeline were already at _root .

but the action ur using needs to have an target were to load the movie to…

in this case the main timeline… wich is _root :slight_smile: