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.

Similar Messages

  • Load and unload the external swf file using AS3(for window, IOS and android)

    For the external swf file loading, I use this code
    load2.addEventListener(MouseEvent.MOUSE_DOWN, newvid);
    function newvid(event:MouseEvent) {
              trace("you clicked me");
              var loadit = new Loader();
              addChild(loadit);
        var _lc:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain, null);
        loadit.load(new URLRequest("scene02.swf"), _lc);
    its working great but I don’t know how to unload the loaded swf files (looking: unload one by one and unload all)
    in AS2 we have
    on (release) {
              loadMovieNum("scene2.swf", 1);
              unloadMovieNum(2);
              unloadMovieNum(3);
    but i need in AS3

    Now I use this code and this time I got these compiler errors
    package {
                    import flash.display.SimpleButton;
                    import flash.display.MovieClip;
                    import flash.events.MouseEvent;
                    //import flash.display.URLRequest;
                    //import flash.display.Loader;
                    import flash.events.Event;
                    import flash.system.ApplicationDomain;
                    import flash.net.URLRequest;
                    import flash.system.LoaderContext;            
                                    public class load1 extends SimpleButton {
                                                    var loadit:Loader;              
                                                    public function load1() {
                                                                    this.addEventListener(MouseEvent.MOUSE_DOWN, loadfile);
                                                    private function loadfile(event:MouseEvent):void {
                                                                    trace("you clicked me");
                                                                    loadit = new Loader();
                                                                    this.parent.addChild(loadit);
                                                                    var _lc:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain, null);
                                                                    loadit.load(new URLRequest("s01.swf"), _lc);
                                                    private function unloadfile(event:MouseEvent):void {
                                                                    loadit.unloadAndStop();

  • Help with publishing .swf files in iweb...

    Hi,
    I am trying to publish .swf files into my website. I have uploaded the files in my idisk in the 'Web' 'Sites' folder where the rest of my website files are held. I have used Roddy's html snippet...
    <iframe width="420" height="420" frameborder="0" src="http://idisk.mac.com/username//Web/Sites/flashfiles/filename.swf"
    </iframe
    When I publish and visit my site I get asked for my username and password for idisk(?) I have not set this (I've checked). Can anyone shed any light on why this is happening. Have I uploaded my .swf files to the wrong place maybe?
    Thanks in advance

    ALWAYS define URLs from --the-- your visitor's browser point of view.
    http://idisk.mac.com/username//Web/Sites/flashfiles/filename.swf
    should be
    http://web.me.com/username/flashfiles/filename.swf
    Message was edited by: Wyodor

  • Published .swf Files ignore my AS Code

    I've been working on s project for a week or so, testing it with Ctrl+Enter in Flash and I got it working just fine.  Tonight, for the first time, I tested it by just running the .swf file and none of the ActionScript works...primarily, the stop() command on the first frame, it just blows through my whole movie as if there's not a lick of code there.
    I went back in Flash and tested it there with Ctrl+Enter and voilla...no problem.
    Odd...
    So I opened a brand new Flash file.  A plain document.  I put a keyframe on 40, then put a keyframe on 30 and put some plain text on the stage "this is some text"
    I tested the movie, with Ctrl+Enter and, as expected, for awhile I saw nothing then "this is some text" appeared, then the movie got to the end and restarted.
    So far so good.
    I put a "stop()" in the first keyframe of the movie.  Ctrl+Enter to test it.  Nothing happened.  The movie was stopped.
    Cool, so I published the .swf file.  When running the .swf the "this is some text" text did appear and the movie played as normal, COMPLETELY IGNORING MY CODE.
    WFT?  I've checked my publish settings, I am publishing AS 3.0 and this is CS4 that I'm using.  Any help?

    Hi kglad. The issue is more in AIR. When testing the .fla file in Flash Professional (CTRL + Enter), the file works as expected. However, if I publish the file using default settings in AIR, the stage just immediately begins flickering. I've upload the file to the following location.
    http://www.sendspace.com/file/ki0pwk
    Many thanks for the help.

  • Compiling FLA and AS files to SWF file using command line

    I need to encorporate the .as sources and .fla file, into my
    build environment, to compile the SWF file.
    Right I have to Open Flash 8 to perform this and copy the SWF
    created through the compilation process.
    Compiling FLA and AS files to SWF file using command line is
    my main purpose. If there such a utility there, does it exist for
    Linux and Windows.

    Try
    Flash
    Command or
    Flash
    Shell Extension
    We use an enhanced version of Flash Command internally, of
    which we fixed the bug of Mike Chamber's Flash Command which cannot
    be run in .NEt 2.0 and added some other functionality. Once we are
    comfortable with it, we will release it to the public.

  • Unload swf file using SWFLoader

    Hi,
    I have a main application where I am using a SWFLoader to load a second application.
    In the second application I want to put a button (Close) and when I click it I want to unload this application.
    Is it possible to achieve this?
    I know that I can unload a swf file using the unloadAndStop method of SWFLoader, but how can I access it from the loaded application?
    I think that another approach would be adding eventlisteners to loaded swf but I am not sure how to do that.
    Does anyone can help me?
    Thanks in advance,
    Alberto

    Hi,
    @Alberto
    I think that another approach would be adding eventlisteners to loaded swf but I am not sure how to do that.
    I think you could use custom or built-in event type to dispatch information to hosting application and SWFLoader *has* built-in dedicated routine to unload loaded context - which includes removing event listeners added to swf-types on content load (Yes, there are means in Flex SDK to access top-most application but usually that is not advised to access methods/properties of parent as it closely ties content together).
    So your parent application could start to listen for custom event when load completes and removes loaded app that way:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx">
         <fx:Script>
              <![CDATA[
                   protected function chidLoadedHandler(event:Event):void
                        swfLoader.content.addEventListener(Event.CLOSE, unloadChildHandler);
                   protected function unloadChildHandler(event:Event):void
                        swfLoader.content.removeEventListener(Event.CLOSE, unloadChildHandler);
                        swfLoader.unloadAndStop(true);
              ]]>
         </fx:Script>
         <s:SWFLoader
              width="100%" height="100%"
              source="ChildApplication.swf"
              complete="chidLoadedHandler(event)"
              id="swfLoader"/>
    </s:Application>
    while your child application simply:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx">
         <fx:Script>
              <![CDATA[
                   protected function unloadMeHandler(event:MouseEvent):void
                        // we will dispatch "CLOSE" event - this could be custom event type
                        // but I think it is just enoguht heres
                        var closeEvent:Event = new Event(Event.CLOSE);
                        // root is top-most - so it is "content" top-most display object as well
                        this.root.dispatchEvent(closeEvent);
              ]]>
         </fx:Script>
         <!-- ui -->
         <s:Button x="10" y="10" label="Unload me" click="unloadMeHandler(event)" id="unloadButton"/>
    </s:Application>
    Not sure if that is most bullet proof or recommended solution but could be place to start,
    regards,
    Peter

  • I'm trying to publish an ebook using iAuthor for a client.  We're asked to 'Sign in to iTunes Connect' using the Apple ID a continues to be regected

    I'm trying to publish an ebook using iAuthor for a client.  We've been through the systems check and we have all the meta data, screen shots and preview files ready to go. We're asked to 'Sign in to iTunes Connect' using the Apple ID a continues to be rejected - the message that comes up is: YouApple Id or password was entered incorrectly. We've been thought the process (via the link Forgot?) of resetting the password, but still no luck. Help please.

    Have you got a developer account, not just a normal Apple ID?
    https://developer.apple.com/support/resources/itunes-connect.html

  • Problem in Uploading excel file using WebDynpro for Java

    Hi  All
    I have followed for Uploading excel file using WebDynpro for Java added by  Tulasi Palnati
    I done all, but I'm getting 500 Exception please contact u r system admin meag  at run time also  Jxl/Workbook class not found msag  but i downloaded Jxl.jar file and  there is no error signals  in coding part. How can I solve the Problem.
    Thanks
    Polaka

    Please ask the people in the Web Dynpro Java forum for a solution.

  • Reading/Writing .xlsx files using Webdynpro for Java

    Dear All
    I have a requirement to read/write excel files in .xlsx format. I am good in doing it with .xls format using jxl.jar. The jxl.jar doesn't support .xlsx format. Kindly help me in understanding how do I need to proceed on reading/writing .xlsx files using Webdynpro for Java.
    Thanks and Regards
    Ramamoorthy D

    i am using jdk 1.6.22 and IBM WebSphere
    when i use poi-3.6-20091214.jar and poi-ooxml-3.6-20091214.jar  to read .xlsx file. but i am getting following errors
    The project was not built since its classpath is incomplete. Cannot find the class
    file for java.lang.Iterable. Fix the classpath then try rebuilding this project.
    This compilation unit indirectly references the missing type java.lang.Iterable
    (typically some required class file is referencing a type outside the classpath)
    how can i resolve it
    here is the code that i have used
    public class HomeAction extends DispatchAction {
         public ActionForward addpage(
                             ActionMapping mapping,
                             ActionForm form,
                             HttpServletRequest request,
                             HttpServletResponse response)
                             throws Exception {     
                             String name = "C:/Documents and Settings/bharath/Desktop/Book1.xlsx";
               FileInputStream fis = null;
               try {
                   Object workbook = null;
                    fis = new FileInputStream(name);
                    XSSFWorkbook wb = new XSSFWorkbook(fis);
                    XSSFSheet sheet = (XSSFSheet) wb.getSheetAt(0);
                    Iterator rows = sheet.rowIterator();
                    int number=sheet.getLastRowNum();
                    System.out.println(" number of rows"+ number);
                    while (rows.hasNext())
                        XSSFRow row = ((XSSFRow) rows.next());
                        Iterator cells = row.cellIterator();
                        while(cells.hasNext())
                    XSSFCell cell = (XSSFCell) cells.next();
                    String Value=cell.getStringCellValue();
                    System.out.println(Value);
               } catch (IOException e) {
                    e.printStackTrace();
               } finally {
                    if (fis != null) {
                         fis.close();
                return mapping.findForward("returnjsp");

  • 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.

  • Converting video to swf files in flash for breeze

    Hello,
    I am using Adobe Premiere Pro 2 and wanted to know what the
    best video codec and audio codec to use when I export to create a
    video file to insert into flash to convert to a swf file for
    breeze? I am having trouble with the audio, must I demux it first
    before I put into Flash? Or is there a audio codec that I can use
    in Premiere so I don't have to demux the audio?
    Also, when I insert a swf file in breeze plug-in for PPT, it
    does not play the video or give me the controll by presentation
    playbar I checked off. Not sure what I'm doing wrong, could use
    some help, thanks.

    billcorrigan schrieb:
    > Jerich0, I tried this and when I publish it, the swf
    opens a connection to the
    > server, and starts streaming but nothing happens. Just a
    blank movie.
    >
    > The content is at (FLV):
    >
    >
    http://breeze.extn.washington.edu/p45023528/
    >
    > and the swf is at
    >
    >
    http://breeze.extn.washington.edu/p17629788/
    >
    > I created the swf by creating a new document in Flash 8,
    selected components,
    > edited the infomation in media player and saved the
    file.
    >
    > any suggestions?
    >
    hi,
    if you work with the player component the .flv is not
    embedded in the
    swf. In Breeze you can only insert a single flash file I
    suppose, so the
    attached .flv file won't show up.
    Kathrin

  • Why does the published swf output from Presenter 10 fail to play when the zip output is uploaded to my LMS?

    On Win 7, using Presenter 10 the published output .swf (and associated files in the .zip collection) produces only a blank browser frame (both IE10 and Chrome) on upload and launch from the LMS. The index.html file is referencing two .js files that do not exist...
    <script src="./data/html/Project.js"></script>
    <script src="./data/resources/ha/wr_/OpenAjaxManagedHub-all.js"></script>
    Also, seem to be missing a presenter.css file in ./data/html I think the presenter.libs.js file is referencing.
    Are these files required for playback and correspondingly that's why only a blank browser frame is presented on the LMS launch?
    Is it possible that when I publish to my local these files are not being populated in the output .zip for some reason?
    Any help isolating the cause is much appreciated!
    -Ken

    @Willam I am wondering if the first problem has not been properly described. When viewing generated help if you right click and select View Source, as you know, you will get the HTML for the tripane window. I think Rtrown wants to see the code for the default topic. If so, that is something like View this frame.
    Turning to the last paragraph, there is also some confusion there.
    When this first happened, I wondered if the project was corrupted, and I tried a technique I picked up a while ago, involving removing the xpj and cpd files from Windows Explorer, and attempting to restore from the *.FPJ file. However, I get a message saying 'This file is not an HPJ file. Please select an HPJ file to open'. The project does not have an HPJ file! So I had to rebuild the project.
    First, you should only delete the CPD file in most scenarios. See Opening Projects on my site. Deleting the XPJ should not be done other than in a few situations. Secondly, you then restore from the HHP file, not the FPJ file. Not sure how you would do that. Finally an HPJ file is related to RoboHelp for Word and is its equivalent of the XPJ file in RoboHelp HTML.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Playing back a PPT enhanced w/SWF's using Presenter

    Hey everyone, where I work we do a variety of training and we were hoping to enhance some of the powerpoint trainings by adding SWF's to them using Presenter. Here's my question though, can people who don't have Presenter installed still give the presentations with the SWF's intact just using Flash Player, or does everyone who might give the presentations have to have Presenter. Any clarification would be greatly appreciated. Thanks.
    Tom
    Multimedia Specialist
    www.deZignwright.com

    I think you are asking if you can give an output/publish version of the presenter file to another person who doesn't have presenter installed? If so then yes, we publish our files for internet, so the client or whomever just opens the index.htm file to view the presentation.

  • Can we publish swf file made with InDesign in .exe?

    I made a SWF file with InDesign. I would like to publish it in .exe? Is it possible?

    What version of FlashPro are you using? If you want a self contained app that doesn't load external resources, publish an AIR app, which will work on Windows or OSX. I'm using OSX so I can't really help with .exe projector files, but it looks like the latest version of FlashPro no longer outputs projector files—I think everything is AIR now.
    If you really want to go the projector route, I'm guessing Jeffrey Smith's suggestion of finding an older version of Flash Player would be simpler.
    So for AIR, set your Publishing target to AIR for Desktop. Then under File>AIR settings:
    Output as: Application with runtime embedded
    Include files: Add all of your resources—the swf ID generated and it's resource folder
    In the Signature tab click New to create a self-signing Certificate (if you were developing commercial software you would need a third party certificate). You can save the certificate anywhere.
    When you publish you should find an AIR application file (.app) file in the directory with your .fla

  • Is it possible to compress SWF files using gzip?

    I am using gzip for all the files of my server but my swf doesn't seem to be getting compressed also "swfobject_modified.js" used by the SWF file doesn't get compressed as well, whereas other .js files are getting compressed. Any suggestions ?

    For quite a while swfs are (by default) (g)ziped when published. You can change that under the publish-settings using the flash tab. Regarding the swfobject, I think that the code is very size optimized, whereas your regular run of the mill self-made .js is mostly optimized for readability.
    M

Maybe you are looking for

  • Mainstage 2.2.2 with 10.68 and mountain lion

    I currently use Mainstage 2.1.3 on Snow Leopard, for live performances, and it works great. I am curious about either upgrading to Mainstage 2.2.2 and/or Mountain Lion.  I am afraid of issues coming up from either or both upgrades.   I also use Logic

  • CIN Configuration missing

    I have installed ECC6 in my system.  After that when I started SD configuration by assigning tax calculation procedure in OBBG,  I could not do so due to the fact it is missing.   I had also checked in OBQ3 where both TAXINJ and TAXINN is missing.  A

  • Internal links to list items (as in Microsoft Word)

    Hello, all! I am a switcher to Mac. Would be grateful if you could ease my switching Mic. Word has a great function for lawyers I always used: I make a document with multilevel numbers like: 1. 1.1. 1.1.1. 1.1.2. 1.2. 2. 2.1 etc. This one is availabl

  • Apple please provide way to disable Edge but enable WiFi

    I am planning a trip outside the US. I have read the posts about people who spend a week abroad and come back to an outrageous AT&T bill because of the international Edge usage charges (sometimes even incidental). I called AT&T and yes they have an i

  • AEBSn USB Printer Port Share X-Platform for EPSON RX680

    Here on the Apple Discussion are any of you aware of any reason why this model (Stylus Photo RX680) will not work on BOTH a Mac mini with OS X 10.5 AND a Dell PC with Windows XP Home via an AirPort Extreme Base Station N using the USB Port as a print