You are not logged in.

Search results

Search results 1-3 of 3.

Friday, November 4th 2011, 1:06pm

Author: ser4ep

where the error?

Hello! changed the code from the example of the official "demotour-kuchlerhaus" original Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 <action name="openthumb"> if(%2 != NEXT, set(pos,0); copy(curpos,plugin[%1].thumbpos); set(xdst, 0); set(ydst, 0);); if(pos LT curpos, inc(pos); inc(ydst,90); sub(ymax, stageheight, 100); if(ydst GT ymax, inc(xdst,90);set(ydst,0); ); openthumb(%1,NEXT); , add(xdst,10); add(ydst,10); tween(plugin[%1].x, get(xdst) ); tween(plugin[%1].y, get(y...

Monday, October 31st 2011, 10:38am

Author: ser4ep

Code value (nextloop)

Thank you very much, Zephyr! Now it will be easier to understand

Monday, October 31st 2011, 9:08am

Author: ser4ep

Code value (nextloop)

Hello The code snippet from the official sample "flyout-hotspots" Source code 1 2 3 4 5 6 7 8 9 10 <action name="flyback_others"> if(%1 != nextloop, set(i,0)); if(hotspot[%i].style == flyoutimage, if(hotspot[%i].flystate != 0, flyback_by_name(get(hotspot[%i].name)); ); ); inc(i); if(i LT hotspot.count, flyback_others(nextloop); ); </action> I can not understand what it means in this action: 1-"% 1" from the line № 2 2- "nextloop" from the lines № 2 and 9 Thank you