• Dear Forum Members,


    I'm new to this but I'm super excited and willing to learn.


    I've been reading the forums on krpano.com and on autopano.net


    Based on a lot of hard work and this knowledge base I've created a
    autopano tour file linked to twenty-four 360degree tour with tons of
    links to pictures and other pano's.


    Now I've just been given a deadline by thanksgiving.


    Problem One: Repeat a sound throughout the whole tour.


    Problem Two: Play a sound when you link from one pano to the other. The zoom link in my pano.


    Problem 3: IF POSSIBLE. Create a guest logbook of text that users can see. Maybe a non-forum adobe flash forum question.
    But I'd still like to integrate all of FLASH features into Autopano Tour files... think of the Interactive Possibilities!!!


    Now I've searched Autopano.net forums on sound but they just refer me to here.


    Then I've read here and it shows me code to insert.


    Ok.


    I have programed my website in dreamweaver.


    I understand how to look at code in there and change it.


    What file in autopanotour do I put the code into?


    Which program do I use to code it?


    Just text edit?


    I'm sorry if my question sounds stupid.


    I'm trying my best to learn as soon as possible.


    I'm good with doing my homework.


    I
    just haven't bridged the gap between the GUI AutoPano Tour program, the
    krpanotools code, and the actual .xml(?) coding that I'm supposed to
    change.


    I've bought the tools license and the unlimited license.


    I just need a little help please.


    Sincerely,


    DreamLogan.com

  • Hi,

    Problem One: Repeat a sound throughout the whole tour.

    in krpano itself, that would be easy,
    just include the soundinterface plugin and call playsound(),
    e.g.

    Code
    <krpano onstart="playsound(bgsound, yoursound.mp3, 0);">
     <plugin name="soundinterface" url="soundinterface.swf"  preload="true" />
     ...
    </krpano>

    the sound will not stop until stopsound(bgsound); or stopallsounds(); will be called,

    you will find the documenation for the soundinterface plugin here:
    sound interface plugin (beta)

    Problem Two: Play a sound when you link from one pano to the other. The zoom link in my pano.

    do you mean play a sound only during switching to a other pano?
    you could call playsound(...); before calling loadpano(..);

    e.g.

    Code
    <hotspot .... onclick="playsound(auto, sound.mp3, 1); loadpano(pano2.xml,null,MERGE,BLEND(1));" />


    Zitat

    What file in autopanotour do I put the code into?

    do be able to edit the xml you need to export it in APT,


    Zitat

    Which program do I use to code it?
    Just text edit?

    you can use any text editor you want to edit the xml files...


    best regards,
    Klaus

Jetzt mitmachen!

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