Can I run any .swf file on iphone using AIR SDK 2.6?

Hi,
Can I make any .swf file runnable on iphone/ipad using AIR SDK 2.6? If yes then how?
If not then why? And if I can not run each .swf file on apple devices then
what type of .swf file I can run on these devices?
Thanks,
Sampada

I have added my xml file there. Specification of icons is not mandetory. So I didnt specify them.
My .xml file code :
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<application xmlns="http://ns.adobe.com/air/application/2.6">
    <id>R68BU32HLS.helloWorld</id>
    <versionNumber>1.0</versionNumber>
    <filename>helloWorld</filename>
    <description></description>
    <!-- To localize the description, use the following format for the description element.
<description>
<text xml:lang="en">English App description goes here</text>
<text xml:lang="fr">French App description goes here</text>
<text xml:lang="ja">Japanese App description goes here</text>
</description>
-->
    <name>helloWorld</name>
    <!-- To localize the name, use the following format for the name element.
<name>
<text xml:lang="en">English App name goes here</text>
<text xml:lang="fr">French App name goes here</text>
<text xml:lang="ja">Japanese App name goes here</text>
</name>
-->
    <copyright></copyright>
    <initialWindow>
        <content>helloWorld.swf</content>
        <systemChrome>standard</systemChrome>
        <transparent>false</transparent>
        <visible>true</visible>
        <fullScreen>true</fullScreen>
        <autoOrients>false</autoOrients>
        <aspectRatio>portrait</aspectRatio>
        <renderMode>auto</renderMode>
    </initialWindow>
    <customUpdateUI>false</customUpdateUI>
    <allowBrowserInvocation>false</allowBrowserInvocation>
    <icon></icon>
</application>
You can refer :
http://forums.adobe.com/thread/848449?tstart=0
Same problem I posted b4 2 days.
Ok.tell me one more thing that whatever file I will download from net, its dimentions will
not be the same as iphone (230*480) , so how it's .ipa will directly get run on device?

Similar Messages

  • Upgraded to OSX 10.8.2 and now I can't run any downloaded dmg files.

    Upgraded to OSX 10.8.2 and now I can't run any downloaded dmg files. Says "the Following disk images couldn't be opened". and then say's there "isn't enough disk space" I'm pretty sure it has something to do with apps that are not approved by the app store. How can I turn it off?

    Select your hard drive in the Finder and choose File -> Get Info. What is the available space?

  • I just upgraded Flash Pro CC from 13.0.1.80 to 14.0.0.110. I can no longer run any .swf's The target is Player i13 or older, my computer has 16.

    I just upgraded Flash Pro CC from 13.0.1.80 to 14.0.0.110. I can no longer run any .swf's The target is Player i13 or older, my computer has 16.

    you mean you have a problem with the stand-alone flash player?  or you're having a problem with flash pro?

  • I can't get a SWF file that runs perfectly in browsers to run in the Business Catalyst environment

    My website has 3 parts. The initial HTML page which upon opening plays a video. The link below gives you that. 
    http://wrysmilebooks.businesscatalyst.com (It takes a few seconds to get going) 
      When the video ends a SWF file plays. The code below should show you what is supposed to happen. 
    http://wrysmilebooks.businesscatalyst.com/SWFbutton.html 
      The difficulty is that the SWF file won't automatically play from the website within Business Catalyst. It all works perfectly when I run the webpage in different browsers through Dreamweaver. Also if I just double click the website file where it sits on my computer... the resident browser picks it up and all is well.
    I've already exchanged quite a few e-mails with Business Catalyst support and InDesign support... (The SWF file was created using InDesign) ...but we don't seem to be getting anywhere. I can't think of anywhere else to go... so... here I am.
                                                                                                      Thanks,
                                                                                                       Michael McLaughlin

    Hello Liam,
             Let me see if I'm understanding you. Are you are saying that it
    takes a few seconds for the video to get going after the initial pages
    comes up? Yes, I'm aware of that, but it's only a few seconds and then it
    runs. Or are you saying that the SWF file takes time to get going?  I've
    opened the website http://wrysmilebooks.businesscatalyst.com, let the video
    run and simply waited, but nothing happens.
             However, I've noticed something curious. When I preview the Grid w
    flip html in BC, everything runs its course as it should. When I run it
    with http://wrysmilebooks.businesscatalyst.com there's something of a
    stall. The video has to end... the code to open the swift file is onended...
    but the fade to black at the end of the video never quite happens. A faint
    image which is not the last of the video can be seen on the screen. So...
    it appears the video hasn't really ended... so the SWF file doesn't run.
              So... does BC impose some limit on the length of a video when
    it's accessed through http://wrysmilebooks.businesscatalyst.com that it
    doesn't when its run within BC?
    On Wed, Apr 8, 2015 at 12:18 AM, Liam Dilley <[email protected]>

  • Problems running local swf files

    I recently developed problems running local swf files in
    Internet Explorer. This was working previously but recently it
    stopped working. Any ideas why the local files no longer work and
    how I can correct it?

    Hi Aquasue and welcome to our community
    In addition to the usual suspect fellow Adobe Community
    Expert Steve pointed out, the Flash player itself may be to blame.
    If you recently upgraded to the latest version (8 I believe) it
    imposes security particularly when using .SWFs locally.
    Click here to read a
    TechNote about it
    Cheers... Rick

  • How can i run a jar file as EXE on mouse click..

    *{color:#0000ff}how can i run a jar file as EXE on mouse click..is it possible in any way?????????{color}*

    amrit_j2ee wrote:
    *{color:#0000ff}how can i run a jar file as EXE on mouse click..is it possible in any way?????????{color}*Do you mean converting it from a jar file to an EXE file or do you mean that you would like to run the application by just double clicking it?
    If it's the latter then you need to make the jar file including a manifest.
    The manifest can be just a txt file with its content to be something like this:
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.1
    Created-By: Somebody
    Main-Class: NameOfTheMainClass
    Class-Path:
    X-COMMENT: Main-Class will be added automatically by buildTo make the jar file including the manifest, use something like this in your command prompt (of course you must have compiled your java file(s) first):
    jar cfm test.jar MANIFEST.txt NameOfTheMainClass.classAfter that you'd be able to run your application just by double clicking it.
    If you're a NetBeans user, you can build your standalone application by right-clicking your project and then going to properties => run => and choosing a Main class. After that right click on that project and "Clean and Build", locate the jar file in the "dist" folder and double click it =]
    Hope it helps,
    LD

  • Can't find any raw files to convert when I am using Adobe DNG converter

    Recently I purchased a new Olympus XZ-1 camera. I shoot exclusively RAW pictures (raw files for this camera are called .orf). Then when I tried to import these .orf files in the organizer of Phtoshop Element 8 it was imposible, nor then I could see those pictures in the organizer. By surfing on diffrent forums, I was able to figure out that Camera Raw included in Element 8, Camera Raw 5.5, is not supporting the .orf raw from Olympus and if I didn’t want to upgrade my Element 8 to Element 9 or 10, a simple alternative was to download Adobe DNG converter to convert all my .orf files into dng files, which could then imported by Element 8 and opened in Camera raw 5.5.
    I downloaded DNG converter version 6.6 and installed it in on my computer running on Windows 7. The problem is that once inside DNG converter, when selecting the folder where all my .orf files are (Select folder), I can't see any raw files to convert there! I tried to select a folder with NEF files instead (raw files from Nikon) and it is the same problem! Why can’t I see those files of mine I want to convert when I select the folder in DNG converter?
    I'm dying for help!
    Thanks a lot!

    When you are selecting the folder in the DNG converter, you only click on the folder.  You DON'T double click on the folder.  After you have set your options, and chosen the folder, you click on the Convert button.  It is only after you have clicked on Convert that you will see the list of files that are being converted.  You will also be able to see an indicator of the progress of the conversion.  It really does work.  Just to verify, the procedure I outlined is one that I did just prior to trying to write the instructions.  It really isn't rocket science.  Just choose the folder, only the folder, and click on the Convert button.
    You'll notice that the button prompts you to select the folder, it doesn't say anything about selecting a file.  You only select the folder that contains the files.  You will never see a list of files using this method.  If you only want to convert one or two images you can use the other method.  Leave the DNG converter closed, open the folder containing the DNG files in your operating system folder browsing utility, choose the file you want to convert, and drag it onto the icon for the DNG converter.  That is how you choose individual images.

  • Just upgraded to Lion, can't open any pdf file downloaded from internet that was fine with Leopard. How can I overcome this obstacle ?

    Just upgraded to Lion, can't open any pdf file downloaded from the internet that was fine with Leopard before. I just got a black screen when I clicked on a pdf icon on a given internet site, and same happened with several sites that I visited. How can I overcome this obstacle ?

    Try two things with Safari not running:
    1) Launch Adobe Reader, open its preferences, select the Internet category, and check the values under "Display PDF in browser using".  If it's checked, try unchecking it.
    2) Look in /Library/Internet Plug-Ins (at the top-level of your boot volume) for something names AdobePDFViewer.plugin.  If you see such a file, try moving it to a folder named "Disabled Plug-Ins" (if such a folder exists) or onto the Desktop.
    Then see how things work.

  • [Flex SDK in Linux] Errors running a .swf file

    Hi! Trying to set up flash development on my linux machine. Using FDT in Eclipse. The version of Flex sdk I have is 4.6.0.23201-2.
    I have in the first place had problems running the project. It gets terminated instantly and I get this output in my terminal:
    [Info] Listening to port 7935.
    Using Flex SDK 4.5 Debugger Adapter.
    [Info] Could not connect to the player, will try to connect for the next 72000 ms
    [Info] Listening to port 7935.
    [...etc etc...]
    [Info] Could not connect to the player, will try to connect for the next 8000 ms
    [Info] Listening to port 7935.
    [Info] Could not connect to the player, debug session stopped. Maybe you do not have the Debug Flash Player installed.
    Does "the Debug Flash Player" here mean Flex?
    And this is what happens when I run the .swf file that is compiled by FDT (Using Flex..), in Flex: http://justpaste.it/dlr3
    Any idea what could be the problem? Thanks!

    Hey Mark,
    Thanks for replying.  It's a standalone swf.  I'm still stuck on this issue.  It seems like it would be simple but it's baffling me.

  • Can't open any video file both by real player and ...

    From just a few days i can't open any video file by real player.Then i tried to open it from video centre.Same problem.I onLy hear the sound.Even i can't open that 3gp file which was played good by both real player and v'd centre before the problem started.Please help.

    Please mention your device model.
    In Love With My C6-01:Now running on Nokia Belle!

  • Can't open any *.exe files

    When I try to open .exe files I get an error message that says "This file does not have a program associated with it for performing this action. Create an association in the Folder Options control panel." I've gone to control panel > tools > folder options > file types and tried to set "exe" to "application," but that doesn't seem to work. Funny enough, I am able to open other types of programs like pictures, videos and PDF files, and if I open an html file directly I can open Firefox, but I can't open firefox.exe directly. I would like to run an antivirus or malware-check program but, of course, I can't open any .exe files.
    I am running Windows XP SP3 on a Lenovo Thinkpad T61.

    See if you are able to download DDS and save it to your desktop.
    Disable any script blocking protection
    Double click dds.scr to run the tool.
    When done, DDS.txt will open.
    Click Yes at the next prompt for Optional Scan.
    Save both reports to your desktop.
    Please note: You may have to disable any script protection running if the scan fails to run. After downloading the tool, disconnect from the internet and disable all antivirus protection. Run the scan, enable your A/V and reconnect to the internet. Some instructions for disabling AV are HERE.
    Please include the contents of the following logs by copying and pasting the text of each into your next reply:
    DDS.txt
    Attach.txt
    * NOTE: You may need to use another computer to download DDS to a CD or USB flash drive and transfer it to the Desktop of the computer with the problem.
    Based on what shows up in those logs I will post additional advice.
    ThinkPad: T530 / X1 Gen 2 / Helix - Yoga: Tablet 2 Pro (Win) / Yoga 3 Pro
    If you find a post helpful and it answers your question, please click the "Accept As Solution" button.
    Lenovo Advocate ~ I am not employed by Lenovo or Microsoft. I am a volunteer.
    Microsoft MVP - Consumer Security
    SpywareHammer

  • Can't open any excel files after installing Snow Leopard

    I can't open any excel files after installing Snow Leopard. Is anyone else having this problem?
    I have a standard iWork '08 install. Has anyone experienced? And better yet, know of a fix?

    Welcome to Apple Discussions
    Most users who have had a problem opening Office files with the iWork apps after upgrading to Snow Leopard have the problem fixed by updating to the latest versions. For iWork '08 that is Pages 3.0.3 & Numbers 1.0.3. For iWork '09 it's Pages 4.0.2 & Numbers 2.0.2. I don't use Keynote, but it should also be updated. If you're not running the latest versions & Software Update says your software is up to date, make sure the applications are where the installer initially put them. The updaters are very picky. If the location is not where the updater is programmed to look or if the folder doesn't have the name the updater looks for, it will not work. The applications cannot be renamed or moved. They must be in the iWork '08 or iWork '09 folder in Applications. That iWork folder must be named iWork '08 or iWork '09. If it doesn't have the '08 or '09 Software Update won't find them & the updaters won't work.

  • Hi there! I would like to ask if is there anyway that I can see all of the file from IPHONE 4 using over my desktop?

        Hi there! I would like to ask if is there anyway that I can see all of the file from IPHONE 4 using over my desktop?

    Apps must be updated using the Apple ID used to originally download them to the device.
    If you cannot or will not use the old Apple ID, then you can delete the app, and then download it again using the current Apple ID.  Be aware that any paid apps will have to be purchased again.

  • How to run any java file...

    i want to run .java file..
    suppose i have some classes then i want to run those classes by providing just the name of the class..
    my program should run any .class file by just selecting the name of the class..

    rajeev-usendi wrote:
    it can be any .class file..
    it can have a main method() or init()...
    basically i want to execute that .class file and dynamically i want to access its variables which has been defined public..Why don't you just "execute" these class files within the program itself and keep the class files within the same project/jar file? Call the methods dynamically to access it's variables.
    I think could run any .java file by implementing it as Runnable and starting them as threads from the main program. I'm not sure how you'd get it to the poitn where you could .start() it though.

  • Help, I can't sync any music to my iPhone 5s or iPad 2 ! :( it says it's finished sync but the music is greyed out and not on my devices.. I've tried unchecking the music and doing it manually. Nothing works. I took it to Apple store Robina no help..

    Help, I can't sync any music to my iPhone 5s or iPad 2 ! it says it's finished sync but the music is greyed out and not on my devices.. I've tried unchecking the music and doing it manually. Nothing works. I took it to Apple store Robina no help..

    So I have found a common denominator to this phenomenon. After having the same problem, I started to recopy my playlist of 500+ songs in groups of 10-20, 30+, 75+, and then over a 100+. Any music I have purchased from iTunes won't copy, but everything else did. Unsure if I made a playlist called "Purchased" at some point or this is an iTunes default, I also noticed it had some of the songs contained in my other playlist and was showing on my iPhone. Regardless of what I did such as dragging music from that playlist to the other and clearing songs from that playlist, I removed it altogether from the iPhone itself vs. doing through iTunes. After that, music copied fine to my playlist.
    So, my theory is that iTunes is getting tripped up on purchased tracks already showing on the phone and all songs are showing grayed out/dotted circle because iTunes can't resolve the conflict with purchased tracks.
    Hope this makes sense and is helpful.

Maybe you are looking for