• Ok, Ihave asked for help in the past about buttons, etc, and several folks told me to READ. LOL. I did. made no sense after many weeks of trying tounderstand. At any rate, one poster gave me a very simple answer of "Put THIS here...and THAT there". Very plain and simple, and it worked perfect ever since. Does anybody know of anybody I can paypal for help like that again???? Where help can be in the simplest form for me?


    All I want to do is make a neatly presented box that pops up in center that will tell the viewer something, such as location image was shot, date, etc.,..then have it go away after a few seconds. I guess similar to textfield, etc. I looked in plugins, copied swf for textfield, etc. Let's just say I really messed up an otherwise good panorama. LOL


    I have no problem paying somebodyif they can break things down to what EXACTLY to copy/paste from "here to there". If that makes sense.

  • create yourself your image you want in the center as a plugin, notice the visible setting is false. other variables may be needed this is just an example.

    <plugin name="center image"
    url="centerimage.jpg"
    align="center"
    edge="center"
    onclick="set(visible,false);"
    visible="false" />

    create an action to show the image and then 3 seconds later remove it.

    <action name="show">
    set(plugin[center image].visible,true);
    wait(3);
    set(plugin[center image].visible,false);
    <action/>

    now use the onloaded event to show the image once the panot is fullt loaded.

    <event onloaded="action(show);"

    the above code will provide an center image that will show once the pano is fully loaded and after 3 seconds it will disappear. If the user clicks on the image it will disappear before the 3 seconds is up. There are alot of thing that can be done to make this more visually appealing but it is a start. i think the code is right but i tried to write it from memory sometimes my syntax is a little off.

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!