Suspension 6 Captivate with a swf file created in Flash Pro

Don't know why my code does not work, but I tried a few different things based on what's worked for other people. The code is placed on the frame where I need interaction to pause. None of them does not seem to work. I have a custom Flash interaction that the student must complete before continuing the course.

Here are the things I've tried:

MovieClip (root) .rdcmndPause = 1;

---------------------------------------------

var mainmov:MovieClip = MovieClip (root);

mainmov.rdcmndPause = 1;

---------------------------------------------

var myRoot:MovieClip = MovieClip (root);

var mainmov:MovieClip = MovieClip (myRoot.parent.root);

mainmov.rdcmdPause = 1;

-------------------------------------------

FYI, I tried both rdcmndPause that cpCmndPause to each of the foregoing. Anyone have any ideas? Also, I'm ready to upgrade to Captivate 8. They make it easier in this version to do this kind of thing?

Thank you

Jeff

frame 1 of my fla source code, I used this event and var to interact with captivate variables:

var captivateVariables: *;

addEventListener (Event.FRAME_CONSTRUCTED, isAdded);

and then this function:

function isAdded(e:Event) {}

txt.appendText ("isAdded\n");

removeEventListener (Event.FRAME_CONSTRUCTED, isAdded);

try {}

captivateVariables = object (parent.parent) .getMovieProps () .variablesHandle;

txt.appendText ("captivateVariables:" + captivateVariables.cpCmndPause + "\n");

}

{} catch (error)

//

}

}

and then I inserted on a slide of captivate Framework 1.

Note: txt is a dynamic text box, I put on the flash stage I could see what was going on, since there is no trace statement from a captivate running file.

Tags: Adobe Captivate

Similar Questions

  • Display files created in Flash pro

    Hello

    I recently created an interactive slideshow in Adobe Flash Pro, but when I send to other people, that they may not display .swf files as I can understand, Flash player doesn't seem to be a stand alone program, but rather integrated with different browsers. Is it possible for me to publish my Fla file and give it to other people to display on its own rather than in the browser. The file will be projected on a screen of presentation, so needs to be viewed in full-screen, and we use arrow keys on the keyboard to move the slide to the slide, suggestions and what program can it be read in while now all of its elements. Any help would be great

    If you have the ability to create a projection file that is essentially a stand-alone executable version of the FLA published.

  • Error when loading a swf file created in flash cs4, inside a flex application

    Hello

    I created a rotating logo in flash cs4 using motion presets, named logoRotar.swf. I've used this within my flex application:

    "< mx:SWFLoader width="33.33% "height ="100% "source =" assets/logoRotar.swf ">

    When I run the flex application, I get this error message:

    VerifyError: Error #1014: class flash. geom::Matrix3D is not found.

    Global $init)
    at fl.motion::AnimatorFactory3D/getNewAnimator()
    at fl.motion::AnimatorFactoryBase/addTargetInfo()
    at logoRotar_fla::MainTimeline()

    I also tried to add import flash.geom. *; statement in my flex application, I always get the same message.

    Flash player 10,0,22,87 is underway in my browser.

    Please help me...

    See you soon!

    Deepak

    Download Flex 3.3 and use-target-Player = 10

    Alex Harui

    Flex SDK Developer

    Adobe Systems Inc..

    Blog: http://blogs.adobe.com/aharui

  • How to resize a swf file created in catalyst?

    Hello

    I created a magnificent site to the catalyst. My problem is: I don't know a code to change the size of the swf file created in catalyst.

    The swf file is now 800 x 600, but I want it automatically adapts the browser.

    I already have a swf in Flash Professional CS5, and then import it into Dreamweaver and change to 800 x 600 and 100% x 100%.

    Works fine, but when I do the same with my swf created in Catalyst, is not.


    Anyone know how I can fix this problem?

    Thank you
    Matiege

    Hi Matiege,

    What version of CF are you using? The latest version of CF, called 'Panini', supports the constraints, you can run the project, resize the browser and all objects that use constraints will be aligned correctly. Layout object constraints are specified with the so-called "vacuum" when the object is selected. There are also a few options if you right-click on the suction cup. The "Panini" is available for download on http://labs.adobe.com/technologies/flashcatalyst_panini/.

    The old version of the CF supports only the absolute coordinates.

    He answered your question?

    Thank you

    -Mykola
    CF QE

  • get a dotted line around .swf files in my flash site now. This is new from Firefox 3. With the help of 4 on a MacBookPro. tried the fix "style no outline. does not work. any help?

    Question
    get a dotted line around .swf files in my flash site now. This is new from Firefox 3. With the help of 4 on a MacBookPro. tried the fix "style no outline. does not work. any help?

    Ah, quite understand now that I added to my doc html

    < style type = "text/css" >
    {body
    background-color: #FFF;
    }
    "'object {outline: none ;}"} '

    < / style >

  • Symbols to seal a swf file created with mxmlc

    Hi all

    I'm trying to pool my resources in swf files separate and then use them in another flex project. I have create this bundles from a wizard that I wrote in the AIR. AIR application called mxmlc to compile bundle.as and I dynamicaly load bundle.swf. I can access the resources in this swf grouped using ApplicationDomain.getDefinition (). No problem

    However, I also want my Wizard allows you to change the prexisting beams. Problem is that I can't embed the resource of original new bundle group. I mainly use Sprite and ByteArray assets in bundles.

    To simplfy the problem, I have prepared as a result of test. Created an application bundle to create the bundle swf in flex. The project has 4 files: 2 .as file 1 .png files, 1 .swf file (FLA that has a linked symbol "Fill")

    // Bundle.as
    package
    {
      
              import flash.display.*;
      
              public class Bundle extends Sprite
              {
                        public function Bundle()
                        {
                                  var fla:DisplayObject = new Fla();
                                  addChild(fla);
      
                                  var image:DisplayObject = new Image();
                                  addChild(image);
      
      
                        }
              }
      
    }
    
    
    // Image.as
    package
    {
              import flash.display.Bitmap;
      
              [Embed(source='plus.png')]
              public class Image extends Bitmap
              {
              }
      
    }  
    // Fla.as
    package
    {
              import flash.display.Sprite;
      
              [Embed(source='fla.swf', symbol="Fill")]
              public class Fla extends Sprite
              {
                        public function Fla()
                        {
                        }
              }
    }
    
    
    

    Above project compiles without problems, and I can see both active on screen.
    Then I create a second project that will use the resulting swf of the project above.

    package
    {
      
              import flash.display.*;
      
              public class Application extends Sprite
              {
                        [Embed(source='Bundle.swf', symbol='Fla')]    /// Flex cannot embed this
                        private var flaClass:Class;
      
                        [Embed(source='Bundle.swf', symbol='Image')]  /// But it can embed this
                        private var imageClass:Class;
      
                        public function Application()
                        {
                                  var fla:DisplayObject = new flaClass();
                                  addChild(fla);
      
                                  var image:DisplayObject = new imageClass();
                                  addChild(image);
                        }
              }
      
    }
    
    

    The second project cannot see that the assets of the Bitmap as symbol. But could not find the advantage of Sprite.

    We rely heavily byte array and vector graphics of Flash embeded asset with

     [Embed(source='x.ba', mimeType="application/octet-stream")]
    

    I could write Active byte of table in a temporary directory and integrate them again, but I can't do it with Sprites. How can I solve this problem.

    OK, it's working now. I think the problem was using the constructors with embeded classes.

  • Executing an .exe with a SWF file. ?

    Hey.

    I was wandering if it is possible to run an .exe with a flash swf file file. When you click on a button?

    If it is then someone would be nice enough to tell me what I have to use the code please?

    I would like to use it with the button symbol.

    Thank you

    ~ Joe

    This should be:

    Stop();

    Btn.addEventListener (MouseEvent.CLICK, f);

    function f(e:Event):void {}

    fscommand ("exec", "psxfin.exe")

    }

    p.s. Please check the useful/correct.

  • This PDF file created using Flash?

    I'm trying to figure out how to create an interactive PDF animated, similar to this: inside the package. Issue 12 | September 2013

    Can someone tell me if this has been done using Flash with Indesign?

    Dean

    It has not been done with flash pro, but it uses a swf file.

  • Journal of crash on App Store with an API created by Flash Pro/AIR

    I have an application on App Store created with Flash Pro on a PC. The new version of the file API that I downloaded (to make it compatible with iOS9) was rejected and I'm covered in a cryptic crash log. The end of newspaper in a dsym file. Is it true that I can not get a dsym on a PC file? If so, how can I get the appropriate journal of crash or otherwise information? If I'm at the limit of what is possible and that he should abandon the PC or Flash Pro?

    first of all, make sure that you use the latest version of the sdk, 19.0.0.190 (at this time) - archived versions Adobe AIR SDK

    Second, make sure that no runtime error during the test.

    Thirdly, ask apple what action triggered the accident.

    Fourth, sometimes a beta sdk will fix the problem, Download Adobe AIR 19 Beta - Adobe Labs

  • where is the ID of a swf file published in Flash?

    Because there is no javascript on the dreamweaver forum, I thought that someone must know these basics. I published a SWF in an html file and I am using javascript to send a function in the swf file, but I don't know where is the ID of the swf file so I can work with it.

    Or, how and where to set its ID?

    The id used by javascript is an attribute of the object tag that contains the .swf file. If you just need to add it. For example:

    HTH,

    Randy

  • loading the swf file in the flash file - script to expect to play until it is fully charged

    I have a flash file which is 1.5 mb in size. Because it takes about 6 minutes to someone on DIALUP to load this file, I created a small swf file and loaded more large one of him but I want like that to start playing until she is fully downloaded. How do I configure this? I implemented the action script 2 as follows: loadMovieNum ("top2.swf", 0);

    Yes, this should be addListener instead of the addEventListener method.

    and, if you use this code, please mark this thread as answered.  If you used a different encoding, please your postcode for others and mark this thread as a response.

  • I need help with actionscript 3, sending information php to my email, Web site created in Flash pro cs5

    Hi, my name is David and I took a course to create my own website of Lynda.com by Paul Trani. After that, I created my first own webste. After that I finished it, everything worked well in flash and firefox. I have one problem or question about the power form back to send information of my website at my emailaddres. I created my website 'LisbonDreamWalking' in Flash pro CS5. I have a contact page, where people can send an e-mail for a walk in Lisbon, the date, the number of people etc. Now I want through my ISP / host funpic.org, as the entry info fields of text to be sent to my emailaddress [email protected]. My mail URL address iss: http://lisbondreamwalk.li.funpic.org This is a free webhost, so they do not work with forms as in the course, and I need some additional Info for php. Here is my HTML (Flash actionscript 3.0) to send, I don't have that red text to fill (php), I was told by the adobe course. I really hope that someone can help me? Thanks in advance!

    Instructions: 1. Add your custom code on a new line after the line that says "/ / Start your code custom" below. The code runs when the user clicks the symbol instance. * / send_btn.addEventListener (MouseEvent.CLICK, fl_MouseClickHandler_13);  function fl_MouseClickHandler_13(event:MouseEvent):void {if (thename.text == "": theemail.)} Text == ' | thetime. Text == ' | thepersons. Text == ' | TheMessage. Text == "") {thankyou.text = "Please fill out all fields';      } else {/ / create a container var allVars: URLVariables = new URLVariables();}           allVars.name = thename.text;           allVars.email = theemail.text;           allVars.time = thetime.text;           allVars.persons = thepersons.text;           allVars.message = themessage.text;           Send the info to a URL var mailAddress:URLRequest = new URLRequest ("http.www.namewebsite.com/gdform.php");           mailAddress.data = allVars;           mailAddress.method = URLRequestMethod.POST;           sendToURL (mailAddress);            Thankyou. Text = "Thank YOU!"           theName.Text = "";           Theemail. Text = "";           thetime. Text = "";           thepersons. Text = "";           TheMessage. Text = "";      } }

    H

    your code and my code are not the same.  Copy and paste the code that I have proposed.

  • Android App created in Flash Pro CC. What now?

    I created an android app in flash professional cc and completed the publication and then published settings.  It is on my phone, but how and where can I find so that other people can download the application? When I published, I published in Adobe Air, google No.

    Before moving your phone, it is also intended as an APK file. It will be in some file, you're ready to publish. Most likely, he is sitting next to the SWF file.

    If you can put it online and send people the public URL in the APK file, it should install on their devices, as long as they allowed side-loading apps. They do not have to transfer the file via USB, if you can put the APK somewhere online.

  • Acrobat CC test done, and now I can't do anything with the PDF files created or uploaded through this program.

    This test done, and I can't print or do anything with pdf documents in my files. How to open them or view them to use? Message keeps coming back that the trial is over and wants to take me up on the purchase site. If I tried to print a pdf file, it doesn't let me. What should I do?

    Hi zeena1,

    You can use the free software Adobe Reader (Adobe Acrobat Reader DC install for all versions) to view, comment, & print PDF files.

    However, if you want to edit or create a PDF files you need to buy or subscribe it Plans and prices | Adobe Acrobat DC.

    Kind regards

    Nicos

  • is it possible to click on a button in a swf file and have it replaced with another swf file?

    I don't know how to explain it but,

    I have a swf that has a button. When you click on it, it will appoint a different swf.

    that would alow me to create a menu swf when a user click on a menu item it loaded a different swf.

    The reason why I am interested in this option is that I only have a small window portlet on our community page.

    Thank you

    J

    Insert this code in the button that you want to load the film:

    on (release) {}

    loadMovieNum("movie_name",0);

    }

    Who will replace the current movie with the new film.  If you want the button remains, make a video, the size of the movie you are going to load, give it an instance name and replace the 0 with the name of the instance of the clip and I think that should do it.

    Include the quotation marks in the code, they are part of the syntax.

Maybe you are looking for