I'd like to understand better a few settings at the config file:
---> tilesize=4000
---> levels=1
---> maxsize=8000
---> maxcubesize=2200
---> jpegsubsamp=422
---> jpegoptimize=true
I'd like to understand better a few settings at the config file:
---> tilesize=4000
---> levels=1
---> maxsize=8000
---> maxcubesize=2200
---> jpegsubsamp=422
---> jpegoptimize=true
I'd like to create 02 buttons.
The code I'm using is:
<plugin name="planetbutton" url="images/littleplanet.png" ath="0" atv="0" onclick="action(littleplanet);"
align="bottom left"
edge="center"
scale="0.8"
x="200" y="80"
ox="0" oy="0"
onhover="tween(scale,1,0.1); showtext(Ver Little Planet Interativo, texto)"
onout="tween(scale,0.8,0.1)" />
<action name="littleplanet">
set(display.flash10,off);
tween(view.architectural, 0.0, distance(1.0, 0.25), easeoutquad);
tween(view.fisheye, 0.0 ,distance(1.0, 0.10), easeoutquad,
set(view.stereographic,true);
tween(view.fisheye, 1.0, distance(1.0, 0.75));
tween(view.fov, 130, distance(179, 0.75), easeoutquad, set(view.fovmax,150););
tween(view.vlookat, 90, distance(179, 0.75), easeoutquad);
set(autorotate.enabled,false);
);
</action>
Display More
Now for the normal button (to come back to the normal view) the plugin is:
<plugin name="ver_normal" url="images/normal.png" ath="0" atv="0" onclick="action(rectview);"
align="bottom left"
edge="center"
scale="0.8"
x="285" y="80"
ox="0" oy="0"
onhover="tween(scale,1,0.1); showtext(Voltar à visualização 360°, texto)"
onout="tween(scale,0.8,0.1)" />
Now my question is: I'd like this action "rectview" to set this values: <view hlookat="0" vlookat="0" fovtype="MFOV" fov="110" maxpixelzoom="1.5" fovmax="130"/>
Can you help me?
So Jarredja, how can I make a link to an specific panorama (xml) that is embedded) in the swf file?
Hey there :)
I'm planning to buy a Ipad to be a practical way to display my panoramas for clients.
Do I just need to order the additional license and I'm good to go?
Great job. When you first talked of wedding panoramas, I wasn't sure how well it could be done, but you have done a great work with style.
Congrats!
Thanks. Yes, it's possbile but I don't want to focus on this market. I'm a wedding photographer so it's easier to add this new service to my clients, but I'll try to focus on other markets. Real estates, private companies, etc.
Lucky couple to get married in 360° view, hope they cherish these moments whole life.
Great presentation & wonderful skin for the tour, 1 suggestion is to use architectural projection for such tours as it distracts when the view gets tilted.Overall great presentation, thanks for sharing such inspiring work.
Thanks :) It's actually my first panorama job. I also hope they enjoy these moments in 360º. Better now it's made using krpano :) I almost delivered single panoramas made with pano2vr :(
Great job Fellipe,
It seems you've gone from "complete newbie" (your words on from your first post) to quite accomplished in less than 3 weeks!
Congrats. Very nice portfolio!
steve
Hey Steve. I also cant believe I did learn (well a little) in less than 3 weeks. When I started it seemed impossible. But as Jarredja said me once: It clicks, sooner or later :)
Hi Fellipe,
Excellent tour, great photography and a skin/interface that totally suits the subject matter.
Great work.
T12
T12, thanks for your compliments on my work and on the tour. I hope I made a simple yet elegant skin.
Perfect Michel.
Thank you very much :)
A new tour is online.
It's an actual wedding hope you enjoy.
NEW VERSION, with minor changes and bug fixes:
http://arte360.com.br/tours/eventos/…fabio/index.htm
Thanks
I added a bottom banner to a new tour I'm creating but I'd like the bottom banner img maintain its aspect ratio no matter the screen size. How can I do that?
The code:
hmm now I see you edited the code above :)
We came to the same solution using different way. This is nice about logical computer language :)
I just improved the code and now the menu can be open onclick and hide onclick and also it's closed automatically if mouse out, but with a small delayedcall (to avoid "jerky" mouse movement) that is cancelled if mouse over the menu again.
Here's the code, if anyone is interested:
<plugin
name="menu"
url="images/menu.png"
keep="true"
visible="true"
enabled="true"
handcursor="true"
capture="false"
zorder="1"
alpha="1"
blendmode="normal"
smoothing="true"
align="lefttop"
edge=""
x="40" y="-158"
ox="0" oy="0"
rotate="0"
width="" height=""
scale="1"
scale9grid=""
crop=""
mask=""
onloaded=""
onclick="action(menu_show)"
onover="set(delayedcall,true);"
onhover="showtext(Escolha uma cena para ver em 360º, texto)"
onout="set(delayedcall,false); action(menu_auto);"
ondown=""
onup=""
/>
<action name="menu_show">
tween(plugin[menu].y,0,distance(700,3),linear);
set(onclick,menu_hide());
</action>
<action name="menu_hide">
tween(plugin[menu].y,-158,distance(700,3),linear);
set(onclick,menu_show());
</action>
<action name="menu_auto">
delayedcall(0.5,if(delayedcall==false, action(menu_hide)));"
</action>
Display More
Steve it worked 100%! Thansk a lot for the code :)
my current code is:
<plugin
name="menu"
url="images/menu.png"
keep="true"
visible="true"
enabled="true"
handcursor="true"
capture="false"
zorder="1"
alpha="1"
blendmode="normal"
smoothing="true"
align="lefttop"
edge=""
x="40" y="-158"
ox="0" oy="0"
rotate="0"
width="" height=""
scale="1"
scale9grid=""
crop=""
mask=""
onloaded=""
onclick="action(menu_show)"
onover=""
onhover="showtext(Escolha uma cena para ver em 360º, texto)"
onout="delayedcall(0.0, action(menu_hide); );"
ondown=""
onup=""
/>
<action name="menu_show">
tween(plugin[menu].y,0,distance(700,4),easeOutBounce);"
</action>
<action name="menu_hide">
tween(plugin[menu].y,-158,distance(700,3),linear);"
onclick="menu_hide();"
</action>
Display More
What I need to do?
anyway to set the onover to cancel the onout command?
It worked Jarredja, but not the way I want :(
I inserted the code and even if the user keeps the mouse on the menu it plays the action hidemenu after the delay time...
Got :)
If anyone is interested just use "easeOutBounce"
:)
I"d like to set a delay time to when user leaves the menu area it calls a action to hide the menu.
The code I'm using is:
onout="delayedcall(2.0, action(menu_hide);"
But it's not working.
Is this right?
How can I do that "bounce" effect instead of slide for a menu?
I've updated the virtual tour to a improved version:
http://www.arte360.com.br/sagae2/
Please tell me if you like this new version better!
Thanks
Fantastic Tuur. It's better than I thought, I mean with your code the menu hides when user select a thumb :)
Thanks