Digital Workshop

Welcome to the Digital Workshop Message Boards
It is currently December 22nd, 2024, 10:49 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 11 posts ] 
Author Message
 Post subject: reverse slideshow
PostPosted: January 18th, 2011, 12:05 pm 
Offline

Joined: November 14th, 2009, 11:02 am
Posts: 24
Location: Barcelona (Catalonia,Spain)
Opus: v 7.04
OS: W7 Pro 64
System: Corei7/ Nvidia Quadro4000/ 12Gb
HI

I am designing an application (in Flex) where the slideshow is behaving like a movie.
I can go frame by frame , play, to end ....
but I have a problem:

I can do (script) so that the slideshow is running backwards ?? :roll:


Another question:
I need to have running 2 slidesows at once, and need control the transparency (with a variable) of one of them
This work appears in the preview, but when compiling (flex) does not work.
It only works when I put a preset in the slideshow setup menu
but then I can not change the programming values.

nasua

windows 7 pro 64


For this message nasua has been thanked by : mackavi


Top
 Profile  
 
 Post subject: Re: reverse slideshow
PostPosted: January 18th, 2011, 2:57 pm 
Offline
Godlike
Godlike
User avatar

Joined: March 21st, 2007, 10:44 am
Posts: 3188
Location: UK
Opus: Evolution
nasua wrote:
This work appears in the preview, but when compiling (flex) does not work.


Opus Flex does not work in the same way as Opus / Plexus applications. The IDE can be used to build Flex applications but the functionality is limited and must be evaluated in the browser.

Opus helps goes some to to explaining what can / cannot be done, but don't take it as gospel. IMHO, it's good practice to use actions where possible and test key scripted functionality individually before adding to the main project.

In answer to your first question, the backwards action is available in flex for slideshows - so yes you could run it backwards. I've not tried scripted triggers but even without this, just link it to a ticker and control this via a variable for start / stop.


As for answer two, I believe that settransparency will not work in flex, but again by using actions and fade, you can simulate this.

Regards,

Mack

_________________
When you have explored all avenues of possibilities, what ever remains, how ever improbable, must be the answer.

Interactive Solutions for Business & Education
Learn Anywhere. Learn Anytime.

www.interaktiv.co.uk
+44 (0) 1395 548057


For this message mackavi has been thanked by : nasua


Top
 Profile Visit website  
 
 Post subject: Re: reverse slideshow
PostPosted: January 18th, 2011, 5:58 pm 
Offline

Joined: November 14th, 2009, 11:02 am
Posts: 24
Location: Barcelona (Catalonia,Spain)
Opus: v 7.04
OS: W7 Pro 64
System: Corei7/ Nvidia Quadro4000/ 12Gb
Mack:

I am aware of the limitations of exporting Opus Flex ...but always try to try new things... :roll:
So far everything I've done it works very well and will soon be able to show the results in the new portal

In first question,yes I have the chance to go back a slide, but what I wanted to see (play) the "whole" series is going to back.
In addition, we also need rotate at the same time the frame at an angle (to simulate a scientific instrument)
I tried a manual simulation of the "play "button"


Code:
function endevant(){

sector1.GotoSlide(slideNum)
sector1.SetRotation(slideNum,true,0.0)
slideNum = (sector1.GetSlide()+1)


sector1.GotoSlide(slideNum)
sector1.SetRotation(slideNum,true,0.0)
slideNum = (sector1.GetSlide()+1)

...etc

}


the problem is that the sitema goes directly to the end and I see no intermediate frames (I can put delays in flex )
I have also tried "cheat" like

Code:
function endevant(){

sector1.GotoSlide(slideNum)
sector1.SetRotation(slideNum,true,0.0)
slideNum = (sector1.GetSlide()+1)

timer()

sector1.GotoSlide(slideNum)
sector1.SetRotation(slideNum,true,0.0)
slideNum = (sector1.GetSlide()+1)

timer()

...etc

}

function timer(){

Image1.Show()
Image1.Hide()
// Image1 Transition -> fADES,sIMPLE 1,00, Exclusive
}




but is not working ...


The second question I leave for later... :lol: :lol:


nasua


For this message nasua has been thanked by : mackavi


Top
 Profile  
 
 Post subject: Re: reverse slideshow
PostPosted: January 18th, 2011, 6:40 pm 
Offline
Godlike
Godlike
User avatar

Joined: March 21st, 2007, 10:44 am
Posts: 3188
Location: UK
Opus: Evolution
Use a page variable named 'b'. Add this function to a ticker:

Code:
function changeSlide()
{
slideshow.GotoSlide(b)
b == 1 ? b = 4 : b--
}


Mack

_________________
When you have explored all avenues of possibilities, what ever remains, how ever improbable, must be the answer.

Interactive Solutions for Business & Education
Learn Anywhere. Learn Anytime.

www.interaktiv.co.uk
+44 (0) 1395 548057


Top
 Profile Visit website  
 
 Post subject: Re: reverse slideshow
PostPosted: January 19th, 2011, 10:31 am 
Offline

Joined: November 14th, 2009, 11:02 am
Posts: 24
Location: Barcelona (Catalonia,Spain)
Opus: v 7.04
OS: W7 Pro 64
System: Corei7/ Nvidia Quadro4000/ 12Gb
Mack

I send you a small example of what I'm trying to do
The forward and back buttons in one step are quite correct
because they make progress and turn at a time

The problem is in the continuous play (red button)
I can not find how to turn and move at once (and that can be published to flex)

Nasua :shock:


You do not have the required permissions to view the files attached to this post.


For this message nasua has been thanked by : mackavi


Top
 Profile  
 
 Post subject: Re: reverse slideshow
PostPosted: January 19th, 2011, 11:30 am 
Offline
Godlike
Godlike
User avatar

Joined: March 21st, 2007, 10:44 am
Posts: 3188
Location: UK
Opus: Evolution
Basic principle. Mack


You do not have the required permissions to view the files attached to this post.

_________________
When you have explored all avenues of possibilities, what ever remains, how ever improbable, must be the answer.

Interactive Solutions for Business & Education
Learn Anywhere. Learn Anytime.

www.interaktiv.co.uk
+44 (0) 1395 548057


Top
 Profile Visit website  
 
 Post subject: Re: reverse slideshow
PostPosted: January 19th, 2011, 12:04 pm 
Offline

Joined: November 14th, 2009, 11:02 am
Posts: 24
Location: Barcelona (Catalonia,Spain)
Opus: v 7.04
OS: W7 Pro 64
System: Corei7/ Nvidia Quadro4000/ 12Gb
Thank you very much Mack

It was close but I had a "little"

With this I can now continue the project! :D

Thank


Nasua


For this message nasua has been thanked by : mackavi


Top
 Profile  
 
 Post subject: Re: reverse slideshow
PostPosted: January 19th, 2011, 2:05 pm 
Offline

Joined: November 14th, 2009, 11:02 am
Posts: 24
Location: Barcelona (Catalonia,Spain)
Opus: v 7.04
OS: W7 Pro 64
System: Corei7/ Nvidia Quadro4000/ 12Gb
Hi
I did not know, and continued without knowing :?:
is how it implements the Ticker
I find nothing in the help.
Anyway it works very well and I can control the speed

Nasua


For this message nasua has been thanked by : mackavi


Top
 Profile  
 
 Post subject: Re: reverse slideshow
PostPosted: January 19th, 2011, 4:02 pm 
Offline

Joined: November 3rd, 2004, 2:11 pm
Posts: 323
It's listed under:
Ticker Trigger
Introducing the Advanced Triggers

_________________
Opus Pro XE 9.1 Win7 64-bit Core i3 8MB RAM


For this message bwpatric has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject: Re: reverse slideshow
PostPosted: January 19th, 2011, 4:45 pm 
Offline
Godlike
Godlike
User avatar

Joined: March 21st, 2007, 10:44 am
Posts: 3188
Location: UK
Opus: Evolution
Ah - it was question! As Scarlett said, it was lost in translation.

Glad it works anyway :-)

Mack

_________________
When you have explored all avenues of possibilities, what ever remains, how ever improbable, must be the answer.

Interactive Solutions for Business & Education
Learn Anywhere. Learn Anytime.

www.interaktiv.co.uk
+44 (0) 1395 548057


Top
 Profile Visit website  
 
 Post subject: Re: reverse slideshow
PostPosted: January 19th, 2011, 8:11 pm 
Offline

Joined: November 14th, 2009, 11:02 am
Posts: 24
Location: Barcelona (Catalonia,Spain)
Opus: v 7.04
OS: W7 Pro 64
System: Corei7/ Nvidia Quadro4000/ 12Gb
mackavi, bwpatric:

Thank you very much! I've found it in "Ticker Trigger", the truth is that many commands ....
I still have much to learn .. the tool is very powerful and sometimes commands that are in general help, not meeting in the help of the script, or just be there

... and is in english ... :?


nasua


For this message nasua has been thanked by : mackavi


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 11 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 22 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

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group