Publishing exe file using AICC not loading

Has anyone run into this before? I exported it using SCORM in the quiz preferences and it loads just fine. I'm not getting any errors, it attempts to open and the loading circle mid screen just spins. I have tried exporting with all the different flash versions as well with the same results. I am using Captivate 8.

I'm confused, you can't run an exe from a server in a LMS.
What do you mean Flash versions if it's a executable?

Similar Messages

  • How to execute a exe file using javascript on app window.load.

    How to execute a exe file using javascript on app window.load.

    Hi sb00349044,
    As I have already mentioned in multiple replies to your previous questions, the SUMO forums focuses on providing help to end users with usage-questions and issues.
    For developer-related questions, please refer to one of the many resources readily available that I have linked to in the past:
    * [https://developer.mozilla.org/en-US/Firefox_OS MDN]
    * [http://stackoverflow.com/questions/tagged/firefox-os StackOverflow]
    * [https://lists.mozilla.org/listinfo Mozilla Mailing Lists]
    - Ralph

  • Scrollbar in published exe file

    Hello, can anyone tell me, of it is possible to publish a
    project to a .exe with a scrollbar?
    Because in our company there are some people with 15" screens
    and now they don't see the bottom of the full screen *.exe
    I hope there is a way to scroll within the published exe
    file.
    kind regards,
    Bill

    Welcome to our community, Bill
    First off, there is no way I'm aware of to include a scroll
    bar like that.
    Computer screens are just like TV screens. If a person with a
    21 Inch monitor views something, it simply appears larger than it
    appears on a 15 inch monitor.
    What is at play here is something called
    Resolution. While for TV screens, the only thing that really
    comes into play is the size, with Computer monitors you care about
    resolution. Resolution is how finely the divisions occur with the
    display units. These are called PixEls, which is a combination of
    Picture and Elements. So often, smaller screens use a lower
    resolution, hence the issue.
    You may wish to consider Publishing the Captivate as a SWF
    and only linking to the SWF. While that would probably impact the
    quality of the end user's experience, it should accomplish the
    goal. So instead of opening a .EXE, the user would open a .SWF in
    the browser.
    Hopefully this was helpful. If not, it was intended to be.
    Cheers... Rick

  • How to run exe file using oracles procedure (ASAP) ?

    i am finding difficulties in running an exe file using an oracle procedure.I need this for a pure .NET application

    I want the solution for both,An Oracle stored procedure cannot generally run an executable on the client machine. Stored procedures run on the server and have no access to your client machine. You could potentially do something convoluted like run a web server on the client with an ASP page that called the executable and have the stored procedure make a UTL_HTTP call to the ASP page, but that's generally not an option.
    If the executable is on the server and it's only available as an executable, you could write a Java stored procedure that called out to the command line and invoked the executable (assuming the operating system user running the Oracle database has permission to do so). If the Oracle database is on Windows and you've got 10.2, you may also be able to write a .Net stored procedure that would do the same sort of thing.
    If you can expose the functionality as a DLL, a more elegant solution would be to use an external procedure.
    Justin

  • When I download certain files(most often exe files), I'm not able to open the source folder anymore when the download is complete.

    When I download certain files(most often exe files), I'm not able to open the source folder anymore when the download is complete. Neither can I execute the exe file. It often forces me to redownload the file in google chrome and then I go to the source folder and right click properties and I have to unblock the file. Only then I'm able to start the exe file.
    FYI: I use vista, so that might be the problem by itself...

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See "Disable virus scanning in Firefox preferences - Windows"
    *http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Does anyone know how i can view PDF files using Galaxy Note 2?

    Does anyone know how i can view PDF files using Galaxy Note 2?
    This is what i have been doing;
    I click on the file i wish to view (via a portal)
    this file goes to notification widget (i drag down screen)
    notification/message says download complete
    i click on notification/message
    nows it says complete action using (here i only have 2 icon options 1= DB Text Editor 2 = HTML Viewer)
    I have installed Adobe Reader.

    Can you confirm if the downloaded file is a pdf file, that is it ends with .pdf?

  • Loading the data from a packed decimal format file using a sql*loader.

    Hi ,
    In one of the project i'm working here i have to load the data into oracle table from a file using a Sql*loader but the problem is the data file is in the packed decimal format so please let me know if there is any way to do this....I search a lot regarding this ..If anybody faced such type of problem ,then let me the steps to solve this.
    Thanks in advance ,
    Narasingarao.

    declare
    f utl_file.file_type;
    s1 varchar2(200);
    s2 varchar2(200);
    s3 varchar2(200);
    c number := 0;
    begin
    f := utl_file.fopen('TRY','sample1.txt','R');
    utl_file.get_line(f,s1);
    utl_file.get_line(f,s2);
    utl_file.get_line(f,s3);
    insert into sampletable (a,b,c) values (s1,s2,s3);
    c := c + 1;
    utl_file.fclose(f);
    exception
    when NO_DATA_FOUND then
    if utl_file.is_open(f) then utl_file.fclose(f); ens if;
    dbms_output.put_line('No. of rows inserted : ' || c);
    end;SY.

  • How to run .exe files using SAP

    Hi,
    How can I run my .exe files using ABAP/4 language? How can I pass parameters to my executable? Is there any documentation related with my question?
    Thanks.

    Here is how you can run a .exe from your ABAP.  I don't know how you would pass parameters.
    report zrich_0001
           no standard page heading
           line-size 300.
    data:
               ifile_table type table of file_table,
               xfile_table type file_table,
                return type i..
    parameters: p_app type file_table-filename
              default 'C:'.
    at selection-screen on value-request for p_app.
      clear ifile_table.  refresh ifile_table.
      call method cl_gui_frontend_services=>file_open_dialog
       exporting
          window_title       = 'Get App'
          multiselection     = space
       changing
          file_table         = ifile_table
          rc                 = return
       exceptions
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          others                  = 4.
      read table ifile_table into xfile_table index 1.
      if sy-subrc  = 0.
        p_app = xfile_table.
      endif.
    start-of-selection.
      data: app type string.
      app = p_app.
      call method cl_gui_frontend_services=>execute
        exporting
          application            =  app.
    Regards,
    Rich Heilman

  • Packaging an AIR application in a .EXE file using ADT

         Hi All,
    I have to package a .AIR file in  .exe file with ADT.
    Is it possible setting a default installation path in exe file using ADT tool?
    I would like to create a .exe file where user can't interact with installation wizard to set a particular path.
    Does it exist a particular option?
    Would you suggest an example?
    (...adt -package -target native ??? myApp.exe myApp.air)
    Thanks in advance
    Gianni

         Hi All,
    I have to package a .AIR file in  .exe file with ADT.
    Is it possible setting a default installation path in exe file using ADT tool?
    I would like to create a .exe file where user can't interact with installation wizard to set a particular path.
    Does it exist a particular option?
    Would you suggest an example?
    (...adt -package -target native ??? myApp.exe myApp.air)
    Thanks in advance
    Gianni

  • Some websites i use do not load... Even when it suggests Google search?

    It doesn't seem to be working properly.
    Some sites i use are not loading in the search history

    In order to further investigate, can you please post the steps you are taking with what you expect to happen and a screenshot of what is happening/
    Thank you.

  • How do you open a Microsoft Publisher (.pub) file using inDesign?

    How do you open a Microsoft Publisher (.pub) file using inDesign?

    You don't.
    To get some semblance of the original content into Indesign, you could export the Pub file to PDF, then use PDF2ID, (probably a free trial available out there), to convert the PDF.

  • Loading exe file using loadMovieNum

    I have converted SWF into EXE using SWF Studio 2.2 to be able
    to run flash
    without havinf a FLASH player installed.
    It works fine except one feature. On clicking a picture it is
    supposed to
    load another movie using loadMovieNum()
    That other movie is too converted to EXE and loadMovieNum is
    called as
    loadMovieNum(another_movie.exe,0) which loads nothing though
    another_movie.exe is in the same folder as another_movie.swf
    which loads
    fine. I indicated the absolute path to another_movie.exe like
    "c:/folder1/folder2/another_movie.exe" - no joy.
    Does this mean that loadMovieNum loads SWF only and cannot be
    used to load
    EXE. If this is the case, how do I get round this?

    Thanks. Do you mean that the main exe file will serve as a
    projector for swf
    loaded into it?
    "the fleece" <[email protected]> wrote in
    message
    news:e6ov3j$gse$[email protected]..
    > no, you cant load up an exe.
    > but you dont have to, its just the main file that needs
    to be and exe,
    export the others as swf

  • I just started using firefox version 26 official. I noticed that after downloading one exe file firefox did not security scan. Earlier version always did.

    I just started using Firefox version 26 official today. I noticed that after downloading any file Firefox is not performing security scan. Earlier version always did. Does FF26 do security scan at the time of downloading itself? or security scan has been removed from the Firefox 26? i like the new UI of Firefox but i am security conscious.

    You can check the <b>browser.download.manager.scanWhenDone</b> pref on the <b>about:config</b> page and if necessary reset this pref via the right-click context menu to the default value.
    See also:
    *http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Published EXE file Error-Adobe captivate 4

    Hi,
    I'm having problems with publishing an EXE file in Adobe captivate 4. I know it has something to do with our internet browser settings, we are a Court location and we have strict settings, but I'm wondering if there are work arounds through adobe captivate. See error below:
    -allowing active content such as script and ActiveX controls can be useful, but active content might also harm your computer. Are you sure you want to let this file run active content? Y/N
    -Help protect security, internet explore has restricted this file from showing active content that could access your computer, click here for options.
    If you just select yes and proceed the captivate file runs fine and you can complete the training. Our goal is to be able to publish in this format because it's more stable than the PDF or HTML option but we don't want users to experience this error from the start.
    Thanks for helping with my questions!
    Libby

    Hi, I've been trying to attach an image for the error message we get but not matter what I do it gives me an error and won't let me attach the image. Any suggestions or do you have an email I can send them too. The error message may be a little different than what I sent previously, it seems to give a different error message on different computers. But we are currently trying to create a new release of our training program so this should be the most current error message and the error message people will see when they open it on their PC's. Anyway this is what it says:
    First Error Message:
    File Download-Security Warning
    Do you want to run or save this file?
    Name: BasicCORIS_AttachAnAttorney.exe (name of our file)
    Type: Application, 9.27MB
    From: C:/CourtsOnlineTraining\Program Files\Dist....
    Run     Save     Cancel (we select run, than you get next error message)
    While files from the Internet can be useful, this file type can potentially harm your computer. If you do not trust the source, do not run or save this software. What's the risk?
    Second Error Message:
    Internet Explorer- Security Warning
    The publisher could not be verified. Are you sure you want to run this software?
    Name: BasicCORIS_AttachAnAttorney.exe
    Publisher: Unknown Publisher
    Run    Don't Run
    This file does not have a valid digital signature that verifies its publisher. You should only run software from publishers you trust. How can I decide what software to run?
    I hope this makes sense. Let me tell you a little more about how our training is set up. We load the training on to a USB stick that includes a menu, the training modules, and a shortcut. Once the USB is downloaded on to the users PC they can select a shortcut icon for the training. Once they select the training shortcut it opens a menu that they can select training from. When they select on the desired training this is when they would receive these error messages. Our current release is in a HTML format, but because of this format the training interacts with the web browser and causes us problems so we were hoping to publish in exe and the training wouldn't open in a web browser.
    Let me know if you have further questions or if I've just confused the situation more. Again thanks for your help!
    Libby

  • Concern in published SWF file using Presenter for PPTX

    I observed that the PPT files (2003 version) which were published using Presenter 7 were creating a SWF file containing multiple frames. However the PPTX files (2007) which were published using Presenter 7 were creating a SWF file containing single frame. I am wondering how do I access a movieclip containing an animation.

    Let me re-phrase.
    I am loading the Presenter SWF into my Flash file (controller). Once the file is loaded I am controlling that file; I mean to say, I play/pause or jump to particular frame using the Flash file (Controller). This was working fine when I published PPT files, however when I published the PPTX file I am not getting the expected timeline animation so as to control it.
    Now I am wondering how I can control the PPTX published file using my controller.
    I will grateful, if someone helps me to solve this issue.

Maybe you are looking for