Back to the beginning after some time

I am holding a director in the software for a multimedia
kiosk but encounter me with the problem that I am not able to solve
what I want is that when a user leaves the navigation through the
software by the end of a time without being used (for ai 1 minute)
go back to the beginning, that is the frame 1 .. So while others
used to go to the kiosk application is the beginning ...

Hello,
You can set a timeout to handle what happens when no one
interacts with the computer for a certain period of time. In your
startMovie script, add
on startMovie
the timeOutLength = 60*60 --Add a length here. It is in 60ths
of a second, so 1 minute is 60*60
end
Then, in a movie script, add
on timeOut
--Put your script here
go to frame 1
end
That should be it. I realize you don't speak English well,
but this should put you in the right direction if you don't
understand it all.

Similar Messages

  • Urgent : MDB stops listening to the queues after some time  !!!

    Hi,
    I am using OJMS with OC4J 10.1.2 and db 9.2.0.5. I have a web application which send messages into the queue very frequently.
    But the problem is the MDBs stop listening to the queues after some time (1-2 days) and no more messages will be dequeued from that point.
    All these messages will move to the exception queue after their expiry.
    But the dequeing agains resumes after restarting the OC4J !.
    I guess, at some point mdbs are either becoming busy (locked ) or some exception occured while dequeing, hence they stop listening to the queues.
    Please throw some light on this issue as it is very crucial in my project.
    Regards
    Prashanth

    I've noticed this lately as well, with my iPhone 4. I couldn't confidently pin it directly on any particular iOS update, but my iPhone used to automatically connect up via Bluetooth with my Prius's handsfree feature, and now it doesn't. I work with a CE-based device at my job, with Bluetooth capability, and I used to test out that feature by having it discover my iPhone. This no longer works either.
    What I have found (not really a solution, but it does work and may be a clue for Apple) is that if I simply go to the Settings app then the General -> Bluetooth screen and let it sit there, it will pair right up with my car within a few seconds. Bluetooth is always on, and always says "Now Discoverable" at the bottom of the settings screen.

  • Edited Recording jumps back to the beginning after crop

    I have several recorded Connect meetings that have been lightly edited. The first few seconds have been removed and, on some, a few seconds in the middle have been cropped out when the speaker flubbed a word or two. I am finding that, on the ones with mid-recording crops, the playback jumps back to the begining for a few seconds and them catches up and contimues normally. Is this just a limitation of the Connect editing mechanism (as limited as it is)?
    I have tried to leave the beginning alone and just crop out the middle and it still hiccups when it hits that section. Any thoughts on this?
    Thanks!
    My Connect version info:
    7.0,723
    Connect 7.0 r. 723/c. 427912/b. Fri Jun 27 15:37:57 2008
      Presenter r. Presenter7GM
      FMS r. Mustang_Connect 3_0_0_1208
      Licensed

    Hello,
    You can set a timeout to handle what happens when no one
    interacts with the computer for a certain period of time. In your
    startMovie script, add
    on startMovie
    the timeOutLength = 60*60 --Add a length here. It is in 60ths
    of a second, so 1 minute is 60*60
    end
    Then, in a movie script, add
    on timeOut
    --Put your script here
    go to frame 1
    end
    That should be it. I realize you don't speak English well,
    but this should put you in the right direction if you don't
    understand it all.

  • Downloaded talking book - it goes back to the beginning after a few minutes

    Hello. I downloaded a "talking" book today and after it starts, it plays for a few minutes then bounces back to the beginning of the book. When I look at the downloaded numbers, it appears that the whole book was downloaded!
    I've never had this happen and would really appreciate any help. Is there a way to download it again with out getting charged for the same book twice? Thanks for any help.

    I would recommend using this article to report the issue to the itunes store, they will be the best place to get that resolved as it may be an issue with the content
    can also attempt to transfer it to a computer and play it on there, if the issue persists it would verify it being content, if it doesn't it could be an issue with settings on the iphone but that I cannot verify
    http://support.apple.com/kb/HT1933

  • White patches appearing on the screen after some time

    I have bought an iMac recently. And for some days white patches like something occurring on my screen after sometime when I opens it. And the patches are there after closing it till sometime. So what can i do now? PLEASE help me .

    That sounds like condensation forming between the display and front glass panel.
    If you live in an area with high humidity, then might help to run a fan or dehumidifier to help reduce the moisture in the air.
    It also might help to leave the iMac on and running for a day or so to compleatly dry out the trapped moisture.
    If those steps do not help, then you may want to take the iMac to your local Apple Store or AASP and have them clean between the display and front glass panel. 
    See > Apple - Support - iMac - Service FAQ

  • Io exception: Connection reset - after some time interval

    Hi,
    We are facing a problem in connection while implementing connection pooling using OracleDataSource .
    Application is running with out any issue if it is called continuously.
    If we call the application after some time interval, connection is being reset. We are able to get the connection instance but connection reset exception is thrown while calling callableStatement.execute().
    If application called after application restart it is working fine.This issue is happening only for the first few calls made after some time interval.(after 1 hr)
    After that call is proceeding without any issue.
    Environment Details
    Application is accessing 4 oracle databases and the versions are viz., 9.2.0.8,10.2.0.3,10.2.0.4 and 9.2.0.1.
    Driver : ojdbc14.jar
    App Server : tomcat
    jdk version: 1.5
    OracleDataSource is being used for connection pooling.
    propCache.setProperty("ConnectionWaitTimeout",10); // caching parms
    ods.setConnectionCachingEnabled(true);
    ods.setLoginTimeout(intLoginTimeout);
    propCache.setProperty("MinLimit","5");
    propCache.setProperty("MaxLimit", "20");
    propCache.setProperty("InitialLimit","5");
    propCache.setProperty("ValidateConnection", "true");
    propCache.setProperty("AbandonedConnectionTimeout", "10");
    The exception details are as follows
    java.sql.SQLException: Io exception: Connection reset
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:987)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1170)
    at oracle.jdbc.driver.OracleStatement.doScrollExecuteCommon(OracleStatement.java:4043)
    at oracle.jdbc.driver.OraclePreparedStatement.doScrollPstmtExecuteUpdate(OraclePreparedStatement.java:10826)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3337)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3445)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4394)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
    at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:834)
    at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:640)
    at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
    at java.lang.Thread.run(Unknown Source)
    Any suggestion to resolve this issue is greatly appreciated.
    Thanks.

    Hi,
    try to utilize OracleDataSource#setConnectionCacheProperties() with property InactivityTimeout equals to 1800 (30 minutes in seconds).

  • I just purchased Lightroom 5 back on 15th of February, and v6 is now available. Do I understand correctly that I have to buy the new version for $149.00? Free updates are not available/included with the purchase for some time after the purchase?

    I just purchased Lightroom 5 back on 15th of February, and v6 is now available. Do I understand correctly that I have to buy the new version for $149.00? Free updates are not available/included with the purchase for some time after the purchase?

    Do I understand correctly that I have to buy the new version for $149.00?
    You can upgrade for $79.
    Products

  • OS X Lion looses the wallpaper image after some time?

    I encrypted my disk with FileVault 2.
    I do not know wheather it is related to it, but OS X do not display the wallpaper image after some time anymore. Also trying to change the wallpaper do not fix the problem. If I restart, the wallpaper is displayed again.

    Having the same issue now for the 2nd time in a week.
    Also no clean but updated from SL (MBP 2008).
    Contrary to other ppl in the thread i'm NOT using FileVault.
    First time it happened after i locked the screen and logged back into a running session.
    This time it happened after waking up from sleep.
    Also it's only happening on the main screen (24 inch external display).
    The built-in screen of the MBP is still showing a background and can be changed with the dialog.
    Still unable  still wasn't able to get it back from the light grey background on main screen. Toggling backgrounds doesn't do anything, just sticks to the grey color.
    Albino Lion FTL

  • How the files are decreasing from RBS storage after some time i delete docs from document library, where shld I check the settings for this?

    HI
    I created a web application and configured  rbs storage ,
    I uploaded documents (for ex: 18 number)
     after uploaded  documents ,  and observed the RBS storage folder, number of files are increasing (39 number) , its working fine
    and also  I run the querys to check the rows increasing or not , (when I upload new doc rows are increased its fine also)
    select count(*) from alldocs
    Select count(*) from AllDocstreams
    but when I delete some docs from document library ,
    1)the doc itself deleted from document library
    2)when I check the rbs storage  there is no number of files are decreased(its still 39 files ), its same as  before doc deleted from doc library
    after some time I found the number of files are decreasing from RBS storage folder in sql server,
    here I want to know the how the files are decreasing from RBS storage  after some time, where  shld I check the settings for this? and how I control on it
    here how I know the settings for cleaning up orphan BLBOS how  these deleted BLOB
    adil

    1. WHen you delete the file from Sharepoint, it is still present in Recycle bin. This is a default setting in sharepoint for 30 days. Once files are deleted fro Recycle bin, it can also be delete from RBS
    2. There is a RBS cleanup job which deletes files from RBS. for more info check 
    http://mehuljamod.blogspot.in/2012/09/remote-blob-storage-maintainer-rbs.html

  • How can I get Firefox to take me back to the last Bookmark folder I was in like Internet Explorer instead of going back to the beginning each time??

    When i find a website using bookmarks in Firefox and then I want to look at another site in that same folder, especially in a subfolder, Firefox takes me back to the beginning of the bookmarks menu. With Internet Explorer, it takes me back to the same folder or subfolder I was in. For example, if I was wanting to search newspapers, especially if they are in subfolders, I want to stay in that same place. Firefox loses that place, unlike Internet Explorer, and takes me back to the beginning each time. Sometimes I have several layers of subfolders and it takes time to find that place again each time.

    A possibility is to open the Bookmarks Sidebar.
    Click the list icon next to the star on the Navigation Toolbar and click "View Bookmarks Sidebar" (Ctrl+B).

  • My Iphone 3G stopped booting and failed to start. After some time, I have restored the Iphone OS using Itunes (ver 4.2). Itunes restored it successfully, but the Iphone didn't responded and remained the same.except apple logo, nothing is displayed.

    Hi,
    I have an Iphone 3G.
    Its 9 months old mobile and it has OS 4.2 in it.
    When I am accessing wi-fi, suddenly the display went-off and then I was not able to start my phone again.
    Later I tried to restore and update the Iphone using Itunes.
    I have updated the Itunes.
    Using hard-reset, I tried to restore the OS and did the same successfully.
    After installing the same over my Iphone 3G, I didnt recieved any intimation for completion of the process, besides, I was not able to start the mobile even I have reset the OS.
    when I push the wake-up button, I am able to see the Apple Logo and after some time, it goes off and remains idle with no more display.
    I tried to reset OS twice, it remained the same.
    Can any one help me here with this issue.
    I am not even able to figure-out the cause of the problem.
    Thanks in advance.
    Bharath.

    Hi,
    I have an Iphone 3G.
    Its 9 months old mobile and it has OS 4.2 in it.
    When I am accessing wi-fi, suddenly the display went-off and then I was not able to start my phone again.
    Later I tried to restore and update the Iphone using Itunes.
    I have updated the Itunes.
    Using hard-reset, I tried to restore the OS and did the same successfully.
    After installing the same over my Iphone 3G, I didnt recieved any intimation for completion of the process, besides, I was not able to start the mobile even I have reset the OS.
    when I push the wake-up button, I am able to see the Apple Logo and after some time, it goes off and remains idle with no more display.
    I tried to reset OS twice, it remained the same.
    Can any one help me here with this issue.
    I am not even able to figure-out the cause of the problem.
    Thanks in advance.
    Bharath.

  • When i download any file it start in a second but when i pause the downloading file & after some time when i open it amessage flash 'download error' source file could not be read please try again later or contact the server administrator.

    when i download any file it works frequently and downloading start in a second but when i pause the downloading file & after some time when i open it,The downloading not start proper and after some time a message flash 'download error' source file could not be read please try again later or contact the server administrator.

    I downloaded the Microsoft Autoruns package and ran it.  There are no programs in the LSA Providers tab, and Apple's Bonjour is the only program in the Winsock Providers tab.  I also did the "netsh winsock reset" and rebooted.  It didn't fix the problem.  Any more ideas?

  • The menu screen does not appear on the apple tv but after some time my photos appearing

    When I turn on my apple TV nothing come up but after some time my photo's from my iCloud account start to appear. Why would this be?

    Welcome to the Apple Community mecarroll.
    The following article(s) may help you.
    Troubleshooting AirPlay
    Troubleshooting Wi-Fi networks and connections
    Recommended Wi-Fi settings
    Wifi Diagnostic Software (for Mac users)
    You may also find some help on this page, where I’ve collected some of the more unusual solutions to network issues.

  • I just brought a apple protection plan as my phone warranty is going to end in a day, when i am trying to enter the protection plan code and my phone serial no its showing an error message try after some time is there any solution to that?

    i just brought a apple protection plan as my phone warranty is going to end in a day, after entering the protection plan code and my phone serial no its showing an error message "technical error try after some time", is there any solution for that?
    As i need the warranty to extend for another year please help me regarding this issue.
    When i bought a new iphone5 in Inda after using it for three days lock button was not working properly and it was warranty claimed and exchanged from apple service center in India, for the same phone I want to extend the warranty but its showing a error message is there any solution?

    Here is some information on the applecare +:
    http://www.apple.com/support/products/iphone.html
    It appears that you have to buy the applecare within 30 days of buying your phone - you said that your phone warranty is almost over, so when did you buy it??? That could be the explanation for the error.

  • I update my iPhone in iTunes, and after some time, opened a window saying "rosolvendor conflict" and asking me to choose, giving me two options, showing the name of a friend who also has an iPhone. Can anyone help me?

    I update my iPhone in iTunes, and after some time, opened a window saying "rosolvendor conflict" and asking me to choose, giving me two options, showing the name of a friend who also has an iPhone.
    Can anyone help me?

    Dear Tim,
    I saw your message. Below are the problems:
    Whenever I connect my iphone 3GS to my PC through a USB. My itunes software comes up automatically.
    1. After that a message appears from the itunes that states that 'itunes could not connect to the itunes store, an unknown error cccured (306).
    2. After the above, an alert message comes up which states that A new iphone software version 5.1 is availlable for my iphone. It then states would you like to download it and update your iphone now? With the options buttons as Cancel or Download and Update or Download Only. Whenever I clicked on Download and Update or Download Only, the next message that comes up is that The iphone Software Update Server Could not be Contacted and suggest make sure your network setting are correct and active or try again later.
    The above is the challenges I am facing now.

Maybe you are looking for

  • Unable to Embed YouTube Video

    Before I go any further, I did everything there was to do that I read in the support forum.  I cannot get the embed working in my Dreamweaver.  All my older videos work perfectly.  I even copied the iframe from the old video and put it in again and t

  • Iphoto '11 cannot show slideshow for files on NFS (Faces fails, too)

    Hello, please help me see my pictures in slideshow!  I get black pictures, but I have a unique error (google has zero hits on '"NULL CGImageSource" iphoto').  See details below.  Thanks! I'm using iPhoto '11 (9.1.5 (615)). My preferences have UNCHECK

  • Will you be able to use Siri on iOS 6 with the iPad 2?

    Will you be able to use Siri on iOS 6 with the iPad 2?

  • Multiple Projects & Scratch Disks?

    When having multiple projects on the go at the same time, how does one seperate scratch disks so all projects save the relevant info to the correct folders without having to change the scratch disk every time I go to a new project? Hoping this questi

  • Qu'est ce qu'une erreur -42110

    quand je branche mon i-pad2 sur mon ordi, je reçois automatiquement sur i-tunes un message d'erreur -42110 qu'est-ce que ça veut dire? comment y remedier car j'ai beaucoup de mal à synchroniser mon i-pad avec l'ordi et pour enregistrer des fichiers s