Comment reccuperer un swf ?

Bonjour a tous.
Alors voila mon problème , j'ai un projet Flash entierement terminé que je génère Flash builder me crée alors un .exe et un .swf et lorsque j'ouvre le swf,  celui-ci m'affiche seulement le theme de fond de mon projet et rien d'autre (aucun boutons,aucun texte, ect...) tandis que le .exe affiche le projet entier. J'aurais besoin que ce soit plutot le swf qui fasse cela afin de l'implanter dans un projet .net en tant que shockwaveFlashObject et communiquer avec lui, est-ce possible ? Ya t'il un autre moyens de faire communiquer flash et .net ?
Merci de vos reponses .

You should find the forum for whichever product this concerns and post your question(s) there.
Here is a link to a page that has links to all Adobe forums...
Forum links page: https://forums.adobe.com/welcome

Similar Messages

  • Is there a way to use C to add comments to existing SWF?

    I know I can import a swf, but if I try to preview it, I
    can't see what frame it stopped on in order to put my
    comment/highlight boxes in. Is there another way?

    Hi Ben
    Just my opinion here, but I think you will find it to be more
    trial and error than anything else. Basically you will need to note
    the approximate time you wish to see the elements, then stage them
    on the Captivate Timeline for the slide. Then preview. And tweak.
    Rinse and repeat.
    Cheers... Rick

  • Preload external swf before play

    i have a project i am working on...but for some reason the solution i went with is not satisfying my instructor......
    so....here is my new code ( which is incorrect but i cant figure out how to arrange the preloader at the end )
    var Xpos:Number=0;
    var Ypos:Number=0;
    var swf:MovieClip;
    var bgloader:Loader = new Loader();
    var bgURL
    if(page==1){
    bgURL=new URLRequest("pages/home.swf");
    else if(page==2){
    bgURL=new URLRequest("pages/about.swf");
    else if(page==3){
    bgURL=new URLRequest("pages/projects.swf");
    else if(page==4){
    bgURL=new URLRequest("pages/experimental.swf");
    else if(page==5){
    bgURL=new URLRequest("pages/contact.swf");
    bgloader.load(bgURL);
    bgloader.x=Xpos;
    bgloader.y=Ypos;
    bg.addChild(bgloader);
    stop();
    var percent:Number = bgURL.bytesTotal;
    if(percent==100){
    gotoAndPlay("start");
    first off, i dont even know if what i am being asked to do is possible...but, what i am being requested to do is obviously load in the external swf BUT, the external swf cannot play until the MAIN swf is directed to "start"......
    i have done this numerous times in as1 and 2....but back then things were totally written different and if you do it the same way you run into migration issues....
    i thought this was solved already, but my instructor will not accept the method of using an event to be dispatched in the external SWF to tell the main swf when to play "start"....im not sure if there is any other way to do this?
    he wants the external swf to contain NO code other than what is necessary for its internal functions....
    everything is to be coded in the MAIN swf.....
    so im trying to use bytesTotal, and the percent==100 is just a number i threw in for example purposes.....i am just not figuring this out....
    any help is greatly appreciated

    From what I could gather based on your description, your instructor wants you to start playing when external swf is loaded completely.
    If my understanding is correct, what you need to do conceptually is:
    1. Instantiate Loader
    2. Add event listeners that you are interested in.
    3. Execute code corresponding to these listeners in their corresponding handler functions.
    As for No 2 - Usually there are at least 3 events that are of interest when dealing with Loaders:
    1. Event.COMPLETE - dispatched when entire target is loaded
    2. ProgressEvent.PROGRESS - dispatched when a new bytes packet arrives.
    3. IOErrorEvent.IO_ERROR - dispatched when something goes wrong with loading (say, wrong url, etc.)
    In your particular case it is supposed to be something like this (may not work because you did not describe what is the point of different swfs loading and how it affects entire application). SEE COMMENTS:
    stop();
    var swf:MovieClip;
    // always specify datatype
    var bgURL:URLRequest;
    if(page == 1) {
         bgURL = new URLRequest("pages/home.swf");
    else if (page == 2) {
         bgURL = new URLRequest("pages/about.swf");
    else if (page == 3) {
         bgURL = new URLRequest("pages/projects.swf");
    else if (page == 4) {
         bgURL = new URLRequest("pages/experimental.swf");
    else if (page == 5) {
         bgURL = new URLRequest("pages/contact.swf");
    var bgloader:Loader = new Loader();
    configureListeners();
    // now you are ready to load
    bgloader.load(bgURL);
    * Adds listeners.
    function configureListeners():void {
         // NOTE!!! Listeners are added to contentLoaderInfo - not Loader itself
         bgloader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);
         bgloader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress);
         bgloader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onLoadError);
    * Removes listeners.
    function removeListeners():void {
         bgloader.contentLoaderInfo.removeEventListener(Event.COMPLETE, onLoadComplete);
         bgloader.contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS, onProgress);
         bgloader.contentLoaderInfo.removeEventListener(IOErrorEvent.IO_ERROR, onLoadError);
    function onLoadComplete(e:Event):void
         // depeneding on the situation
         // you may want to add loaded swf
         // but before if swf exists - you need to remove it
         if (swf && this.contains(swf)) {
              removeChild(swf);
              swf = null;
         swf = bgloader.content as MovieClip;
         addChild(swf);
         // now play
         this.gotToAndPlay("start");
         // dont't forget to remove listeners
         removeListeners();
    function onLoadError(e:IOErrorEvent):void
         // deal with the error
    function onProgress(e:ProgressEvent):void
         // here you update preloader if you have one
         trace("Progress", e.bytesLoaded, e.bytesTotal);
    On a side note, the way you deal with instnatiating URLRequests is not the most efficient or scalable. A better approach would be to keep them in an array and call by index. Note, conditionals are gone.
    var bgList:Array = [
              "pages/home.swf",
              "pages/about.swf",
              "pages/projects.swf",
              "pages/experimental.swf",
              "pages/contact.swf"];
    var bgURL:URLRequest = new URLRequest(bgList[page]);

  • AIR:  Loading external Swf - sandbox violation

    Hello Mates ,
    I need a help ... an urgent one !!! i tried so hard to figured it out .. but i couldn't .. so I appreciate your help so much ..
    I'm developing an Air App using flash ... the app loads an external SWF file dynamically through an xml ... the SWF file has a movieclip that has a listener (ON click )
    function mouseDownHandler(event:MouseEvent):void {
    navigateToURL(new URLRequest(clickURL));
    everything is working fine until i click on this movieclip ... it displays the below message
    SecurityError: Error #2121: Security sandbox violation: navigateToURL: http://www.mydomain.com/maskot/avatar.swf cannot access http://www.yahoo.com. This may be worked around by calling Security.allowDomain.
    any help !!! because i really have a deadline !
    Thank you so much !

    that's why i added those comments about the swf's domain.  for locally loaded swfs, use:
    SFMltd wrote:
    Hi Kglad, Thanks for the Example.
    if i run my class with securityDomain = SecurityDomain.currentDomain; then it throws this error: SecurityError: Error #2142: Security sandbox violation: local SWF files cannot use the LoaderContext.securityDomain property.
    The swf file im trying to load is stored locally so i guess this error makes sense. However if i comment out that line i get the same "cannot access Stage owned by app" error?
    See below for class:
    package  {
      import flash.display.MovieClip;
      import flash.filesystem.File;
      import flash.events.Event;
      import flash.net.FileReference;
      import flash.events.MouseEvent;
      import flash.display.Loader;
      import flash.net.URLRequest;
      import flash.system.LoaderContext;
      import flash.system.ApplicationDomain;
      import flash.system.SecurityDomain;
      public class assetPreview extends MovieClip {
      private var loader:Loader;
      private var mainSWF:MovieClip = new MovieClip();
      public function assetPreview() {
      addEventListener(Event.ADDED_TO_STAGE, initialise);
      public function initialise(e:Event):void
      removeEventListener(Event.ADDED_TO_STAGE, initialise);
      var allowSWF:LoaderContext = new LoaderContext(false,ApplicationDomain.currentDomain);
    // allowSWF.securityDomain = SecurityDomain.currentDomain;
      loader = new Loader();
      loader.load( new URLRequest(settingsXML.pathToSWF),allowSWF);
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE, viewPreview);
      public function viewPreview(e:Event):void
      addChild(mainSWF);
      mainSWF.addChild(loader);

  • Problems loading Flex3 swf into AIR app

    This is a challenging problem that I have reduced down to the
    bare minimum and it is still reproduceable. I have built a minimal
    AIR application and added a SWFLoader to it which loads a SWF file
    named "Junk.swf" using an absolute path.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" title="Hello World">
    <mx:Style>
    WindowedApplication {
    background-color:"0x999999";
    background-alpha:"0.5";
    </mx:Style>
    <mx:SWFLoader
    source="C:/myProjectFolder/renderers/Junk.swf" width="100%"
    height="100%" />
    </mx:WindowedApplication>
    This works fine if I run the application from within Flex3,
    however when I build an installer, install the application to my
    windows vista system and execute it from the desktop the Junk.swf
    will not display. If I replace the Junk.swf with another SWF of the
    same name created in Flash CS3 then it will display properly when
    my test app is executed from either Flex or the desktop.
    The contents of the loaded SWF don't appear to be an issue
    since even the simplest of Flex3 SWFs fail to display.
    Interestingly when I add listeners to the SWFLoader to
    determine if any errors are happening no error events are sent, but
    I do receive both the INIT and COMPLETE events which tells me that
    the Junk.swf is found and loaded, just not displayed.
    Any assistance or even ideas that I could try would be
    appreciated.

    that's why i added those comments about the swf's domain.  for locally loaded swfs, use:
    SFMltd wrote:
    Hi Kglad, Thanks for the Example.
    if i run my class with securityDomain = SecurityDomain.currentDomain; then it throws this error: SecurityError: Error #2142: Security sandbox violation: local SWF files cannot use the LoaderContext.securityDomain property.
    The swf file im trying to load is stored locally so i guess this error makes sense. However if i comment out that line i get the same "cannot access Stage owned by app" error?
    See below for class:
    package  {
      import flash.display.MovieClip;
      import flash.filesystem.File;
      import flash.events.Event;
      import flash.net.FileReference;
      import flash.events.MouseEvent;
      import flash.display.Loader;
      import flash.net.URLRequest;
      import flash.system.LoaderContext;
      import flash.system.ApplicationDomain;
      import flash.system.SecurityDomain;
      public class assetPreview extends MovieClip {
      private var loader:Loader;
      private var mainSWF:MovieClip = new MovieClip();
      public function assetPreview() {
      addEventListener(Event.ADDED_TO_STAGE, initialise);
      public function initialise(e:Event):void
      removeEventListener(Event.ADDED_TO_STAGE, initialise);
      var allowSWF:LoaderContext = new LoaderContext(false,ApplicationDomain.currentDomain);
    // allowSWF.securityDomain = SecurityDomain.currentDomain;
      loader = new Loader();
      loader.load( new URLRequest(settingsXML.pathToSWF),allowSWF);
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE, viewPreview);
      public function viewPreview(e:Event):void
      addChild(mainSWF);
      mainSWF.addChild(loader);

  • Loading external swf into Air App

    Hi All,
    I'm building an Adobe Air App for desktop and am having problems loading an external swf. Every time i try to load i get:
    SecurityError: Error #2070: Security sandbox violation........ cannot access Stage owned by app....blah blah
    The file that is being loaded is in a local directory, but as i understand its in a different 'sandbox' which is a security risk.
    Is there any way around this?!
    Any help would be much appreciated
    Many Thanks
    Matt

    that's why i added those comments about the swf's domain.  for locally loaded swfs, use:
    SFMltd wrote:
    Hi Kglad, Thanks for the Example.
    if i run my class with securityDomain = SecurityDomain.currentDomain; then it throws this error: SecurityError: Error #2142: Security sandbox violation: local SWF files cannot use the LoaderContext.securityDomain property.
    The swf file im trying to load is stored locally so i guess this error makes sense. However if i comment out that line i get the same "cannot access Stage owned by app" error?
    See below for class:
    package  {
      import flash.display.MovieClip;
      import flash.filesystem.File;
      import flash.events.Event;
      import flash.net.FileReference;
      import flash.events.MouseEvent;
      import flash.display.Loader;
      import flash.net.URLRequest;
      import flash.system.LoaderContext;
      import flash.system.ApplicationDomain;
      import flash.system.SecurityDomain;
      public class assetPreview extends MovieClip {
      private var loader:Loader;
      private var mainSWF:MovieClip = new MovieClip();
      public function assetPreview() {
      addEventListener(Event.ADDED_TO_STAGE, initialise);
      public function initialise(e:Event):void
      removeEventListener(Event.ADDED_TO_STAGE, initialise);
      var allowSWF:LoaderContext = new LoaderContext(false,ApplicationDomain.currentDomain);
    // allowSWF.securityDomain = SecurityDomain.currentDomain;
      loader = new Loader();
      loader.load( new URLRequest(settingsXML.pathToSWF),allowSWF);
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE, viewPreview);
      public function viewPreview(e:Event):void
      addChild(mainSWF);
      mainSWF.addChild(loader);

  • Error: Could not find compiled resource bundle 'components' for locale 'en_US'

    We are porting a fairly large body of Flex3 code developed under FlexBuilder 3 to Flex4 under FlashBuilder 4.  Most of the conversion appears to be working fine, with one exception.  When I launch the Flex4 version, all my data interchanges with the server works.  Just as it is about to show the UI, the following error occurs:
         Error: Could not find compiled resource bundle 'components' for locale 'en_US'
    I am actually using a locale of fr_FR, but I assume it couldn't find that, reverted to en_US, failed again and then barfed.  If I look in
         ~Adobe Flash Builder 4\sdks\4.0.0\frameworks\locale\fr_FR
    I see a lot of swc files, and of course no 'components.swc'.  I believe the problem is that our Flex3 code is using mx components, and the compatibility mode is not properly handling it for some reason.  I think this is mostly from our in-house UI library.  The properties for that library (and for my main app I am testing now) have:
         - Use default SDK (currently "Flex 4.0")
         - Use Flex 3 compability mode
         - Use minimum version (Flash Player) required by the Flex SDK
         - Enable strict type checking
         - Enable warnings
    I also tried putting the compatibility flag in the mxmlc compile line, with no change in behavior.  This project is built by the following script:
    ruby scripts/concat_properties.rb -o resources.properties ^
         src/main/flex/locale/fr_common/res_myname_fr_common.properties ^
         src/main/flex/locale/fr_common/scout/res_myname_scout_fr_common.properties ^
         src/main/flex/locale/fr_fr/res_myname_fr_fr.properties ^
         ../../scout/common/src/locale/fr_common/mypals/resources.properties
    mxmlc -locale=fr_FR -source-path=. ^
         -compatibility-version=3.0.0. ^
         -static-rsls=true ^
         -include-resource-bundles=resources ^
         -output src/main/resources/bundles/mypals/fr_fr_resources.swf
    copy src\main\resources\bundles\mypals\fr_fr_resources.swf ^
         bin-debug\bundles\mypals
    What have I missed???

    You have two posts. I will try to answer each completely.  Second one first. You say I should change my build to include the framework resources.  I am afraid I am not sure which and what to do there.  We combine all our properties file into one large one, then use the following build line:
    mxmlc -locale=fr_FR,en_US -source-path=. ^
         -compatibility-version=3.0.0. ^
         -static-rsls=true ^
         -include-resource-bundles=resources ^
         -output src/main/resources/bundles/mypals/fr_fr_resources.swf
    I am assuming you are telling me to change the "-include-resource-bundles" line, but what to add?  The "sdks\4.0.0\frameworks\locale\en_US" holds 13 swf files.  I tried adding that entire folder (along with the fr_FR folder) to the project library path (in the project properties dialog), but that made no change.  I also tried reverting the library path tab back to "MX Only" instead of "MX + Spark", but again no change.
    ====================
    For your first message, I did a search for 'spark' in the entire project.  It only existed on 3 lines, each at the start of css files:
        @namespace s "library://ns.adobe.com/flex/spark";
    I had put those in based on reading needed changes to naming in CSS.  Since I was not actually using any spark ('s') components yet, I removed these lines.  The entire project now does not have the word 'spark' anywhere in it. No change in behavior (as I expected).
    I did a search for "s:" throughout the project.  That does exist in probably 100 places, but all are legitimate. Things like (xmlns:mx="http://www.adobe.com/2006/mxml") or variable names ("var matches:Object").  No reference to any s: object.  (While on the topic, why does FlashBuilder still not have a "whole word" box to limit searches??).
    Note that when I first reported this problem, the compiler was set to ONLY support fr_FR.  In fighting this, I changed it to "en_US,fr_FR" hoping that would tell the compiler to load whatever en_US items it was looking for.  We really do not want any English support in this version. (We do have another SWF created with only support for en_US, and another for en_UK, etc.  Each language is a separate node on our server, so there is no need to mix & match at runtime)
    The console shows a lot of swf loads that I do not understand...
    The console output shows (my comments after ==> indicator)
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\myname.swf - 2,229,992 bytes after decompression
                 ==> our locale is set here, after the above load and before the next line
    Look for name file at: ./data/fr_fr/names.csv
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\myname.swf - 21,200 bytes after decompression
    Loaded 2278 names.       ==> indicates successful load of data retrieved from server
    Loaded 154 bad words     ==> our second data set has been retrieved and loaded
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 58,777 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 322,606 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\bundles\mypals\fr_fr_resources.swf - 595,025 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 202,168 bytes after decompression
        ==> not sure what this next warning means.  I'm guessing I will later have to research it and return to 'secure' comm with server, but I'm ignoring for now
    Warning: Ignoring 'secure' attribute in policy file from http://fpdownload.adobe.com/pub/swz/crossdomain.xml.  The 'secure' attribute is only permitted in HTTPS and socket policy files.  See http://www.adobe.com/go/strict_policy_files for details.
    Resource bundle loaded for locale fr_fr  ==> at this point, we appear to have our French assets loaded successfully
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 202,168 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 1,303,976 bytes after decompression
    [Unload SWF] C:\ConnectedProducts\common-web\myname\bin-debug\myname.swf  ==> some runs see this, but others do not. I expect it is a timing issue of whether it is reached or not before the crash
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 794,898 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 194,635 bytes after decompression
    [SWF] C:\ConnectedProducts\common-web\myname\bin-debug\styles\mypals_style.swf - 261,589 bytes after decompression
    ==> everything looks fine up to here.  This is then when the third call to installCompiledResourceBundles occurs
    Error: Could not find compiled resource bundle 'components' for locale 'en_US'.
        at mx.resources::ResourceManagerImpl/installCompiledResourceBundle()[E:\dev\4.0.0\frameworks \projects\framework\src\mx\resources\ResourceManagerImpl.as:340]
        at mx.resources::ResourceManagerImpl/installCompiledResourceBundles()[E:\dev\4.0.0\framework s\projects\framework\src\mx\resources\ResourceManagerImpl.as:269]
        at mx.core::FlexModuleFactory/installCompiledResourceBundles()
        at mx.core::FlexModuleFactory/docFrameHandler()
        at mx.core::FlexModuleFactory/docFrameListener()

  • Reasons to Upgrade to Cap 4

    Ok, I want my boss to fork out for the upgrade to Cap 4.
    I've started to put together all the improvements to try and
    justify why I need the upgrade.
    My main ones so far are the Reviewing functionality, Backups,
    File Size Issue resolved (I think) and the improvements made to
    text editing. Oh, and adding graphics.
    Hoping some of you experts may have a few more for me.
    Haven't had time to play with the demo much.
    Cheers,
    K

    Hi there,
    Here is a complete list of what Adobe considers to be the top
    features in Adobe Captivate 4.
    SWF commenting Accelerate content creation cycles with
    real-time reviews in Adobe Captivate Reviewer, an Adobe AIR™
    application. Reviewers can add comments to your SWF files while
    playing them without having Adobe Captivate installed, and comments
    will be imported to the appropriate slides in your project.
    Project templates Use enhanced project templates that make it
    easy for subject-matter experts to contribute instructionally sound
    content without compromising structure.
    Customizable widgets Create more compelling learning
    experiences by including widgets such as games, question types, and
    more. Create widgets in Adobe Flash® Professional software,
    easily share them via Adobe Exchange®, and customize them to
    meet your content needs.
    Round-trip PowerPoint workflow Leverage existing
    Microsoft® PowerPoint® 2007 (PPTX format) slides in your
    projects. Import slides with audio and interactivity, and easily
    update the imported content from Adobe Captivate, keeping your
    PowerPoint and Adobe Captivate files in sync with the linked import
    option.
    Table of Contents and Aggregator Enable learners to easily
    navigate through content and track their progress with a multilevel
    Table of Contents. Also, use the Aggregator to combine multiple
    content modules to create a complete e-Learning course.
    Text-to-speech functionality Keep learners tuned in to your
    content thanks to automatic voice-over functionality that turns
    text to high-quality speech.
    Variables and Advanced Actions Use Variables to personalize
    the learning experience by using learner-provided data, such as the
    learner’s name, throughout a scenario. Use Advanced Actions
    to further configure and modify the experience by enabling
    conditional actions, or more than one action in an interaction.
    Expanded output options Embed Adobe Captivate movies in Adobe
    PDF files to enliven text-based instructional content, or embed
    your movies in Adobe® Flex® content using Adobe®
    ActionScript® 3.0 publishing. Output AVI files for streaming
    on the web or publishing to YouTube™.
    Adobe Photoshop layer support Preserve layers in imported
    Adobe® Photoshop® (PSD) files so you can easily edit or
    animate individual image areas for the effect you want.
    Streamlined workflows and enhanced usability Use workflow and
    usability enhancements, including inline editing of text captions,
    templates to standardize the look and feel of projects, panning to
    optimize viewing on small screens and devices, support for
    right-clicking in simulations, drawing tools and image editing, and
    improved accessibility features.
    Best - Mark

  • Combien de temps faut il a apple pour retourner un document

    Bonjour,
    j'ai un probleme qui doit etre facile à resoudre, trop de baton chez apple.
    Le telephone portable a été changé par apple, je n'ai pas informé orange bissdu changement de telephone.
    Actuellement le telephone ne peut etre débloqué, orange business ne veut pas le débloqué car pour eux le telephone n'existe pas.
    Comment reccuperer un document aupres d'apple
    merci

    Hello pierre63520,
    My sister asked the release of its iPhone 4 SFR for 2 weeks and still no possibility of using the iPhone, Vodafone can not give us information because they say they have done everything on their side and after that is spring Apple Iphone this is my Christmas present so I'd use it quickly enough,
    Could you tell me how ITUNES see if the iPhone is unlocked or if I should go to my operator to make me a SIM card iPhone (if it is not I would not have unlocked phone)
    Do not hesitate if you do not understand everything,
    Thank you for your help, - Is this what you said?
    ITUNES ne peux pas vous dire si le téléphone est verrouillé. Vous devrez vous rendre auprès de votre opérateur.
    Jack
    <Edited by Host>

  • Swf dans PDF Comment faire pour que le swf ne ce redimensionne pas ?

    Bonjour
    Je travail sur la version CS5 de InDesign et voilà mon souci.
    Quand on import un swf dans le fichier et qu'on export en PDF interactif  le swf fonctionne correctement, bien sûr, sauf avec un gros problème de  redimensionement du swf qui me semble incontrolable, à moins que qu'un  génie d'ici ne nous explique ce qui se passe et comment y remédier.
    Comment créer un fichier PDF a la bonne taille (du swf) ?
    Comment faire que le swf ne se redimensionne pas ?
    J'ai cherché sur plusieurs forum ou documentation et je n'ai rien trouvé qui reponde à mes questions.
    Bien à vous

    Bonjour,
    Je crois que c'est un bug connu.
    L'autre possibilité pour contourner ce problème est d'utiliser Acrobat. Ouvre le document PDF qui contient TOUS les éléments SAUF le SWF et ajoute le SWF dans Acrobat.

  • Swf game and firefox can not run them only download them

    I download some flash game and , all of them are swf and  I open them by firefox , but with firefox I can not play these games
    what is problem ?

    Ok, I found a "fix". kurt was right:
    kurt wrote:Downgrade to shared-mime-info 1.1-1
    First of all, let's get something good to test.
    http://www.homestarrunner.com/sbemail35.swf
    In the file "/usr/share/mime/packages/freedesktop.org.xml", find the section for "application/vnd.adobe.flash.movie". Delete it all (from "mime-type" to "/mime-type") and replace it with this:
    <mime-type type="application/x-shockwave-flash">
    <comment>Shockwave Flash file</comment>
    <comment xml:lang="ar">ملف Shockwave Flash</comment>
    <comment xml:lang="be@latin">Fajł Shockwave Flash</comment>
    <comment xml:lang="bg">Файл — Shockwave Flash</comment>
    <comment xml:lang="ca">fitxer Shockwave Flash</comment>
    <comment xml:lang="cs">Soubor Shockwave Flash</comment>
    <comment xml:lang="da">Shockwave Flash-fil</comment>
    <comment xml:lang="de">Shockwave-Flash-Datei</comment>
    <comment xml:lang="el">αρχείο Shockwave Flash</comment>
    <comment xml:lang="en_GB">Shockwave Flash file</comment>
    <comment xml:lang="eo">dosiero de Shockwave Flash</comment>
    <comment xml:lang="es">archivo Shockwave Flash</comment>
    <comment xml:lang="eu">Shockwave Flash fitxategia</comment>
    <comment xml:lang="fi">Shockwave Flash -tiedosto</comment>
    <comment xml:lang="fo">Shockwave Flash fíla</comment>
    <comment xml:lang="fr">fichier Shockwave Flash</comment>
    <comment xml:lang="ga">comhad Shockwave Flash</comment>
    <comment xml:lang="gl">ficheiro sockwave Flash</comment>
    <comment xml:lang="he">קובץ של Shockwave Flash</comment>
    <comment xml:lang="hr">Shockwave Flash datoteka</comment>
    <comment xml:lang="hu">Shockwave Flash-fájl</comment>
    <comment xml:lang="id">Berkas Shockwave Flash</comment>
    <comment xml:lang="it">File Shockwave Flash</comment>
    <comment xml:lang="ja">Shockwave Flash ファイル</comment>
    <comment xml:lang="kk">Shockwave Flash файлы</comment>
    <comment xml:lang="ko">Shockwave 플래시 파일</comment>
    <comment xml:lang="lt">Shockwave Flash failas</comment>
    <comment xml:lang="lv">Shockwave Flash datne</comment>
    <comment xml:lang="ms">Fail Shockwave Flash</comment>
    <comment xml:lang="nb">Shockwave Flash-fil</comment>
    <comment xml:lang="nl">Shockwave Flash-bestand</comment>
    <comment xml:lang="nn">Shockwave Flash-fil</comment>
    <comment xml:lang="pl">Plik Shockwave Flash</comment>
    <comment xml:lang="pt">ficheiro Shockwave Flash</comment>
    <comment xml:lang="pt_BR">Arquivo Shockwave Flash</comment>
    <comment xml:lang="ro">Fișier Shockwave Flash</comment>
    <comment xml:lang="ru">файл Shockwave Flash</comment>
    <comment xml:lang="sk">Súbor Shockwave Flash</comment>
    <comment xml:lang="sl">Datoteka Shockwave Flash</comment>
    <comment xml:lang="sq">File Flash Shockwave</comment>
    <comment xml:lang="sr">Шоквејв Флеш датотека</comment>
    <comment xml:lang="sv">Shockwave Flash-fil</comment>
    <comment xml:lang="uk">файл Shockwave Flash</comment>
    <comment xml:lang="vi">Tập tin Flash Shockwave</comment>
    <comment xml:lang="zh_CN">Shockwave Flash 文件</comment>
    <comment xml:lang="zh_TW">Shockwave Flash 檔</comment>
    <alias type="application/futuresplash"/>
    <generic-icon name="video-x-generic"/>
    <magic priority="50">
    <match value="FWS" type="string" offset="0"/>
    <match value="CWS" type="string" offset="0"/>
    </magic>
    <glob pattern="*.swf"/>
    <glob pattern="*.spl"/>
    </mime-type>
    And now Firefox will play local SWF files properly. I'm sure there's a better fix for this. Maybe someone smarter than me can find it.

  • SWF not working properly when sent to acrobat

    I am trying to place a simple swf file in a layout but Acrobat refuses to display it at the correct size. It shows me the correct dimensions in the import dialog, but then seems to ignore them. The final placed object comes in at 320x240 no matter what.
    As for where the SWF is coming from, how it was made etc, I have tried multiple methods for making this work. Here's the list:
    1. Created an MSO in Indesign, exported the mso element as a SWF and replaced the swf in the document. FAIL - Transparency breaks and the size is wrong
    2. Retried about 5 versions of the about with opaque background and various sizes. FAIL - same problems
    3. Built the SWF in Flash Catalyst, placed in InDesign FAIL - same problems
    4. Used Catalyst swf, place directly in Acrobat 10. Import works, transparency works...FAIL - always resized to 320x240
    I am using Indesign CS5 and Acrobat 10 on Mac OS X 10.6.6
    I could really use some help here. I placed this same note in the acrobat forums, because I am getting pretty desperate here. I am supposed to deliver the final client file for this project today and this represents one of the key showcase elements!
    Thanks.

    Ok. So after reading through a pile of forum posts and blogs I believe I may have my answer. Though I can't say I like it much.
    It seems that Acrobat does not render video/swf pixels at 1:1 (See This Forum Comment) and the disparity causes the image to appear distorted. The only fix I have really seen so far is to play with the zoom level in acrobat until the image comes into focus. A point that is different on every screen.
    Here are some of the posts I found most helpful:
    http://acrobatusers.com/forum/rich-mediaflash/video-quality-degraded#comment-72985
    http://acrobatusers.com/forum/rich-mediaflash/original-swf-size-distortion-import
    http://forums.adobe.com/message/3379809#3379809
    http://forums.adobe.com/message/3411262#3411262
    I still want to think that there has to be a way to force a 1:1 pixel ratio, but I have not seen any solutions for doing so. There was a suggestion regarding setting the flash stage to NO_SCALE, but I am not entirely sure what the suggested implementation involves.
    I would still love to hear ideas on how to create a better solution to this, but for now I suppose I will have to live with it as is.

  • Up a score of one insert swf in captivate

    I do not control many variables in captivate and wanted to know how to do the following scenario:
    I realize a quiz of 10 questions via captivate I want to know the score at the end.
    When the student answers correctly, before moving on to the other question it accesses a swf animation style is a penalty shootout game where he will be able scored 1 point if he succeeded. I will wish that this score is accumulated each time the learner brand appraisse the final result screen on a line other than the result of the quiz. For only the score against questions ascend to lms. What line of code do I insert in my swf file so that captivate retrieves the score via the swf animation?

    That means the file path or link to the original file has been broken.   Apply the two fixes below in order as needed: 
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Using TextSnapshot class on a loaded SWF on an iPad

    Hello, I am creating an iPad app. I am loading SWF files using a Loader object, then placing them in a movieclip and setting a SWFLoaders source property to this clip. Before I add the clip to the SWFLoader control I am using the TextSnapshot class on it, to retrieve an array with the getTextRunInfo method.
    All this works fine when I test it on my desktop machine. However, on the iPad it causes the app to crash when a control using this clip is added to the stage. Can you still use TextSnapshot with an iPad, is there a workaround for this? Thanks for your help.

    We are a university. most of our books are SWF files. We have been using iPad/FlexBuilder 4.5 to successfully view the contents of these books.
    All navigation (i.e gotoandstop(page), etc work fine. Gestures for pageforward/pageback, zoom, pan work fine also.
    Not sure I understand your comment.
    However, there IS a specific problem with text snapshot. Below is a short code piece used to highlight text on a page.
    If you remove the failing line everything works fine.
    If you "debug" the iPad device everything works fine when you execute the code on the iPad
    if you create a release build, when the application starts and the "findtext" line is executed the "app" freezes. No error message. The try/catch does not seem to catch any error.
    This is something we really need for our app. If this is a bug how should we report it.
    Thanks for your help.
      public function highlightText(txt:String):void {
       var start_pos:int = 0;
       try {
        if (txt == null || txt.length == 0) { return; }
        infoMessage("highlightText: " + txt);
        allText = _libMC.textSnapshot;      
        allTexts.push(allText);  // no reason for this but must do to make work 
        start_pos = allText.findText(start_pos, txt, false);     <<<<<< Failing line ====================================
        infoMessage("start_pos: " + start_pos);
       catch (err:Error) {
        infoMessage("error: " + err.message);   
       finally {
        infoMessage("finally");

  • How do I re-number comments in the Comments Summary page?

    Hi,
    When I create a comments summary page, Acrobat 9 organizes comments by page number and numbers them beginning at "1" for each page. Can I change the settings so that I can have the comments organized by page but numbered continuously? In other words, I want to be able to look at the comments on, say, page 7 - but I don't want the first comment on page 7 to be numbered as "1". If it is the 35th comment in the document, I want it to be numbered as "35".
    Does anyone know how I can accomplish this? Any help is appreciated. Thanks!

    You can delete them and re-add them accordingly or you can use random which would show the random order of images.
    Another workaround can be be done using layers, where you can drag the image to the desired position which you want to show in order with slideshow.
    I have created a short video for you , please download from here :
    https://www.dropbox.com/s/v4yto079hh7rc2y/slide.swf
    Thanks,
    Sanjit

Maybe you are looking for

  • SRM MDM: Workflow Unlaunch while performing the Automatic data transfer

    Hi, We are trying to import some data from R/3 4.6 C by configuraing remote system as ERP and creating Port based based on the XML Schema in the SRM MDM Catalog. We have created work flow to validate the above pulled data accuracy into data manager.

  • Group output data with cftable

    I can group data with breaks between each group with the following syntax: <!--------------------------------------------------------------------------------------> <cfoutput query="GetResults" group="site" > <table border="0" cellspacing="0" cellpad

  • I keep getting this message...

    I am using the trial version of Lightroom 1.1 and have imported about 400 files for a start, all went well at first but I now keep getting the following message when I try to view the catalogs 'No photos in selected folders' and all the folders menti

  • What's the yosemite equivalent of PVImagePrintingScaleMode?

    Hi! I always print my PDF documents with a size of 100% in Preview. In osx prior to yosemite, I used defaults write how to set default paper print size to always 100% ? defaults write com.apple.Preview PVImagePrintingScaleMode 0 It seems that this is

  • Added posting date period in LDB SDF!!

    Hi, i have a kinda req where i have to modify the SDF and add posting date period on the selection screen n modify the select queries accordingly therin.so i hav copied the LDB , which all places shall i make the changes to accomodate posting period