SWF Support

You want to check if the browser Blackberry (OS 4.2 +) supports produced from Flex/Flash swf format. If there are a few constraints, please share.

Hi vsh.

Currently, Flash is not supported on any browser BlackBerry.  It was announced that flash will rely on the new BlackBerry PlayBook

Tags: BlackBerry Developers

Similar Questions

  • synchronize the sounds of streams?

    Hi all.
    I have a main scenario with an animation of a period of 2 or 3 minutes
    I wanted to use an MP3 as background music. But the music must be Sync exactly at certain times of the animation.
    I tried: "new layer" and put in the new layer the sound MP3 as alarm event (because the event sounds must download completely before you start... therefore I full however once it would be perfectly synchronize). But mistaken! Depending on the number of Apps open in the PC,... the sound CPU usage sometimes ends sooner or later to the animation.
    This is: If a set sound in the layer as its flow always perfectly synchronize anything? Another thing... How can I synchronize a long animation with sound in flash?

    Thanks in advance to all for your answers :)

    barleby_sp,

    > I read in many places that the flows sound downloads again
    > whenever it is used in the music video.

    The word "downloads" is misleading in this context. Assuming that these
    the audio files are included in your library, they download only once. During the
    HTML page sends a request to the server of the file SWF, SWF file
    downloads (once) to the user's computer.

    SWF supports progressive download, which means that the main timeline can
    start playing the SWF file even before happens completely on the user's computer
    ... which is a nice feature. If you're careful how you organize the content on
    the main timeline, you can spread out your biggest assets to allow the
    user view content without too many gaps.

    In any case, once that the SWF file is downloaded, all of its assets - internal
    including audio - are also downloaded and contained within the SWF. If
    the chronology of revists a frame that contains its the audio stream IS NOT
    Download again from the server. He didn't need, because it is the
    SWF! What it does, it's charge in the memory. Conversely, an already-played
    Its event maybe still in memory.

    > Yes, does that mean that if the MP3 of the songs has been completely
    > listened once, if he's still playing once download again?

    This might happen if the MP3 was an external file. In this case
    would you use ActionScript to ask an MP3 file directly from the
    Server. Here, you simply reference you an asset from the library which
    content used is included in the SWF file.

    > And, second, how a flow is different if I load it with:
    >
    > var my_sound:Sound = new Sound();
    > my_sound. loadSound ("song1.mp3 and located", true);
    >
    > instead of embbeding in the timeline?

    It's an unfortunate double use of the same word 'flow' and he
    does not mean the same thing as a property of synchronization of the timeline (in fact, it)
    doesn't mean that same 'flow' in what I think of the * real * definition of the
    the word).

    What you are referring is the second parameter of the
    Sound.loadSound () method, which you set to true in this example. In the
    documentation, this second parameter refers to calling Adobe streaming
    (true) or not (false) continues for the audio file being loaded. Even
    If the docs call this broadcast, it still is just one example of
    progressive download. What this means is that the requested MP3 file can be
    the order to start playing before the entire file downloads. In general,.
    MP3s will start playing after hesitating a moment, when enough data have
    been buffered, if you set the second parameter to true. Otherwise, a
    several MB file may take several minutes to start to play.

    True streaming - the world of Flash - occurs when the file is
    has requested through the RTMP instead of HTTP protocol (using HTTP in the)
    example of code you have shown and that you use HTTP to your documents HTML, jpg
    GIF, CSS files and the SWF itself). RTMP is supported by the server
    software such as Adobe Flash Media Server, which transmits video and audio to the
    user's computer without these files for download in the form of files.
    Different story. To my thinkgs, * it's * streaming. This second parameter
    should be called something like 'play automatically' or 'progressive '.
    Download", but those who are a bit wordy. ;)

    If you ask your MP3 file with ActionScript, even with the
    'streaming' parameter set to true, the audio only WILL NOT be synchronized with
    the main scenario. Even though it shares the same name, it is not a script
    How to duplicate the Stream property of the synchronization parameter.

    David Stiller
    Adobe Community Expert
    Dev blog, http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Hi, I'm working on a Prezi and insert files .swf animation complex. Prezi no longer support this type of file. Does anyone know of a work around?

    Hi, I'm working on a Prezi and insert files .swf animation complex. Prezi no longer support this type of file. Does anyone know of a work around?

    You should probably post to a forum of prezi or ask the prezi support.

  • Reflow support swf embed or import?

    We have a few movies and swf we would like to include in the page will be redistributed support this?

    Currently we are looking at edge animate and import files of the OAM. You can always insert a box as a placeholder for where you would have framed the movies and the swf and replace the code when you go to prodcution. We can add support for more generic object html after the insertion of the OAM, but I don't know when it will come on our backlog.

    Hope that helps and thanks for using Relfow!

    Chris

  • 3.5 AIR cannot load SWF graphics and app: folder "Application areas don't are not supported.

    "Error #3747: several areas of application are not supported on this operating system." appears and breaks my app when I'm trying to do something as simple as load a URL to use a graph to the File.applicationDirectory on iOS on AIR 3.5. I'm just trying to load graphics files included in my application.

    I don't know why it happens on "Several application areas." I'm not trying to do the fancy stuff, and exactly the same thing worked on AIR 3.4 and below.

    What is this error and how to fix it? No information appears on this topic in search engine result.

    Read notes of version 3.5 of AIR, there is how you should set the loaderContext in order to make it work.

  • AS3 code to support the player swf with control buttons

    I need code for flash player.the player includes play, pause, stop, next and previous with seek bar and time control.i have try my code that does not load my swf.. the code is...

    function swfLoadedHandler(e:Event):void {}

    trace ("loaded swf");

    currentSWF = MovieClip (swfLoader.content);

    playerSwf.btForward.addEventListener (MouseEvent.CL ICK, button_forward);

    playerSwf.btRewind.addEventListener (MouseEvent.CLI CK, button_rewind);

    playerSwf.btPause.addEventListener (MouseEvent.CLIC K, button_pause);

    playerSwf.btPlay.addEventListener (MouseEvent.CLICK, button_play);

    currentSWF.addEventListener (Event.ENTER_FRAME, checkLastFrame);

    }

    function checkLastFrame(e:Event):void {}

    If {(currentSWF.currentFrame is currentSWF.totalFrames)

    currentSWF.stop ();

    }

    playerSwf.sliderMc.width = (currentSWF.currentFrame/currentSWF.totalFrames) * 140;

    }

    function button_forward(e:Event):void {}

    currentSWF.nextFrame ();

    }

    function button_rewind(e:Event):void {}

    currentSWF.prevFrame ();

    }

    function button_pause(e:Event):void {}

    currentSWF.stop ();

    }

    function button_play(e:Event):void {}

    currentSWF.play ();

    }

    swfLoader.load (swfFile);

    playerSwf.container.addChild (swfLoader);

    function closePlayer(e:MouseEvent):void {}

    playerSwf.container.removeChild (swfLoader);

    removeChild (player);

    }

    }

    help me with another code to run my swf with player... and I had tied my swf and player pls help me pls refugees...

    Make your agreement code with the installation of your file.  If the file you provided for viewing is the file that the code does not work with, it's understandable, because the code does not reflect the items in this file.  Especially given that no such a code in this file, but also because if the code that you have demonstrated is in this file, it does not target properly objects... mainly because of the absence of an object named playerSwf that your code uses to target all objects through.

  • support of stadium imported main of the SWF, flv unloading of the

    I have my main.fla that matter external SWF files contain the flv. I have three buttons to navigate the main timeline of images 2-4. Images 2-4 an external swf is loaded into a clip vacuum film through this code. Each loaded swf acts as a menu with a few beautiful vidoes loading in the background.

    The problem I found is that the flvs continue to play as I navigate between menus, which makes the swf/fla main slow down because the pc no longer works hard to deliver all the stuff running in the background. I added this code to frame 1 of my empty clip that is in my library that has the instance name "menu1".

    I get the error "access to cancels definition property mc1.

    I have the source files for my site here if you take a look and see what I'm doing wrong. I removed this code so that I don't get the error and have tried other things to no avial.

    http://www.coldbloodedsovereignty.com/site.zip

    ///////////////////////

    var loader: Loader = new Loader();
    addChild (loader);
    Loader.Load (new URLRequest (MovieClip (this.parent) .src));

    ////////////////////

    ///////////////////////////////////////////

    var src:String = "external.swf";

    Menu1.addEventListener (Event.REMOVED_FROM_STAGE, f);

    function f(e:Event):void {}

    MovieClip (e.target).loader.unloadAndStop ();

    }

    After some trial and error, I have the winning code and the solution. My action script resided inside the physical video I created that was charge my external swf. I decided to try to work around it and put the code on the main timeline of the main SWF and it worked! Thank you for assiting me everyone.

    var myrequest2:URLRequest = new URLRequest ("external.swf")

    var myloader2:Loader = new Loader();
    myloader2. Load (myrequest2);
    stage.addChild (myloader2);
    myloader.unloadAndStop ();

  • Support full-motion-swf files

    Hello
    Is it possible to create a single swf file, even if the project contains partial complete movement records? Thanks for your time and your answer adavance. Ozlem

    Hi Ozlem

    There may be. Here's how I accomplished it. This technique was developed by fellow Adobe Certified Instructor John Daigle.

    Publish your project to a temporary location. To access this folder.
    When you publish, it is important that you check your dialog box to publish Flash Player 7 shows that the version of the target.
    After you have published, insert a space before each slide with video full motion (FMV). Configure the playback of the slide time correspond to the slide of the JVM.
    Then place the corresponding JVM element that you find in the folder is where you posted earlier. After you insert, delete the original JVM slide. Rinse and repeat until all JVM slides have been removed and inserted corresponding slides with the FMV of the temporary folder.

    Publish again (and still make sure that you publish to Flash 7 like target).

    As I said previously, this process worked for John and it works for me. But I said it here before, and it failed for one or two people. I don't know why. There are a few small animations may need tweaking if you use them.

    I hope that you will succeed with it... Rick

  • Firefox does not display the .swf files

    Hello

    Everything worked quite well in Firefox and then all of a sudden it stopped simply to display .swf files. Where they should be is simply empty. On Web sites with a background, I can see the background through where the .swf file should be. This includes the locally saved files as well as all Web sites with a .swf file that is supposed to play.

    I don't want to suddenly quite literally, as it was in the middle of a browsing session. I changed nothing, just... one minute they worked very well, the next they completely arrested. It is clear that the program is to recognize that something is supposed to be there, like Adblock appears a little tab 'Block' on where the file should be, but again, this space is completely empty. He's not black, it is transparent.

    I completely uninstalled reinstalled from zero and 'upgrade' Shockwave it three times now, all without effect.

    You can check for problems with the current versions of the plugin Shockwave Flash and try this:

    See also:

    Start the computer in safe mode Windows with network support (on the startup screen, press F8) to see if it has an impact.

  • Swf file opened from an Sd Card

    Hello! Firefox supports files Swf Inc. online flash games.
    But l must open local swf file saved on my Micro-Sd Card in the phone. How can I do? Please, help me

    Go to the toolbar and type file:// url and press ENTER.
    It should open your directory. now, you put in the folder and start playing.

  • Hey. I created my own Web site in frontpage 2003 and I added a video in .swf format. It plays ok and all the stuff. Howvever, it behaves differently in Internet Explorer than in Mozzila. more details below

    the HTML code of the said video is

    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="320" height="240" id="player1" align="middle">
    <param name="movie" value="razor_test.swf"/>
    <param name="quality" value="High"/>
    <param name="bgcolor" value="#ffffff"/>
    <param name="play" value="false">
    <param name="loop" value="false">
    <noscript><a href="http://newfreescreensavers.com/download-free-screensavers.html">screensavers free</a></noscript>
    <embed src="razor_test.swf" menu="true" quality="high" bgcolor="#FFFFFF" width="320" height="240" name="player" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"/>
    </object>  

    in IE, it works like a charm. not auto play, do not loop and waits for to do me a right click on it to play/loop

    in mozzila autoplay for that, it looped, unless that right cliks user to stop the auto play and loop.
    It starts as soon as the page load is complete. " bold text '

    Mozzila also seems to be unable to play the sounds of information from Web pages and IE can.

    Your EMBED code is not the parameters set and the loop (not sure if incorporating support these).

    Maybe use an object for Firefox.

    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="320" height="240" id="player1" align="middle">
    <param name="movie" value="razor_test.swf"/>
    <param name="quality" value="High"/>
    <param name="bgcolor" value="#ffffff"/>
    <param name="play" value="false">
    <param name="loop" value="false">
    
    <!--[if !IE]>-->
    <object data="razor_test.swf" width="320" height="240" type="application/x-shockwave-flash">
    <param name="allowScriptAccess" value="SameDomain">
    <param name="quality" value="High"/>
    <param name="bgcolor" value="#ffffff"/>
    <param name="play" value="false">
    <param name="loop" value="false">
    </object>
    <!--<![endif]-->
    
    </object>
    

    BGSOUND does not work in Firefox: http://kb.mozillazine.org/Background_music_does_not_play

    You must use an object instead:

    <object data="music.mp3" type="application/x-mplayer2" width="0" height="0"><param name="filename" value="music.mp3"> <param name="autostart" value="1">
    </object>
    

    Or:

    <embed type="application/x-mplayer2" src="file.mp3" height="0" width="0" autostart="1">
    <noembed><bgsound src="file.mp3" loop=-1></noembed>
    
  • How to remove 2 malwareitems - Trojan:win32 / Alureon.FE and feat: SWF / Blacole.J

    Running XP and using MIcrosoft Security Essentials scanned and removed 6 elements of malware but allowed 2 - Trojan: win32 / Alureon, FE and feat: SWF / Blacole.J I don't have the desktop icons or start menu programs. I get online via the Microsoft Sec Ess icon.  Can I recover my data?

    Since you are usng Microsoft Security Essentials free support options are available for assistance in removing the remaining elements.

    Trojan: win32 / Alureon, FE
    http://www.Microsoft.com/security/portal/threat/encyclopedia/entry.aspx?name=Trojan:Win32 / Alureon.Fe

    Feat: swf / Blacole.J
    http://www.Microsoft.com/security/portal/threat/encyclopedia/entry.aspx?name=exploit%3ASWF%2FBlacole.J&ThreatID=-2147315899

    Visit the Microsoft Solution Center and antivirus security for resources and tools to keep your PC safe and healthy. If you have problems with the installation of the update itself, visit the Microsoft Update Support for resources and tools to keep your PC updated with the latest updates.

  • BlackBerry-airpackager with js instead of swf (project .air to work)

    I have a .air HelloWorld.air project.  It installs and works perfectly (just prints Hello World to the console, and creates a window with Hello World html as its prinout).  It has 3 files: HelloWorld - app.xml HelloWorld.html and AIRAliases.js.

    The code of the HelloWorld - app.xml:

      1 
      2 http://ns.adobe.com/air/application/2.5">
      3    com.sample.HelloWorld 
      4    HelloWorld
      5    HelloWorld
      6    1.0.0
      7    
      8       HelloWorld.html 
      9       true
     10       
     11       
     12    
     13 
    

    The code for HelloWorld.html:

      1 
      2 
      3    Hello World
      4    
      5    
     10 
     11 
     12    

    Hello World

    13 14

    Hey gesinger,.

    at the present time the playbook supports only Flash/AIR, which means that you must provide a SWF file so that your application is running. This is a very good explanation of why this is the case:

    http://supportforums.BlackBerry.com/T5/Tablet-OS-SDK-for-Adobe-Air/basic-question-about-air-Implemen...

    hope that things cleared up. Good luck!

  • SWF and Webworks blackBerry

    Hello

    I am trying to add a swf file at my request of Webworks, but I try to compile the .bar file the swf is not packaged with the folder bar. I need to set some function to activate the SWF with my webworks applications? Here's the code I m using to add the swf file

    
    
    
    
    
    
    

    Any ideas? How to make this run/load this swf file?

    Hello asadrehman.

    I think that flash is supported only in Playbook, not in smartphones.

    I would like to be able to add the flash content in a Webwork application for smartphones, that'd be great.

    I'm sorry.

    Kind regards

  • Having problems with signature of a file flash swf for Whiteboard Tower Defense

    I presented the Whiteboard Tower Defense game well before March 15. Apparently, I have problems he signed. The process runs, ends and I submitted it, but I thought it was supposed to generate a lot of files more than what he has done. I sent applications for blackberry app world, and after several days, I was told to email of support to development. It's two weeks since I sent dev support and all I got was an automatic reply telling me that my case number is INC000022756153. According to my email of rejection that I had to have the files:-RDK. SF - RDK. EC - MANIFEST. MF - AURTHOR. SF - AUTHOR. EC, I tried several times now to sign my application. I do not get the additional files below. I start with: customer-RDK - 3571298317.csj playbookkey.p12 blackberry - tablet.xml WTD_icon.png WTD_splash.png whiteboardTD_PB - app.xml whiteboardTD_PB.swf the only output I get is a file named "BAR5971919570144853211.tmp" and the .bar file. Orders that I run are: "C:\Program Files (x 86) \Adobe\Adobe Flash Builder 4.5\sdks\blackberry-tablet-sdk-0.9.3\bin\blackberry-airpackager" - package whiteboard.bar - josh - installApp-device 192.168.132.128 password - launchApp whiteboardTD_PB - app.xml whiteboardTD_PB.swf blackberry - tablet.xml WTD_splash.png WTD_icon.png "C:\Program Files (x 86) \Adobe\Adobe Flash Builder 4.5\sdks\blackberry-tablet-sdk-0.9.3\bin\blackberry-signer"--verbose - cskpass mypassword1 - "C:\PB\playbookkey.p12" keystore - storepass mypassword2 "C:\PB\Whiteboard TD\whiteboard.bar" RDK what stage should create additional files listed? And since getting help on this took so long, does that mean that I am more qualified to receive a playbook for free even if I got my app presented early? Josh.

    It's quite unreadable, plase use the Insert button Code to paste the code, so you could read something like this:

    "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.5\sdks\blackberry-tablet-sdk-0.9.3\bin\blackberry-airpackager" -package whiteboard.bar -password josh -installApp -device 192.168.132.128 -launchApp whiteboardTD_PB-app.xml whiteboardTD_PB.swf blackberry-tablet.xml WTD_splash.png WTD_icon.png
    

    After you run the previous step, you should have the whiteboard.bar. If you open this file with WinRar .bar, you will see the META-INF files and the air. META-INF will contain only MANIFEST. MF

    Next step would be

    "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.5\sdks\blackberry-tablet-sdk-0.9.3\bin\blackberry-signer" -verbose -cskpass mypassword1 -keystore "C:\PB\playbookkey.p12" -storepass mypassword2 "C:\PB\Whiteboard TD\whiteboard.bar" RDK
    

    After this stage the META-INF folder must contain two files add - RDK. SF - RDK. EC

    And one last step (to sign as an author)

    "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.5\sdks\blackberry-tablet-sdk-0.9.3\bin\blackberry-signer" -keystore "C:\PB\playbookkey.p12" -storepass mypassword2 "C:\PB\Whiteboard TD\whiteboard.bar" author
    

    After this step the file META-INF must contain even two files add - AURTHOR. SF - AUTHOR. EC

    And you're good to go

Maybe you are looking for

  • Tecra M1 - Modem does not work (could not open a port)

    I have a problem: after you have reinstalled Windows XP and on my Tecra M1 drivers, modem does not work. It can not diagnose himself - he always comes a warning: "cannot open a port (COM). It can be used by another device or application. I installed

  • Puple screen on my laptop satellite?

    Hello, after logon my screen turns purple. A anyone.had something similar and it is quick and easy to fix?

  • ITunes artists is growing-different albums/songs

    Hi everyone (: Ive been having this problem for a while now.) I'm using the 12.3.2.35 version of iTunes. I have two pictures so that you can see my problem.                  As you can see, along the coast, there are 3 Alldays, which are the same per

  • BenQ E2420HD 24 "LCD

    I am trying to connect this monitor to an ASUS EEE slate using the mini HDMI connector.  When you start the Windows logo appears on the BenQ monitor, then the screen switches to the ASUS and the BenQ only reports "no signal". Looking at the display o

  • How can I tell what version of android I'm running?

    I am trying to download an app, but seem to be the only person who can't find it. I contacted the developers who told me that it must be because the android os, it's meant is 1.6 or higher. I tried to find out what version I am running, but don't kno