Flash (v8) controller

Special forum to share and discuss skins for Pano2VR and Object2VR
Post Reply
User avatar
hum@no.id
Posts: 945
Joined: Sat Sep 09, 2006 10:35 pm
Location: Dark side of the Moon
Contact:

Hi, Thomas

What code it is necessary to add into older (V8) flash controller
for Mass simulation movement FX?

here:

Code: Select all

on (press)
{
    actionId = "pan";
    actionValue = 20;
}

on (release)
{
    actionId = "";
    actionValue = 0;
}

on (releaseOutside)
{
    actionId = "";
    actionValue = 0;
}
or here:

Code: Select all

var playerControl;
var actionId = "";
var actionValue;
var autorotate = false;
_root.attachMovie("no", "auto_no", 0, {_y: auto._y, _x: auto._x});
_root.onEnterFrame = function ()
{
    autorotate = playerControl("autorotate") != 0;
    if (auto_no._visible == autorotate)
    {
        auto_no._visible = !autorotate;
    } // end if
    if (actionId != "")
    {
        playerControl("autoplay", 0);
        playerControl(actionId, actionValue);
this possible for Flash 8 panorama compiler?
Gumir J | VR Panoramic Photographer | mobile: +77055717171 | skype: gumirj
website: gumirj.com | google.com/+gumirj | facebook.com/gumirj | twitter.com/gumirj
Post Reply