View unanswered posts | View active topics
| Author |
Message |
|
GraphicMan
|
Post subject: 4 SMALL ISSUES Posted: Thu Apr 23, 2009 11:18 am |
|
Joined: Tue May 27, 2008 3:29 pm Posts: 26
|
|
Dear Fiero
i have 4 issues
1. i need to use limzoom with the new stereo projection intro (sequence), if i tried to use it, it also limit the small planet intro movie (sequence), i thought to use settimer with limzoom but i couldn't, i mean to let the limzoom work after a specific time when the small planet intro is finished
2. i also need to disable mouse or at least to change its mood using settimer, because i usualy use mode 4 trackball, so any mouse movement at the intro time will affect the motion and also the time taken which will will lead to make specific actions in early time like conversion to spherical project after a specific time, if the convertion to spherical projection happen b4 the sequence finish will lead to a completely different frame (zoom)
3. is there is anyway to let the sequence of the small planet intro movie start as soon as the panorama is completely loaded? instead of determining a specific time which will always vary from computer to another
4. please check the autoplay function with using the mouse mode 4 (trackball) because it usually dont work fine, i mean if i didn;t press or move the mouse ,the autoplay will not be activated, unless i make any action then it will work, but i must move the mouse or keyboard at least once
thank you very much[/b]
|
|
| Top |
|
 |
|
fiero
|
Post subject: Posted: Tue Apr 28, 2009 3:33 am |
|
 |
| I only was walking somewhere... |
 |
Joined: Tue Aug 09, 2005 1:55 am Posts: 2007
|
Hi GraphicMan,
I answer here as well:
1- I added a new function to change some values of the current frame. See this FrameValue() http://www.devalvr.com/paginas/soporte/ ... FRAMEVALUE
You can use this function into a timer after sequence finish to change the "minzoom" or "maxzoom".
2- With the same FrameValue() function you can define the "velocity" of current frame. Set this velocity to 0 to disable all mouse interaction. Set "zoomvelocity" to 0 to disable zoom too. After the sequence, you can restore these values to enable the movement (remember, by default the velocity of the frame is
I fixed the problem with zoom, when the projection is changed before to finish the sequence.
3- See this example http://www.devalvr.com/paginas/soporte/ ... ripts.html , I use propertycode2 to start the sequence when progress is 100%. You can see the use of FrameValue in this example too.
4- I fixed this problem in latest 0,7,6,4 version, now autoplay should work with mousemode=4 without any interaction.
regards!
|
|
| Top |
|
 |
|
GraphicMan
|
Post subject: Posted: Wed Apr 29, 2009 9:16 pm |
|
Joined: Tue May 27, 2008 3:29 pm Posts: 26
|
|
thank u very much, but try to use mousemode 4 and u will find some motion jumping and reverse
Also,
is it possible to set action be made automatically afgter a sequence is finished? rather than calculating sum of secounds and using settimer
Thank u and waiting
|
|
| Top |
|
 |
|
fiero
|
Post subject: Posted: Wed Apr 29, 2009 9:24 pm |
|
 |
| I only was walking somewhere... |
 |
Joined: Tue Aug 09, 2005 1:55 am Posts: 2007
|
Hi!
Mousemode=4 works like the "manual" movement in the toolsbar. If you want to invert the movement, use invertmouse=1 :
Code: (pano) { type=MOV; file=panorama.mov;
mousemode=4; invertmouse=1; }
I will add functions in the sequence files, but not possible at this moment, sorry.
|
|
| Top |
|
 |
|
GraphicMan
|
Post subject: Posted: Wed Apr 29, 2009 9:30 pm |
|
Joined: Tue May 27, 2008 3:29 pm Posts: 26
|
|
no no, u missunderstood me
we wanted to stop mouse actions while sequence is played
this worked fine but not with mousemode 4, while using mousemode 4 , the sequence have some problems.
plz check it and see.
thank u
|
|
| Top |
|
 |
|
fiero
|
Post subject: Posted: Wed Apr 29, 2009 10:25 pm |
|
 |
| I only was walking somewhere... |
 |
Joined: Tue Aug 09, 2005 1:55 am Posts: 2007
|
|
| Top |
|
 |
|
GraphicMan
|
Post subject: Posted: Thu Apr 30, 2009 10:50 am |
|
Joined: Tue May 27, 2008 3:29 pm Posts: 26
|
|
no i cann't in ur example, but mabe that happen with the standalone , as all my testing on the standalone
also plz try to hide the mouse coz this is wut i am always doing as well
thank you
|
|
| Top |
|
 |
|
fiero
|
Post subject: Posted: Thu Apr 30, 2009 10:58 am |
|
 |
| I only was walking somewhere... |
 |
Joined: Tue Aug 09, 2005 1:55 am Posts: 2007
|
|
| Top |
|
 |
|
GraphicMan
|
Post subject: Posted: Thu Apr 30, 2009 1:45 pm |
|
Joined: Tue May 27, 2008 3:29 pm Posts: 26
|
|
sound right, however i will try to figure out the reason, and yes i was using the latest
thank you very much
will update u soonest.
Abdo
|
|
| Top |
|
 |
|
GraphicMan
|
Post subject: Posted: Thu Apr 30, 2009 5:53 pm |
|
Joined: Tue May 27, 2008 3:29 pm Posts: 26
|
|
so here is the case
the reason was somthing i was going to request as an extra last time but forgot
i found the reason is in params.txt, the autoplay=2, and that wil only happen with a big enough panorama (10000px or more)because of loading time which is a duration of 2 sec or more needed, in another way this duration u can control (move) the panorama, the ristriction is starting after loading
so my friend we gotta fix this lacuna to fix 2 issues.
and i still prefere u to make the action inside the sequence file tobe more easy and professional
thank you very much
Abdo
|
|
| Top |
|
 |
|
fiero
|
Post subject: Posted: Thu Apr 30, 2009 6:03 pm |
|
 |
| I only was walking somewhere... |
 |
Joined: Tue Aug 09, 2005 1:55 am Posts: 2007
|
Maybe you can set autoplay=0 in this first panorama (to disable it), and enable it when sequence finishes:
Code: (pano) { type=MOV; file=panorama.mov;
autoplay=0; mousemode=4; invertmouse=1; settimer=endsequence,1,14,"FrameValue("", "autoplay", 2);"; }
Last edited by fiero on Thu Apr 30, 2009 6:06 pm, edited 1 time in total.
|
|
| Top |
|
 |
|
GraphicMan
|
Post subject: Posted: Thu Apr 30, 2009 6:05 pm |
|
Joined: Tue May 27, 2008 3:29 pm Posts: 26
|
|
yes my friend thats right for now
but we wil still need at least to stop the controls in the loading time
any ideas for that?
thank u
|
|
| Top |
|
 |
|
fiero
|
Post subject: Posted: Thu Apr 30, 2009 6:09 pm |
|
 |
| I only was walking somewhere... |
 |
Joined: Tue Aug 09, 2005 1:55 am Posts: 2007
|
Do you have any problem with velocity=0 ?
Code: (pano) { type=MOV; file=panorama.mov;
autoplay=0; velocity=0; zoomvelocity=0;
mousemode=4; invertmouse=1; settimer=endsequence,1,14,"FrameValue("", "autoplay", 2);FrameValue("", "velocity", 8);FrameValue("", "zoomvelocity", 8);"; }
|
|
| Top |
|
 |
|
GraphicMan
|
Post subject: Posted: Fri May 01, 2009 2:37 pm |
|
Joined: Tue May 27, 2008 3:29 pm Posts: 26
|
|
no i think i shouldn't have problem with this,however i will try and let u know.however i have problem with autoplay enabled after the sequence:it only start wotking when u move the mouse at least once after sequence ends otherwisase it wont work.
thank u
|
|
| Top |
|
 |
|
GraphicMan
|
Post subject: Posted: Fri May 01, 2009 6:16 pm |
|
Joined: Tue May 27, 2008 3:29 pm Posts: 26
|
|
another problem i have found:
devalvr crashes with panoramas equal or more than 15000px starting with initial zoom of 0.4 or less
and since i need to start with 0.3 initial zoom i cannt use 15000px version
i am using winxp with 2gb memory 3ghz cpu
please let me know
Abdo
|
|
| Top |
|
 |
Who is online |
Users browsing this forum: No registered users and 0 guests |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum
|

|