Interactive Ski resort Map

  • I am thinking of adding some video clips with a mouse over option but I am not sure how todo that I am also going to create some panos on the slopes

    Tip: when you upoad a video to youtube it lets you download the mpg4 video thats optimized for the internet, I replaced the cat video with one that I downloaded and it looked good

    Yep thats me at -25 on top of the mountain with a samyang fisheye lens and canon 500d filming in HD
    http://www.youtube.com/trysilresort#p/u/46/fCbbZWWaVSc

  • Hi,

    I also want to show a video on mouse over the webcam but i cant find the documention on how to do this please help

    include the video with the videoplayer plugin,
    e.g. in this way: (paused and hidden at start)

    Code
    <plugin name="video"
            url="videoplayer.swf"
            videourl="video.flv"
            align="center"
            pausedonstart="false"
            visible="false"
            alpha="0.0"
            enabled="false"
            />

    and the in the "onover" and onout" events on an "webcam" graphic,
    start and show the video or stop and hide it,

    e.g. (here the video will fade in and out by tweening the alpha value)

    Code
    <plugin name="webcam"
            ...
            onover="plugin[video].play(); set(plugin[video].visible,true); tween(plugin[video].alpha,1);"
            onout="plugin[video].pause(); tween(plugin[video].alpha, 0.0, default, set(plugin[video].visible,false) );"
            ...
            />

    best regards,
    Klaus

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!