Digital Workshop

Welcome to the Digital Workshop Message Boards
It is currently January 9th, 2025, 9:17 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 11 posts ] 
Author Message
 Post subject: automatically return?
PostPosted: September 6th, 2008, 6:32 pm 
Offline

Joined: September 6th, 2008, 6:24 pm
Posts: 15
Location: Brazil
Hello,

The action has the Neobook 5 Idle Event:

"For a kiosk publication, you could use the Idle Event to automatically return to a main page after a specified period of inactivity. This would prevent new visitors from becoming confused by a presentation left open in the middle by a previous reader"

The opus 6 has the same action? remembering is not the RESET.

thanks


For this message Interactive has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject: reset...
PostPosted: September 6th, 2008, 11:37 pm 
Offline

Joined: December 29th, 2004, 12:00 pm
Posts: 230
Location: Auckland NZ
Opus: v 7.04
OS: xp & win7
under publication/properties/options you can tick the reset box then set an idle period and set which page to go to.
this sounds like what you want?

_________________
Opus Pro 7.04 - win10


For this message mac has been thanked by : mackavi


Top
 Profile  
 
 Post subject: Re: reset...
PostPosted: September 7th, 2008, 8:46 pm 
Offline

Joined: September 6th, 2008, 6:24 pm
Posts: 15
Location: Brazil
mac wrote:
under publication/properties/options you can tick the reset box then set an idle period and set which page to go to.
this sounds like what you want?


Hello Mac,

No, because the reset force the return on time even if the person is using the program. If it does not exist'll have to leave the opus and return to the Neobook.


Excuse the English, I am using google translator.


For this message Interactive has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject:
PostPosted: September 8th, 2008, 8:20 am 
Offline
Godlike
Godlike

Joined: November 12th, 2005, 1:56 am
Posts: 1474
Location: SFBay Area
Opus: OpusPro v9.0x, & Evol.
OS: Vista32
System: Core 2 duo 2Ghz, RAM 3GB, Nvidia Go 7700 - laptop
Inte,

You might try a Search here in the forum. I recall there were some posts in the past where people used either a ticker or a variable changed approach to monitor a condition of no keyboard input and no mouse input.

(be logged-in to forum... you will see Attached Files. Usually sample .imp files to get you started.)

Keep checking back to this Thread since others here may be able to confirm some simple way of doing this.

_________________
_good things come to those who wait(0)_


For this message Lar_123 has been thanked by : mackavi


Top
 Profile  
 
 Post subject: Reset
PostPosted: September 8th, 2008, 4:27 pm 
Offline

Joined: October 25th, 2004, 2:20 pm
Posts: 686
Location: Naperville, Illinois (USA)
Opus: 7.05
OS: Win XP SP3
System: P4 3.2GHz 1GB RAM 2-TB HDs + 4 more
The Reset function works like this:

Quote:
Use the Reset option if you want to go to a certain page if the publication has been inactive for a period of time. Use the spin buttons next to the After box to enter the time to elapse before the page is reset. By default, the After box is set to 60 minutes, although you can set the minutes and seconds to any time.


This means if there are no mouse or keyboard activities for a selected number of minutes, OPUS will Reset to a Page of your chosing. If someone is interacting with your Pub, then there is NO Reset.

_________________
Fred Harms, Extraordinary Demos
Naperville, Illinois (USA) 630/904-3636
demofred@aol.com


For this message demofred has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject: reset
PostPosted: September 8th, 2008, 11:55 pm 
Offline

Joined: December 29th, 2004, 12:00 pm
Posts: 230
Location: Auckland NZ
Opus: v 7.04
OS: xp & win7
The one catch I've found is that if you are interacting with, say, a SWF movie in a web browser window the reset will trigger anyway, since Opus cannot detect activity in that external window.
Apparently that window is always on top, so you cannot set an invisible frame over the top to catch the mouse movement...

_________________
Opus Pro 7.04 - win10


For this message mac has been thanked by : mackavi


Top
 Profile  
 
 Post subject:
PostPosted: September 11th, 2008, 12:55 am 
Offline

Joined: September 6th, 2008, 6:24 pm
Posts: 15
Location: Brazil
I am developing a multimedia publication to be shown at a kiosk at hotel halls and airport waiting rooms. I use a touch screen monitor as output and navigation, therefore I donĀ“t use a keyboard or mouse; I need some way to know if the application is idle for a period of time, at which end I will change to another page; I tried the Reset option, but it triggers while the user was reading a text, and this not my intention.
I would really appreciate if someone could help me.


For this message Interactive has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject:
PostPosted: September 11th, 2008, 9:24 pm 
Offline
Godlike
Godlike

Joined: November 12th, 2005, 1:56 am
Posts: 1474
Location: SFBay Area
Opus: OpusPro v9.0x, & Evol.
OS: Vista32
System: Core 2 duo 2Ghz, RAM 3GB, Nvidia Go 7700 - laptop
Int,

I suppose you could construct this manually:

Create a variable, e.g. 'countdown1'. Maybe it's default would be 45 (seconds). Create a count-down timer via some action or script. Always have it counting down.

Anytime a user DOES interact, do whatever event you want... but also restart the count-down timer. When it runs down, pop-up a frame or object to ask "Do you want more time?"
-- Yes. (reset the count-down)
-- No or no answer. (start a short count-down before Resetting.)
-- optional Button: Start New Session. (are you sure? confirm)

Note: you can get clever on how to 'detect' when user DOES interact. (simple is transparent frame... overlay... knows when user clicks anywhere ???). Otherwise can have a Script Function.... always easy to include with other actions. Ditto Custom Action.

_________________
_good things come to those who wait(0)_


For this message Lar_123 has been thanked by : mackavi


Top
 Profile  
 
 Post subject: Countdown timer
PostPosted: September 12th, 2008, 6:24 pm 
Offline

Joined: September 12th, 2008, 6:14 pm
Posts: 1
Lar_123 wrote:
Int,

I suppose you could construct this manually:

Create a variable, e.g. 'countdown1'. Maybe it's default would be 45 (seconds). Create a count-down timer via some action or script. Always have it counting down.

Anytime a user DOES interact, do whatever event you want... but also restart the count-down timer. When it runs down, pop-up a frame or object to ask "Do you want more time?"
-- Yes. (reset the count-down)
-- No or no answer. (start a short count-down before Resetting.)
-- optional Button: Start New Session. (are you sure? confirm)

Note: you can get clever on how to 'detect' when user DOES interact. (simple is transparent frame... overlay... knows when user clicks anywhere ???). Otherwise can have a Script Function.... always easy to include with other actions. Ditto Custom Action.




Could you please show how to implementing a counting down timer?


For this message josalopes has been thanked by : mackavi


Top
 Profile  
 
 Post subject: Touch screen = mouse
PostPosted: September 12th, 2008, 9:58 pm 
Offline

Joined: October 25th, 2004, 2:20 pm
Posts: 686
Location: Naperville, Illinois (USA)
Opus: 7.05
OS: Win XP SP3
System: P4 3.2GHz 1GB RAM 2-TB HDs + 4 more
I've built a touch screen Pub. The selections on the screen acted like mouse movement/activity. You probably have the Reset time set too short. You need to allow the viewer at least several minutes of no activity before assuming they've gone away.

Please go into your PROFILE (top of this page) and under your Signature place your computer info along with which version of OPUS you are using.

_________________
Fred Harms, Extraordinary Demos
Naperville, Illinois (USA) 630/904-3636
demofred@aol.com


For this message demofred has been thanked by : mackavi


Top
 Profile Visit website  
 
 Post subject:
PostPosted: September 13th, 2008, 9:37 am 
Offline
Godlike
Godlike

Joined: November 12th, 2005, 1:56 am
Posts: 1474
Location: SFBay Area
Opus: OpusPro v9.0x, & Evol.
OS: Vista32
System: Core 2 duo 2Ghz, RAM 3GB, Nvidia Go 7700 - laptop
Josa wrote:
Quote:
Could you please show how to implementing a counting down timer?


I've mostly played with timers and clocks by using OpusScript. However several others here on the forum have addressed this ( ticker, timer, clock, or countdown... also 'game' ) using standard Opus triggers and actions. You could simply do a Search here using some of those keywords. [ if you are logged-in, you can see when there are attached file, sample pubs, etc ]

If I recall Leo Taylor, Mackavi, and others made some really simple and also clever set-ups.... achievable without scripting.

If you do want scripting, suggest you either post your question in a new thread in Advanced section, or again look at the Search results.

Welcome to Opus and the forum.

Cheers.

_________________
_good things come to those who wait(0)_


For this message Lar_123 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: Google [Bot] and 54 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