Project locks up when user double clicks click box

I have a series of practice questions in my Captivate 5 projects that use click boxes to select the question's answers.  The project pauses at the click boxes (which all appear at the same time), and a feedback caption appears.  A second later, a continue button appears.  The project again pauses until the user clicks the continue button.  Then the project goes to the next slide.  My problem is that when the user double clicks a click box,  or clicks it right when it appears (the cursor changes from arrow to a hand), the continue button does not appear.
I am just considering deleting the continue button but my intent there was to allow as much time as the user needed to read the feedback captions after clicking the click box.  Any help on this is appreciated.
Options selected on click box: hand cursor, and pause project until user clicks.
Thanks.

Actually, I was more wondering what kind of code I
need to add to my program to make it possible at all.
My file input and output is all done from a Utilites
class which I made but quite obviously any OS will
not know to call Utiities.load(...arguments...).
But, my goal is to have my program work as seamlessly
as possible with a normal person's desktop.I'm sorry, you're right, I completely misread your post. I would definitely take the tactic of writing a .reg file and executing it. That seems to be the accepted way of creating registry entries on Java if you have to do such a thing.
Here is a link to the type of .reg file you're going to need to associate a file with a certain program, and you'll need to modify it slightly to do a 'java -jar myJar' type of thing. Then, just point Runtime.getRuntime().exec() at it, and you should be good to go.
The only thing I'd be worried about is how to find the JAVA_HOME. If you launched your installer via WebStart (or had the user double-click the jar for the first time), though, you could just use
System.getProperty("java.home");

Similar Messages

  • Basic List:- Need to get data when user double click on report output

    Hi,
    My requirement is to display asset details as a report and when user double clicks on the asset details, transaction AS03 need to be opened.
    The output layout is as follows:
    Company code    800                             Asset class 111
    Asset 1 ................
    Asset 2.................
    Asset 3.................
    Company code    900                             Asset class 111
    Asset 1 ................
    Asset 2.................
    Asset 3.................
    when user double click on Asset 1 of Company code 800, then transaction AS03 need to be triggerd. But when I use ATLine selection. I only get the Asset1....details in the sy-lisel. But I need Company code for triggering the AS03 transaction.
    Please let me know any way of getting company code along with the Asset 1 ......
    Regards
    Suresh Kumar

    Hi,
    Herewith i am sending the sample coding for the report.
    REPORT YMS_INTERTESTALV .
    TYPE-POOLS: slis.
    DATA: BEGIN OF itab1 OCCURS 0,
    vbeln TYPE vbeln,
    bstnk TYPE vbak-bstnk,
    erdat TYPE vbak-erdat,
    kunnr TYPE vbak-kunnr,
    END OF itab1.
    DATA: BEGIN OF itab2 OCCURS 0,
    vbeln TYPE vbeln,
    matnr TYPE vbap-matnr,
    netpr TYPE vbap-netpr,
    kwmeng TYPE vbap-kwmeng,
    END OF itab2.
    DATA: t_fieldcatalog1 TYPE slis_t_fieldcat_alv.
    DATA: t_fieldcatalog2 TYPE slis_t_fieldcat_alv.
    DATA: v_repid TYPE syrepid.
    v_repid = sy-repid.
    Get the fieldcatalog1
    PERFORM get_fieldcat1.
    Get the fieldcatalog2
    PERFORM get_fieldcat2.
    SELECT vbeln bstnk erdat kunnr UP TO 10 ROWS
    INTO TABLE itab1
    FROM vbak.
    IF NOT itab1[] IS INITIAL.
      SELECT vbeln matnr netpr kwmeng
      INTO TABLE itab2
      FROM vbap
      FOR ALL ENTRIES IN itab1
      WHERE vbeln = itab1-vbeln.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
         EXPORTING
              i_callback_program      = v_repid
              i_callback_user_command = 'DISPLAY_DETAIL'
              it_fieldcat             = t_fieldcatalog1
         TABLES
              t_outtab                = itab1.
    FORM display_detail *
    --> UCOMM *
    --> SELFIELD *
    FORM display_detail USING ucomm LIKE sy-ucomm
    selfield TYPE slis_selfield.
      DATA: itab2_temp LIKE itab2 OCCURS 0 WITH HEADER LINE.
      IF ucomm = '&IC1'.
        READ TABLE itab1 INDEX selfield-tabindex.
        IF sy-subrc = 0.
          LOOP AT itab2 WHERE vbeln = itab1-vbeln.
            MOVE itab2 TO itab2_temp.
            APPEND itab2_temp.
          ENDLOOP.
          CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
               EXPORTING
                    i_callback_program = v_repid
                    it_fieldcat        = t_fieldcatalog2
               TABLES
                    t_outtab           = itab2_temp.
        ENDIF.
      ENDIF.
    ENDFORM.
    FORM GET_FIELDCAT1 *
    FORM get_fieldcat1.
      DATA: s_fieldcatalog TYPE slis_fieldcat_alv.
      s_fieldcatalog-col_pos = '1'.
      s_fieldcatalog-fieldname = 'VBELN'.
      s_fieldcatalog-tabname = 'ITAB1'.
      s_fieldcatalog-rollname = 'VBELN'.
      s_fieldcatalog-hotspot = 'X'.
      APPEND s_fieldcatalog TO t_fieldcatalog1.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '2'.
      s_fieldcatalog-fieldname = 'BSTNK'.
      s_fieldcatalog-tabname = 'ITAB1'.
      s_fieldcatalog-rollname = 'BSTNK'.
      APPEND s_fieldcatalog TO t_fieldcatalog1.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '3'.
      s_fieldcatalog-fieldname = 'ERDAT'.
      s_fieldcatalog-tabname = 'ITAB1'.
      s_fieldcatalog-rollname = 'ERDAT'.
      APPEND s_fieldcatalog TO t_fieldcatalog1.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '4'.
      s_fieldcatalog-fieldname = 'KUNNR'.
      s_fieldcatalog-tabname = 'ITAB1'.
      s_fieldcatalog-rollname = 'KUNNR'.
      APPEND s_fieldcatalog TO t_fieldcatalog1.
      CLEAR s_fieldcatalog.
    ENDFORM.
    FORM GET_FIELDCAT2 *
    FORM get_fieldcat2.
      DATA: s_fieldcatalog TYPE slis_fieldcat_alv.
      s_fieldcatalog-col_pos = '1'.
      s_fieldcatalog-fieldname = 'VBELN'.
      s_fieldcatalog-tabname = 'ITAB2'.
      s_fieldcatalog-rollname = 'VBELN'.
      APPEND s_fieldcatalog TO t_fieldcatalog2.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '2'.
      s_fieldcatalog-fieldname = 'MATNR'.
      s_fieldcatalog-tabname = 'ITAB2'.
      s_fieldcatalog-rollname = 'MATNR'.
      APPEND s_fieldcatalog TO t_fieldcatalog2.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '3'.
      s_fieldcatalog-fieldname = 'NETPR'.
      s_fieldcatalog-tabname = 'ITAB2'.
      s_fieldcatalog-rollname = 'NETPR'.
      APPEND s_fieldcatalog TO t_fieldcatalog2.
      CLEAR s_fieldcatalog.
      s_fieldcatalog-col_pos = '4'.
      s_fieldcatalog-fieldname = 'KWMENG'.
      s_fieldcatalog-tabname = 'ITAB2'.
      s_fieldcatalog-rollname = 'KWMENG'.
      APPEND s_fieldcatalog TO t_fieldcatalog2.
      CLEAR s_fieldcatalog.
    ENDFORM.
    Thanks,
    Shankar

  • Error mesage: Project locked by other user?

    Hello,
    I just re-opened my external hard drive after a month vacation from it and tried to open my IDVD file only to get an error message:
    Project locked by other user:
    The project ZOOOM demo reel 10-07 is locked by the user Video (used ID 501): 2007-12-19 10:42:27-600
    The project can't be opened at this time.
    I went into the file's "get info" and unlocked everything to no avail. I'm puzzled. I have never seen this before. Any help would be great.
    Thanks,
    Jordan

    Control click on the icon of your external drive and select Get Info. Check the box that says, "Ignore Ownership on this Volume." See if that solves it.
    Make sure that your hard drive is formatted for Apple. Should be Mac OS extended or Mac OS extended (journaled). But if you reformat, be sure to first move your data to another drive, because reformatting will erase all data on the drive.
    If that doesn't work, use the Disk Utility app on your Mac to do a permissions repair on both your startup drive and your external drive.

  • Project Locked by Other User! But it's me!

    Today I wanted to open an old (2006) iDVD projectfile (.dvdproj) with iDVD 7.1 and I got a messagebox of the program which said:
    "Project Locked by Other User
    The project America del Sur is locked by the user casper (user ID ###): 2006-04-30 20:253:34 +2000.
    The project can't be opened at this time
    <OK>"
    Does anybody knows what I can do about it to open my project. I want to burn a new DVD of this project. Please help me

    Take a look at: If your archived project can’t be used by others at http://docs.info.apple.com/article.html?path=iDVD/7.0/en/6719.html

  • IDVD project locked by another user

    Hi all!
    I have recently changed the hard drive of my iBook.
    All projects were on an external firewire drive.
    After installing the system, i tried to reopen one of my project, and get the message (translated from french) :
    "Project locked by another user
    The project xyz was locked by the user Phil (501) + time and date of the probable last save". It must be refering to the user of my old system.
    How do i get to reopen this project?
    OK sorry I have found the answer : needed to delete a file called project.lock and i was up and running

    Needed to delete a file within the project called "Project.lock"

  • When user double-clicks on a file, then I want my program to open it...

    Ok, so I have been having a lot of trouble finding the answer to what I at first thought was a simple question.
    I do not know, at all, how to make my program able to open files in the normal sense. Normal sense meaning user double-clicks my_file.xxx, or for that matter right-clicks my_file.xxx and selects open with, and then my_app.jar starts up and opens the file.
    I have already created the app, and it runs nicely. This app has a menu bar with the usual File >> Open which works just fine reading my_file.xxx. My_app.jar can also saves my_file.xxx. So I am not having trouble with I/O.
    So if someone can give me even the slightest hint in the right direction I'd be very thankful.
    p.s. I am working on a mac but my_app.jar will be running mostly on windows so cross-platform is very important.

    Actually, I was more wondering what kind of code I
    need to add to my program to make it possible at all.
    My file input and output is all done from a Utilites
    class which I made but quite obviously any OS will
    not know to call Utiities.load(...arguments...).
    But, my goal is to have my program work as seamlessly
    as possible with a normal person's desktop.I'm sorry, you're right, I completely misread your post. I would definitely take the tactic of writing a .reg file and executing it. That seems to be the accepted way of creating registry entries on Java if you have to do such a thing.
    Here is a link to the type of .reg file you're going to need to associate a file with a certain program, and you'll need to modify it slightly to do a 'java -jar myJar' type of thing. Then, just point Runtime.getRuntime().exec() at it, and you should be good to go.
    The only thing I'd be worried about is how to find the JAVA_HOME. If you launched your installer via WebStart (or had the user double-click the jar for the first time), though, you could just use
    System.getProperty("java.home");

  • " Project Locked by Other User" HELP!!!

    Hi Everyone!
    I am having a problem opening my daughters 1st year DVD. Last summer, our iMac died, and we replaced the hard drive. We were able to salvage all the files, and put them onto an external.
    Now, I am trying to open one of those salvaged files from iDVD, and I am getting this message:
    The project Mairead...The first year1 is locked by the user Steph (user ID 501): 2008-11-30 17:23:42 -0500.
    The project can't be opened at this time.
    I've tried switching the username to Steph, and it still doesn't work. When I click on it and open the info, it says everyone is "read and/or write" ---
    Please help!!! I don't know what to do...
    Thanks!

    Take a look at:
    http://discussions.apple.com/thread.jspa?threadID=1495274
    especially the comment by markwd21

  • Project Locked by another user

    Ok, I kind of broke my MacBook Pro and had to buy another one. I took the HDD out of my old MacBook and connected it to my new MacBook through a SATA to USB converter. I am trying to get my iMovie projects off the old drive but it tells me that the project is locked by another user, the username that I had on my old MacBook. I have tried everything to get it open including copying it to the shared folder, taking ownership, and changing permissions and no luck. Any ideas short of swapping the HDDs.

    Needed to delete a file within the project called "Project.lock"

  • How to get index of the item from table when user double click on an item

    Can anyone tell me how to get the corresponding index of a table in which
    elements are listed as array of strings? I am looking for the index of the
    item being double-clicked on?
    Thank you in advance
    Cheers,
    NQ.

    Hi NQ,
    Although the question is not thouroughly clear, I can give a few suggestions. You can use the property node for table to refer to any particular row or column of the table. The correpsonding elements in the property node will be "SelStart", "SelSize" etc. Just as a side thought, the index of a table starts with (0,0).
    I am attaching a test file. Please see if it helps you in figuring out what exactly you want. This example VI is just to help you try different options under property node (if you havent already tried)to get what you want.
    Regards,
    Sastry Vadlamani
    Applications Engineer
    National Instruments
    Attachments:
    test.vi ‏27 KB

  • Get audio to stop when user rolls over / clicks on sidelet

    So ive recorded some software simulation, then i want to add
    in a sidelet, and when the user rolls over the sidelet i want the
    slide and audio to pause until they close or roll off -- can you do
    that. My question is a 2 parter, as in,i would like to know for
    both, a rollover and a click as i may use both tecniques on
    different slides

    Hi Paco,
    Here is an AS3 version for Captivate 4:
    http://www.cpguru.com/demonstrations/as3(cp4)MuteSounds.zip
    I don't have CP4 installed on this machine anymore so I haven't been able to test if it works or not.
    Good luck ;o)
    /Michael
    Visit my Captivate blog with tips & tricks, tutorials and Widgets.

  • Popup Message when user tries to click outside of a webpart - How To

    Hi
    I have a custom web part on a page. I would like to know how I can prompt a warning message to user if he/she clicks outside the webpart, say on a Quick Launch link. 
    There must a be way to do this right. Appreciate feedbacks and ideas. 

    Hi,
    Here you go. Pls check this 
    http://blog.mastykarz.nl/sharepoint-2010-application-pages-modal-dialogs/
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Record locks created when user closes the Browser and not the Web Form

    Hi. We sometimes encounter the issue where a user updates a record, locking the record on the table, but then they unexpectedly closes the browser without saving by clicking the X in the upper-right of the browser window. Then when another user comes along and attempts to edit that record they get the message Unable to Reserve Record. The orphaned record lock eventually does seem to clear itself out, but that can often take 15-20 minutes.
    Is there any way to speed this up? Or to pragmatically keep this from occurring? Either on the database side or with some code in a particular application?
    Please let me know your thoughts. Thanks in advance.

    If a user closes the browser window the forms runtime on the application server holding the locks is in most cases still up and running. The FORMS_TIMEOUT controls on how long a forms runtime on the server is up and running without the client applet not sending a heartbeat (See MOS note 549735.1). By default this is 15 minutes which would explain your locks being held 15 minutes.
    You could decrease the FORMS_TIMEOUT in the default.env, so the forms runtimes get cleaned earlier and thus the locks get released earlier.
    Note that if you have blocking client_hostcalls with webutil this might be a problem, as it prevents the forms applet from sending the heartbeat and after the FORMS_TIMEOUT passed while the forms applet is blocked the forms runtime on the server gets closed.
    cheers

  • Flash Project not playing when users go to site

    Alright heres my problem. I have a large flash website, that
    was originally a template and I added to it. I have been able to
    upload it to my server, but there is at least several minutes wait
    time before the preloader came up. So in an effort to fix this I
    created a Master file with 10 frames total. on the first keyframe I
    have "Loading Site" in plain letters. I have the actionscript on
    keyframe 1 and I have the main movie(masterP.swf) loading into
    level 20, preloader.swf loading into level 50 and trigger.swf
    loading into level 5.
    here is the actionscript on frame 1:
    stop();
    //-----------------------<MCL>------------------------\\
    var myMCL:MovieClipLoader = new MovieClipLoader();
    var myListener:Object = new Object();
    myMCL.addListener(myListener);
    myListener.onLoadProgress = function(target_mc:MovieClip,
    loadedBytes:Number,totalBytes:Number) {
    _level50._visible = true;
    var preloadPercent:Number = Math.round((loadedBytes /
    totalBytes) *100);
    _level50.preloader.gotoAndStop(preloadPercent);
    _level50.preloadInfo1.text = preloadPercent + " % loaded";
    _level50.preloadInfo2.text = Math.round(loadedBytes/1000) +
    " k loaded / " + Math.round(totalBytes/1000) + " k total";
    myListener.onLoadComplete = function(target_mc:MovieClip) {
    _level50._visible = false;
    //-------------------</MCL>---------------------------\\
    //triggers the MCL to load these assets
    myMCL.loadClip("trigger.swf", 5);
    myMCL.loadClip("preloader.swf", 50);
    here is the actionscript on frame 10:
    stop();
    myMCL.loadClip("masterP.swf", 20);
    The biggest issue is when the user goes to that website it
    almost seems as though the movie is sitting on Frame 1"loading
    Site" and doesnt even reach the preloader, then when i hit the back
    button and go foward the preloader is there, just looping in place
    not really loading. oh yeah I have two dynamic fields on the
    preloader, and it is supposed to have loading info in them, but
    they do not even show up. Not sure what I should do. I am uploading
    with Dreamweaver MX, I am using Flash 8, the original file was
    flashmx I believe.

    ok I think I fixed the problem, but i dont know how, but now
    I have a new problem and I need your help on this one, the
    preloader comes right up and at about 45% I get an error message:
    "A script in this movie is causing Adobe Flash Player 9 to run
    slowly. If it continues to run your computer may become
    unresponsive. Do You want to Abort?" Also the site loads around
    this time, it is NOT loaded correctly because when i click on the
    buttons they go to wrong frame labels, though once the loading is
    done they go to the correct one. Any idea of what I need to do for
    this

  • Lock Frontpanel when user takes no activity in a specified time

    Hello !
    I have a PanelPC with Touchscreen and want to lock the frontpanel when the user doesn't make an input for a specified time. After this time the frontpanel locks and shows a password input to unlock the frontpanel. How do i detect if the user makes no input ? The VI has to run, because it makes an automatic control/ regulation of a factory. I found an example with a password protection, but i don't know how to detect the user input. Can anyone help me ?

    You can monitor the "mouse events" and also the "keypress events (using the keyboard)" and with this FP can be locked/unlocked based on the time out. 
    Create an event structure so that it will be easy to handle the mouse events. Add another frame of this event structure which can be used for handling the timeout and when ever a event occurs on the FP you can reset it to 0
    Regards
    Guru (CLA)
    Attachments:
    timeout.vi ‏13 KB

  • MS Office documents locking itself when user is trying to save it on a network drive.

    As the subject states I am having a issue with a user that when he is trying to save a document it is stating that the file is in use by another user.... for every single document he tries to save to.
    I made a test account and assigned it to the same domain group and it does the same thing but the user said this didn't start happening until a few days ago and nobody changed the groups NTFS permissions for this folder.
    I checked the file server for file locks and it is stating that he is the one locking it with read/write permissions.
    He can save to other documents fine that is non MS Office related, and if he opens the file going through the MS Office program instead of opening it from the windows explorer viewer it saves fine.
    Now I looked at his NTFS permissions since another department at my job seems to think this is NTFS related but he has read/write/modify access but does not have access to delete.
    When I give him the access to be able to delete in this folder everything works fine but I don't feel the risk is justifiable to give him access to delete files just so he can save MS Office documents when he should be able to save to begin with.
    I tried looking on the internet for a couple hours and couldn't find anything that quite fit this situation.
    Any help would be appreciated.

    Hi Jonathan,
    You would need to user Adobe creative cloud packager which creates an installation package and deploy to users machines. i assume, you are installing Adobe creative cloud desktop app from a network drive which is not recommended.
    Creative cloud packager workflow: http://helpx.adobe.com/creative-cloud/packager.html?t2
    Thanks,
    Ashish

Maybe you are looking for

  • [SOLVED] VLC does not play any (almost) video

    After recent upgrade vlc (to 1.1) stopped playing any video only audio. Error message looks like No suitable decoder module: VLC does not support the audio or video format "$name_of_codec". Unfortunately there is no way for you to fix this. At the ve

  • How can i transfer entire iphoto library to icloud?

    I dont want to back up iphoto collection, i would like to be able to access photos other than just shared or photostream. Please help.

  • Writing an extension

    Dear Friends, I want to write an extension for Adobe Dreamweaver CS3 and also add an autocompletion-feature. Is there a good tutorial for adding autocompletion? I only want to know how to create a popup with custom listed textual content when the use

  • CS5 64bit crashing on startup

    Hi - I have CS5 working fine on one machine (vista 64, and tried it also on Xp64 on one machine) and it works fine. I have another xp64 machine that I want run it on instead and it's crashing on startup - it crashes to the desktop without any error m

  • XML for Qualified tables (SP05)

    Hi all I have a xml file like this <?xml version="1.0" encoding="UTF-8"?> <od:schema xmlns:od="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <od:element name="Test">   <od:complexType>    <od:sequence>           <od: