You are not logged in.

- SZIKRA -

Beginner

  • "- SZIKRA -" started this thread

Posts: 34

Location: Hungary, Szeged

  • Send private message

1

Saturday, July 25th 2009, 10:21am

Order of the rows

Hi!

Is there any order between the rows?...

This is an example:

If I run this code, the first row do nothing, but, if I take the first row undert the "tween(plunin...."
the code is work.

Hmmm..... I cant understand..... *huh* Why?

Source code

1
2
3
4
5
6
7
<action name="hidespots_emelet">  if(plugin[udvar_terkep].x == 415,tween(plugin[udvar_terkep].x,40));
 
 if(plugin[emelet_terkep].scale == 0.5,action(nagy_emelet));
 tween(plugin[emelet_terkep].rotate,90,0.2,,hidespots_emelet_wait));
</action>
<action name="hidespots_emelet_wait"> tween(plugin[emelet_terkep].x,-20); set(plugin[emelet_gomb].onhover,tween(y,-65,0.1)); set(plugin[emelet_gomb].onout,tween(y,-55,0.1)); 
</action>

- SZIKRA -

Beginner

  • "- SZIKRA -" started this thread

Posts: 34

Location: Hungary, Szeged

  • Send private message

2

Saturday, July 25th 2009, 10:24am

Ok...

The first row is this: "if(plugin[udvar_terke...." *g*

Graydon

Professional

Posts: 614

Location: Texas

Occupation: Industrial gas turbine services.

  • Send private message

3

Sunday, July 26th 2009, 7:34pm

Are you sure of what the values are that you are checking?

plugin[udvar_terkep].x
plugin[emelet_terkep].scale

You can add the following to the action to check them.

Source code

1
2
trace(plugin[udvar_terkep].x);
trace(plugin[emelet_terkep].scale);

Similar threads