Suchergebnisse
Suchergebnisse 1-20 von insgesamt 54.
Hello Sachagriffin I've seen these "cursors" exemples. They are nice. But when the mouse is over a plugin, you see the "hand cursor" and i would like to have a custom cursor (transparent or custom image) Do you think i could do that ? The only thing i can do is : Quellcode 1 handcursor="false" But it is not custom cursor...
Hello ! Do you know if it is possible to do something like this in krpano (like in ActionScript 3) : Quellcode 1 Mouse.hide(); Thanks.
Thanx VN2011 ! I'll test your settings. And which size do you choose for the image in pixels ?
Hello, Recently, i have developed with friends several applications with krpano. The app was installed on hard drive so the performances were really good (off line version / output format : standalone app). Now, we want to create an online version. I've made some changes in order to increase performances : - Reduce images size. - Reduce fisheye parameter I've also tried to reduce "fps"and "details". Any idea ? What do you suggest to improve performances ? Which image size do you choose (cubical)...
Hi, My question is how to create a custom mouse cursor ? I know, there is an option in krpano but it doesn't do what i want. You can choose an image or create an animated cursor but when mouse is over a hotspot or a plugin, i still have the "hand" graphic". What i want is to change this "hand" graphic". I know how to do it in as3. So, i've made a swf file, insert it as an hostpsot, and i've created my as3 code in order to make my custom mouse cursor. It works in flash, but not in krpano. Do you ...
Hi ! Do you know how to get a custom mouse cursor in krpano ? I know how to do it in AS3 but how to do it in krpano ? Thank you ! EDIT : I think the solution is in the "Cursors Example" ... Sorry for my post !
Thank you Michel for the tip. I didn't notice that there were a new sound plugin in the krpano beta 1.0.9 ( soundinterface.swf beta) ... There are so many improvement in krpano recently !! The plugin works fine with fade effect.
Thank Michel, that's great news !! I'll try it now ! Salut !
Hi Tuur, I'm really not sure i can fade out the sound before stop with "soundinterface.swf" plugin. I think this parameter is not available... I've read the doc, a simple plugin with play / loop It's a good plugin, for playing music in background, or add sounds FX to buttons. In my project, when you clic on HS, windows appear (with video in them) and stop the background music. Works fine but looks bad, because the music is cut without fade out... It's not a major issue Just want to do a nice job...
Hello, I'm using for the first time soundinterface.swf and it works fine. I have buttons which play mp3 files and other buttons which stop playing mp3 files. I was just wondering if it is possible to add a fade effect when i stop playing a sound/loop ? Maybe not ? I guess the "stop playing sound action" close the stream immediatly as in as3 : Quellcode 1 mymp3.stop(); It's the same with "close method" for video, it stops the stream without fade effect. Do you know if it is possible to make a fad...
Zitat i just want you to know that if i put the animation as plugin then it works correctly (with the events of the mouse) Great ! Zitat but i want to use it as hostspot then you could add an action in your xml file to your plugin with "onclick" for example : Quellcode 1 2 3 4 5 6 7 8 9 <plugin name="animation" url="your-flash-plugin.swf" onover="" onhover="" onout="" ondown="" onup="" onclick="lookto(180,0,150);" /> Or you could add an action in your flash plugin in AS3 : Quellcode 1 krpano.ca...
Hi, First, do your animation work when you preview it in Flash ? When mouse is clicked, your animation play ? If it works, then you should try to integrate it as a plugin in xml file. And did you add this code in your flash project ? Quellcode 1 2 import krpano_as3_interface; var krpano:krpano_as3_interface = krpano_as3_interface.getInstance();
Hi, I think you have to do your animation in Flash and Action Script 3. Create an animation in flash and create AS3 code to play your animation when mouse is clicked : Quellcode 1 MouseEvent.CLICK Then, insert your flash plugin in xml file in krpano.
Hi ! First, i would like to thank everybody here for your help, especially Michel who worked really hard on this issue. So, Michel, your code works very well !! Quellcode 1 krpano.call("updatescreen()"); Also, Thank you Klaus for your answer Zitat theoretical it would be already possible to disable that locking Can i disable that locking or you have to do it in krpano ? Bye ps : Thank you Michel for the links about AS3. Do you know that book "Pratique d'action script 3" : It is written by an eng...
Hi, Thank you for your help. Michel, i've tried your code but it doesn't work. But the idea is good... I've tested your code, it is "button 1" in my example. Sometimes, it shows the hotspot, sometimes not. Working on that code, i've noticed someting weird. There a new button in this example, call "button 2" : http://www.reflexion-graphic.com/ds-pano…ns/buttons.html (think to empty the "cache" before looking to the example in safari or firefox) The AS3 code is : Quellcode 1 2 3 4 5 6 7 8 9 10 11 ...
No, the as file "krpano_as3_interface" has to be in the same folder. You don't have to put that code in your project. 1) Create a layer. Draw a button. Convert it to "symbol" button. 2) Name your button in the property box : button_fullscreen Create a new layer, paste the code i gave you in the action window. tha'ts all. It works here. Its a button which set fullscreen.
Your button has a name in the library, but you have to name the instance in the property window. In flash, window, open property. Select your instance (your button) and add "button_fullscreen" in the field in the property inspector.
Hi ! Try this in your AS3 code (i've tested it, it seems to work...) : Quellcode 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 // - should be in the same folder or in the class path import krpano_as3_interface; var krpano:krpano_as3_interface = krpano_as3_interface.getInstance(); this.button_fullscreen.addEventListener(MouseEvent.CLICK, fullscreen_clicked); this.button_fullscreen.useHandCursor = true; function fullscreen_clicked(mouseevent:MouseEvent):void { if (stage.displayState != Sta...
Hi Tuur, You put the "krpano_as3_interface file" and the "plugin swf file" in the same folder. I can't open your fla file, could you verify if it is ok ? /Vinyl
Hi, I found this : I can change the "alpha value" of a "image Hotspot" but not for a "polygonal hotspot" !!! Ciryl, the code was correct but doesn't work with my polygonal HotSpot" !!! It's weird !! Maybe Klaus will confirm that.... Here is a simple example of my issue, nothing in it except a plugin and a hotspot : http://www.reflexion-graphic.com/ds-panorama/examples/buttons/buttons.html The hotspot is "visible" but "alpha = 0" sor you have to move over it to see the Hotspot. It is in the middl...