setProperty

hai guys :slight_smile:
i m new to flash scripting, can anybody tellme abt “setProperty” and abt all of its property like ,"_x,_y,_xmouse,_ymouse, etc"

any reply will be highly apprecialbe
with regards
maggi

did u check the mx reference:

setProperty

Availability

Flash Player 4.

Usage

setProperty(“target”,property,value/expression)

Parameters

target The path to the instance name of the movie clip whose property is to be set.

property The property to be set.

value The new literal value of the property.

expression An equation that evaluates to the new value of the property.

Returns

Nothing.

Description

Action; changes a property value of a movie clip as the movie plays.

Example

This statement sets the _alpha property of a movie clip named star to 30% when the button is clicked:

on(release) {
setProperty(“star”, _alpha, “30”);
}

*Originally posted by h88 *
Availability

Flash Player 4.
I think that this is the most important is this. You shouldn’t use it too much…

it would be in the future a leftover method from Flash 4 and will most likely be deprecated in later versions of Flash!

yours,
h88