Detecting when StrobeMediaPlayback playback finished on Android + Adobe Air

I tried both:
    NativeApplication.nativeApplication.addEventListener(Event.COMPLETE, _exitApp);
and
    videoPlayer.addEventListener(Event.COMPLETE, _exitApp);
in my .mxml file, but they don't seem to be invoked when the video finished playing. What am I missing?

Hi Hiroshi,
Thank you very much for your quick reply.
For your information, EST (Electronic Sell-Through) is the mp4 movie which we allows the customer to download and watch offline from their device.
We do embed AIR 3.4 in our app and you can find the app from google Playstore:
https://play.google.com/store/apps/details?id=air.EzyMediaPlayer.Tablet&hl=en
After doing a bit research, I found out that since AIR 3.8, Adobe has already made some changes inside DRMManager so from my understanding, any rooted Android device will receive error 3347 "The device does not meet the Flash Access server's playback device constraints".
http://www.rapid7.com/db/vulnerabilities/adobe-air-cve-2013-3347
So far, after I change the AIR SDK to 3.7, everything works as exptected so it will be great if you can confirm if we have the option in Flash Access to allow rooted Android device to watch DRM content or not(like we have option to allow the jailed break iOS device to watch DRM content).
Thanks.
Jack

Similar Messages

  • Detecting when the movieClip finished playing

    Hi...
    Does anyone know how to detect when the movieclip is finish playing?
    i want to play an animation that is converted into a movieclip and indicate success of that level and then after the movieclip is finished playing then i want to run a function which will bring user to the next level.
    any suggestion?
    THanksss

    stage.addChild(play_mc);
    play_mc.gotoAndPlay("startPlay");
    play_mc.addEventListener( Event.ENTER_FRAME, onfrm);
    function onfrm( evnt: Event ): void
                    if (play_mc.currenFrame == play_mc.totalFrames )
                        play_mc.removeEventListener( Event.ENTER_FRAME, onfrm);
                        alpCount++;
                        splitWord(alpCount);
                        underlines();

  • Error 3347 when playing DRM content on Android with AIR 3.9

    Hi,
    Recently we decide to upgrade our app to use AIR 3.9 SDK and apprently we can no longer watch any DRM content (both HDS and EST) on some Android devices (like Google Galaxy Nexus) anymore.
    Before we never have any problem watching our content on any Android device using AIR 3.4 but now with AIR 3.9, we get error 3347 which says "The device does not meet the Flash Access server's playback device constraints.".
    Have anyone encountered this problem before? We believe sooner or later we have to upgrade our app to latest AIR as we can no longer use our app on Nexus 7 with Android version 4.4.
    Any help will be greatly appreciate.
    Thank you.
    Jack

    Hi Hiroshi,
    Thank you very much for your quick reply.
    For your information, EST (Electronic Sell-Through) is the mp4 movie which we allows the customer to download and watch offline from their device.
    We do embed AIR 3.4 in our app and you can find the app from google Playstore:
    https://play.google.com/store/apps/details?id=air.EzyMediaPlayer.Tablet&hl=en
    After doing a bit research, I found out that since AIR 3.8, Adobe has already made some changes inside DRMManager so from my understanding, any rooted Android device will receive error 3347 "The device does not meet the Flash Access server's playback device constraints".
    http://www.rapid7.com/db/vulnerabilities/adobe-air-cve-2013-3347
    So far, after I change the AIR SDK to 3.7, everything works as exptected so it will be great if you can confirm if we have the option in Flash Access to allow rooted Android device to watch DRM content or not(like we have option to allow the jailed break iOS device to watch DRM content).
    Thanks.
    Jack

  • Hardware Requirements for Android Adobe Air Installation or certification requirement?

    Hi, Friends,
    I am newbie on Adobe Air and tried to install Air apk on my android ICS device from Google Play.
    However, it complains that the device is not compatible with the software package.
    I wonder if there are any hardware requirements or certification requirement for new android phone device on the market.
    Regards
    -Charles

    Well, my theory is it only works on 4g phones, at least with Metro PCS phones!
    Using the following 3g phones, I got "device is not compatible"
    - Hawai ascend  OS  (3g)  ~incompatible
    - HTC (3g) ~incompatible
    - Samsung Admire (3g) ~incompatible
    But after buying my $300+ 4g LG phone, also from Metro PCS, the Adobe AIR installed sucessfully.
    Also, I as fyi, noticed that Adobe Air app did not show up in the Google play list on the 3g phones.
    I hope this info helps.
    Best,
    Will (from waitingonsanta.com)

  • Does external links work when html based course embeded in adobe air

    Hi,
    i have an html based WBT, developed using Lectora.
    Now my clients wants its desktop version.
    I am using Adobe air to do it. My html course has some external links which opens in external popup windows and captivate swf files.
    If i wrap my html course into desktop application using adobe air, will my external links work?
    And swf files running in html pages will work fine?

    Hi flexo222,
    Currently Adobe AIR does not support custom CSS cursors and only some of the "default" cursors available in CSS.
    You could however use the following ActionScript workaround if you don't need a very complex behavior:
      * on mouseOver have the default cursor hidden
      * on mouseMove have a custom cursor drawn and positioned via ActionScript
      * on mouseOut have the custom cursor hidden and the default cursor shown.
    I have attached a sample that should make things clearer. Feel free to ask if there's anything not clear.
    Cheers,
    Mihai

  • I receive the error, "Sorry, an error has occured."  When I try to install my Adobe AIR application.

    Jeff,
    I'm having the same problems when trying to download any Adobe products.

    Niadee I branched your discussion out to a new thread as it does not appear to be related to trying to install Adobe Download Assistant in Mac OS 10.8.2.  Are you receiving this error when you are trying to install the Adobe Download Assistant?  Also what version of Windows do you have installed?

  • Peer2Peer Android Adobe Air Not Working !!!!!

    Hello All,
    I tried to create a small app for my mobile ( android 2.2.1 ) to chat, the app is not working here is the code :
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009" creationComplete="view1_creationCompleteHandler(event)"
            xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
        <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                import flash.net.NetConnection;
                import flash.net.NetGroup;
                import flash.net.GroupSpecifier;
                private var nc:NetConnection;
                private var group:NetGroup;
                protected function view1_creationCompleteHandler(event:FlexEvent):void
                    this.title = "P2P Chat App";
                    NativeApplication.nativeApplication.systemIdleMode = SystemIdleMode.KEEP_AWAKE;
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
                    nc.connect('rtmfp://p2p.rtmfp.net', 'key');
                protected function CloseButClick(event:MouseEvent):void
                    NativeApplication.nativeApplication.exit();
                protected function netStatus(event:NetStatusEvent):void
                    trace(event.info.code);
                    switch(event.info.code)
                        case "NetConnection.Connect.Success":
                            setupGroup();
                            break;
                        case "NetGroup.Connect.Success":
                            messages.appendText("Room Connected\n");
                            break;
                        case "NetGroup.Neighbor.Connect":
                            messages.appendText("New Client Connected\n");
                            break;
                        case "NetGroup.Posting.Notify":
                            messages.appendText(event.info.message.message + "\n");
                            break;
                private function setupGroup():void
                    trace(nc.nearID);
                    var groupspec:GroupSpecifier = new GroupSpecifier("myGroup/group0");
                    groupspec.postingEnabled = true;
                    groupspec.ipMulticastMemberUpdatesEnabled = true;
                    group = new NetGroup(nc, groupspec.groupspecWithAuthorizations());
                    group.addEventListener(NetStatusEvent.NET_STATUS,netStatus);
                    topGroup.enabled = true;
                protected function send_message_clickHandler(event:MouseEvent):void
                    var message:Object = new Object();
                    message.message = user_message.text;
                    group.sendToAllNeighbors(message);
                    user_message.text = "";
            ]]>
        </fx:Script>
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <s:layout>
            <s:VerticalLayout gap="5" paddingBottom="5" paddingLeft="5" paddingRight="5" paddingTop="5"/>
        </s:layout>
        <s:HGroup width="100%" verticalAlign="middle" enabled="false" id="topGroup">
            <s:TextInput width="100%" id="user_message"/>
            <s:Button label="Send" id="send_message" click="send_message_clickHandler(event)"/>
        </s:HGroup>
        <s:TextArea id="messages" width="100%" height="100%" editable="false"/>
        <s:Button label="Close" id="close_but" click="CloseButClick(event)"/>
    </s:View>
    and I visited the cc.rtmfp.net and got all greens except the first one : knows public ip address of self

    you say that cc.rtmfp.net shows all green except for "knows IP address of self".  is that the case on both computers that you're trying to do P2P between?  are your two computers actually on the same LAN?  if one is on a wired network and the other is on WiFi, they may not be on the same LAN and may be double-NATted.  if your network topology involves double-NAT and the two computers aren't on the same LAN, AND the outer-most NAT doesn't do hairpinning, P2P communication might not be possible in that configuration.
    if you use the sample 1:1 P2P app, VideoPhoneLabs (link below), can you do P2P between the two computers?  how about on the same computer in two browser windows?
       http://labs.adobe.com/technologies/cirrus/samples/
    if P2P on one computer works but not between two computers, there is probably a NAT or firewall issue going on.  depending on the results from cc.rtmfp.net on both computers, i might be able to deduce what's going on.

  • Hi. I have a Androi 2.3 on my phone, but when i run a app in Adobe AIR i have a force close app

    What i do, because i'm trying everything.
    Sorry about English. I'm from Brazil.

    I am also having this same issue pretty consistently....quite annoying if I do say so!

  • Motorola Surfboard SBG6590 installation cd says "Problem installing Adobe Air"

    When I attempt to install the software which came on the installation cd for my Motorola Surfboard SBG6590, it gives the following message: "Problem installing Adobe Air. There was a problem installing Adobe Air". After I saw this message the first time, I went to Adobe's site and downloaded air from a browser and it said that air was successfully installed. When I reattempted to install the cd, it gave the same failure message about "Problem installing Adobe Air". I tried uninstalling Adobe Air and reinstalling and I still get the same problem. I have a mac OS x version 10.5.8. The version of air that I downloaded is 2.5.1 for MacOS.

    The script gives the following error: "AppleScript Error. Finder got an error: A privilege violation occurred."
    Script editor displays in the event log:
    tell application "Finder"
    do shell script "test -d /Applications/Adobe || mv /Applications/Adobe /Applications/Adobe-Backup > /dev/null 2>&1 &" with administrator privileges
    "Finder got an error: A privilege violation occurred."
    The installation script did not prompt for my administer password, so perhaps that could be the problem?
    I am unable to rename or delete a file called /Applications/Adobe, because no such file exists. This is a folder on my machine containing Acrobat.
    $ ls /Applications/Adobe*
    /Applications/Adobe:
    Acrobat.com.app Flash Player
    /Applications/Adobe Reader 9:
    Adobe Reader.app Icon? ReadMe.html
    $ ls /Applications/Utilities/Adobe*
    /Applications/Utilities/Adobe AIR Application Installer.app:
    Contents
    /Applications/Utilities/Adobe AIR Uninstaller.app:
    Contents
    /Applications/Utilities/Adobe Utilities.localized:
    Adobe Updater6
    I'm not sure why, but when I open the Console application, it busy waits and won't let me see any logs, so instead here is some relevant lines from my /var/log/system.log. Since it looks like my system cleans up this file every morning, I did a fresh uninstall of Adobe Air and reinstalled it just now:
    Dec 15 11:34:42 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18202]: Runtime Installer begin with version 2.5.1.17750 on Mac OS 10.5.8 x86
    Dec 15 11:34:42 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18202]: Commandline is: -psn_0_1560957
    Dec 15 11:34:42 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18202]: Installed runtime (2.5.1.17750) located at /Library/Frameworks/Adobe AIR.framework
    Dec 15 11:34:45 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18202]: Relaunching with elevation
    Dec 15 11:34:45 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18202]: Launching subprocess with commandline /Applications/Utilities/Adobe AIR Uninstaller.app -eu
    Dec 15 11:34:51 authexec[18205]: executing /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer
    Dec 15 11:34:52 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18205]: Runtime Installer begin with version 2.5.1.17750 on Mac OS 10.5.8 x86
    Dec 15 11:34:52 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18205]: Commandline is: -eu
    Dec 15 11:34:52 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18205]: Installed runtime (2.5.1.17750) located at /Library/Frameworks/Adobe AIR.framework
    Dec 15 11:34:52 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18205]: Starting runtime uninstall. Uninstalling runtime version 2.5.1.17750
    Dec 15 11:35:04 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18205]: Runtime Installer end with exit code 0
    Dec 15 11:35:04 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18202]: Elevated install completed
    Dec 15 11:35:04 /Applications/Utilities/Adobe AIR Uninstaller.app/Contents/MacOS/Adobe AIR Installer[18202]: Runtime Installer end with exit code 0
    Dec 15 11:36:04 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18215]: Runtime Installer begin with version 2.5.1.17750 on Mac OS 10.5.8 x86
    Dec 15 11:36:05 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18215]: Commandline is: -psn_0_1581442
    Dec 15 11:36:05 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18215]: No installed runtime detected
    Dec 15 11:36:08 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18215]: Relaunching with elevation
    Dec 15 11:36:08 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18215]: Launching subprocess with commandline /Volumes/Adobe AIR 1/Adobe AIR Installer.app -ei
    Dec 15 11:36:14 authexec[18218]: executing /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Dec 15 11:36:15 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Runtime Installer begin with version 2.5.1.17750 on Mac OS 10.5.8 x86
    Dec 15 11:36:15 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Commandline is: -ei
    Dec 15 11:36:15 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: No installed runtime detected
    Dec 15 11:36:15 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Starting silent runtime install. Installing runtime version 2.5.1.17750
    Dec 15 11:36:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Registering /Applications/Utilities/Adobe AIR Application Installer.app/Contents/Info.plist
    Dec 15 11:36:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Library/Frameworks/Adobe AIR.framework
    Dec 15 11:36:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Subprocess chown succeeded
    Dec 15 11:36:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Appli
    cation Installer.app"
    Dec 15 11:36:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Subprocess chown succeeded
    Dec 15 11:36:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Unins
    taller.app"
    Dec 15 11:36:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Subprocess chown succeeded
    Dec 15 11:36:59 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18218]: Runtime Installer end with exit code 0
    Dec 15 11:36:59 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18215]: Elevated install completed
    Dec 15 11:37:43 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[18215]: Launching subprocess with commandline /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Adobe AIR

  • Adobe air apps cannot be installed

    Hi,
    I have trouble with my PC to install any kind of adobe air app. When I start to install a Adobe air app, I get the UAC request and I confirm it but then the Adobe Air Application Installer.exe *32 is hanging and doing nothing.
    When I repeat the process another Adobe Air Application Installer.exe *32 instance is started.
    Here is my equipment and what I tried:
    Equipment:
    Windows 7 professional SP1 64 -Bit
    - Reinstalling Adobe air with Revo Uninstaller(cleaning registry) and installing it new with Admin rights.
    - Installing Adobe air in Windows XP Sp3 mode
    - Multiple apps were tried and when I start them with the SDK, they are working fine.
    - No information are available in the windows eventlogs
    Any idea  how to solve it or any possibility to start a debug tool to get more information?
    Thank you in advance for any input and help!
    Cheers,
    Dominik

    Hi Chris,
    I appreciate your support!
    Sadly the Microsoft Install and Uninstall Fix It tool does not work, adobe air is still hanging during the app installation.
    This is what I have done:
    1. Uninstall Adobe air with the Microsoft Tool
    2. Install Adobe air new
    3. Try to install the app SmartClient.air -> Did not work
    4. Try to install the app DesktopiPhone.air -> Did not work
    Now I have 4 Adobe air instance in the task manager(see screenshot)
    2* Adobe Air Installer
    2* Adobe Air Application Installer
    Here the install log file:
    [2012-09-25:08:54:39] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-25:08:54:39] Commandline is:
    [2012-09-25:08:54:39] No installed runtime detected
    [2012-09-25:08:54:41] Relaunching with elevation
    [2012-09-25:08:54:41] Launching subprocess with commandline c:\users\sd000037\appdata\local\temp\airb183.tmp\adobe air installer.exe -ei
    [2012-09-25:08:54:43] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-25:08:54:43] Commandline is: -stdio \\.\pipe\AIR_4324_0 -ei
    [2012-09-25:08:54:43] No installed runtime detected
    [2012-09-25:08:54:43] Starting silent runtime install. Installing runtime version 3.4.0.2540
    [2012-09-25:08:54:43] Installing msi at c:\users\sd000037\appdata\local\temp\airb183.tmp\setup.msi with guid {14DC0059-00F1-4F62-BD1A-AB23CD51A95E}
    [2012-09-25:08:54:45] Runtime Installer end with exit code 0
    [2012-09-25:08:54:45] Elevated install completed
    [2012-09-25:08:55:46] Application Installer begin with version 3.4.0.2540 on Windows XP x86
    [2012-09-25:08:55:46] Commandline is: "D:\Arbeit\SmartOffice\0.07.23 MAIN_10082012_001_BETA\SmartClient.air"
    [2012-09-25:08:55:46] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-25:08:57:27] Application Installer begin with version 3.4.0.2540 on Windows XP x86
    [2012-09-25:08:57:27] Commandline is: D:\Arbeit\SmartOffice\DesktopiPhone.air
    [2012-09-25:08:57:27] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Thanks,
    Dominik

  • Can't install adobe air!

    please can't install adobe air help :///
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-2940300-32782/450-231/error.JP G
    my log:
    [2011-02-14:17:30:03] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-14:17:30:03] Commandline is:
    [2011-02-14:17:30:03] No installed runtime detected
    [2011-02-14:17:31:19] Starting runtime install. Installing runtime version 2.5.1.17730
    [2011-02-14:17:31:19] Installing msi at c:\docume~1\luuucas\config~1\temp\air53.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-02-14:17:31:20] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-02-14:17:31:20] Rolling back install of c:\docume~1\luuucas\config~1\temp\air53.tmp\setup.msi
    [2011-02-14:17:31:20] Rollback complete
    [2011-02-14:17:31:20] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]

    Hi, Thanks Jian for the info which seemed to make sense but when i tried that the sa
    me message is coming up.
    I tried to install the windows Install clean up but a message comes up to say that this installation is forbidden by system policy, contact your system administrator. I think I have now removed the Adobe Air that was in my programs list by using Revo Uninstaller Pro but when I try to install the Adobe Air (even with the instructions you suggested it still comes up with the same problem

  • Installation completes but no Adobe Air

    Hello all,
    I have a laptop running Windows 7.
    I have an ongoing problem. I had been running the BBC iPlayer for well over 18 months on this laptop with no issues at all, but following an issue with the BBC iPlayer I uninstalled the iPlayer and managed (eventually) to uninstall Adobe AIR using the Perfect Uninstaller (this was my only option as every time I tried to remove it with the Uninstall a program option I ended up with the Admin error, and the Microsoft fix did not work).
    Anyway, it removed Adobe AIR.
    Now when I try to re-install Adobe AIR by either running the Adobe AIR installer direct from the website or by downloading it and running it from the desktop it completes and says Adobe AIR is installed. I can repeat the installation over and over again and they all complete successfully.
    The files are placed in the c:\Program Files (x86)\Common Files\AdobeAIR\ folder.  If I look at the AdobeAIR.dll file the size is 13.3MB but in the details tab the entries are all blank - no application, no version number, nothing.
    As a result I cannot re-install the iPlayer. If i try and install from the BBC iPlayer Desktop install site that doesn't work either, it says it installs Adobe AIR but I don't get the familiar screen and nothging seems to be installed.
    Is there any way I can complete a successful re-install of Adobe AIR?
    Many thanks

    I'd try two things,  first Microsoft has just released a new utility that can help resolve installation problems.  Install AIR, then start the MS Fix it, go through the uninstall process and try to remove Adobe AIR from your system.  Once finished, download the latest version of AIR and install again.
    Microsoft Install and Uninstall Fix It
    If you still encounter problems, I'd uninstall AIR, create a new, temporary user account and try installing from there.
    Hope this helps,
    Chris

  • No Adobe air app will run Only Flash Web browser....

    So I have re-installed Flash Builder So when I try and run a Adobe air app from the Flash Builder It brings up a prompt everytime saying - If the program is already running, close it before attempting to run. When I kill the Adobe Air debugger in the Task manager it pops up again saying If the program is already running, close it before attempting to run.
    After waiting a few moments from trying again I get a message: Unable to connect to the Application to fetch profile data. Please try profiling the application again.
    With Flash based - web browser apps - they run fine with no issue. How ever its only adobe air - desktop apps that run this way. This is the third time I have installed FB 4.5 on Windows 7 64 bit. last night it was all woprking fine I was able to debug my Flash Application and everything was working  - it has been doing this all day.

    I had the same issue suddenly today
    After hours of scratching my head - and just before re-installing FlashBuilder 4.5 - I found this suggestion
    I had an entry in the "mm.cfg" file:
    PreloadSWF=C:\Users\<USERNAME>\AppData\Roaming\Mozilla\Firefox\Profiles\9us94hs0.default\e xtensions\[email protected]\chrome\content\flashfirebug\flashfirebug.swf
    - I deleted the line and it now works
    ---- aaarrrrggghhh - wasted time
    thanks

  • SMP in Adobe AIR mobile

    Hi,
      How do we get SMP (Strobe Media PlayBack) to work in Adobe AIR Mobile project? Ideally there should be a SWC for SMP....
    Regards
    Baliga

    So is there Alert.show() for adobe air/mobile developement??? I was wonder it hasn't been added or is there an alternative for it?

  • Unable to find Adobe AIR on Windows 7

    I have recently tried to download Adobe AIR and the computer reads that it was successful. However, when I try to locate the Adobe AIR application all I can find is the Installer. I tried looking in the OS, searching, basically looking everywhere and I can't find it. When I try and reinstall the program it just reads "This version of Adobe AIR is already installed on your system." But it didn't install, at least not correctly, because I can't find it. I'm not a big computer person so any help would be much appreciated!

    Go to the PS Windows forum.
    http://forums.adobe.com/community/photoshop/photoshop_windows
    There's a link at the top of the page dealing with Windows 7 and a lot of message threads on your problem.

Maybe you are looking for

  • Need help in Conversion routines

    Hi, In table crmd_order_index <b>there is a field GUID of data type CRMD_OBJECT_GUID and domain SYSUUID which is RAW 16.</b> <b>and in the another table a thr is a field OBJKEY of data type char 70.</b> When i execute the code     <b>SELECT guid    

  • F107(SAPF107V) configuration steps

    Hello All, I have configured F107 program for value adjustmnets, but the problem is after execution of this program it is not showing any results(posted documents). This is a new configuration for me. Can anybody please explain me the configuration p

  • PDF to XML

    Hi All.. I could see many posts regarding XML to PDF conversion. I just want to know if there is any command line tool available to convert PDF to XML (I can find many tools but they are of GUI. I am searching for a command line tool so that I can in

  • 3D mesh plot

    Hi there I want to create a mesh plot using 3D co-ordinates (x,y,z) obtained from motion capture devices. Now the problem is my data output from the motion capture device gives me all three co-ordinates x,y and z as a 1D array whereas if I want to pl

  • [Solved] Xfce : Want to disable save session

    Hello everyone. New to Arch. Here's my problem. I want to disable save session feature of Xfce, but unable to do it. I also have tried, 1. Settings manager > Session and startup - Unticking "Automatically save session on logout" 2. Removing session c