Working with adobe air on linux

I asking myself if Adobe development team, lets us an open source code to develop latest versions of Adobe Air (beginning from 2.6) on Linux.
Best Regards!

No, your laptop is far, far from ideal to run Premiere Pro and After Effects. You would probably be OK with Photoshop and Illustrator. You say you want "smooth" and while you can do that with a laptop that does not break the bank, your current HP is lacking in more area that one.
Premiere Pro benefits from a strong NVidia graphics card (yours has HD4000 only), lots of cpu cores (i.e. quad core + hyperthreading support), and 16GB or RAM or more to get a quality editing experience for typical HVACHD media projects without having to pre-render everything on the timeline.
If you really want to know how it would work on your HP, you can download and try the free for 30-days evaluation copy of CC 2014 applications and actually try it for yourself with your media and your workflow.
Finally, the web site www.ppbm7.com is rich with information regarding what size of PC you need to what media and a whole lot more.
Regards,
Jim

Similar Messages

  • Webcam not working with adobe air

    hey frnds,
    i'm trying to capture webcam snaps and storing it on local desktop.
    Below code of capuring snap is working with flex but same code not working in adobe air.
    I'm using Adobe Flash builder beta 2
    is any setting is required to use webcam with adobe air?
    i'm using following code
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                           xmlns:s="library://ns.adobe.com/flex/spark"
                           xmlns:mx="library://ns.adobe.com/flex/halo" creationComplete="init();">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.core.UIComponent;
                import flash.media.Camera;
                import flash.media.Video;
                private function videoDisplay_creationComplete() : void
                    var camera:Camera = Camera.getCamera();
                    if (camera)
                        videoDisplay.attachCamera(camera);                   
                    else
                        Alert.show("Oops, we can't find your camera.");
                private function capture_click() : void
                    var snap:BitmapData = new BitmapData(320, 240, true);
                    var snapBmp:Bitmap = new Bitmap(snap);
                    snapBmp.width = 320;
                    snapBmp.height = 240;
                    if(snapshotHolder.numChildren > 0)
                        snapshotHolder.removeChildAt(0);
                    snapshotHolder.addChild(snapBmp);               
                    snap.draw(videoDisplay);               
        ]]>
        </fx:Script>
        <mx:HBox>
            <s:Panel title="Video">
                <mx:VideoDisplay id="videoDisplay" creationComplete="videoDisplay_creationComplete();" width="320" height="240" />       
            </s:Panel>
            <s:Panel title="Snapshot">
                <mx:UIComponent id="snapshotHolder" width="320" height="240" />
            </s:Panel>       
        </mx:HBox>
        <mx:HBox>
            <mx:Button label="reload camera" click="videoDisplay_creationComplete();"/>
            <mx:Button label="capture" click="capture_click();"/>  
        </mx:HBox>
    </s:WindowedApplication>
    Camera is connected but cannot see anything inair,
    plz guide me in this.
    thx in advanced,

    I seem to have the same problem. When creating an web application it works fine, but when creating a desktop application it doesn't. I can't figure out what the problem is.
    Does anyone know?

  • Webcam and Whiteboard not working with Adobe AIR with Adobe Flash Builder

    Hi,
    I am trying to build a  simple chat service using Adobe Flash Builder target for desktop AIR( my final objective is to port it to android). My adobe AIR version is 2.5.0 and below is my source code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:rtc="http://ns.adobe.com/rtc">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    <rtc:AdobeHSAuthenticator id="auth" userName="Yy" protocol="rtmfp"/>
    </fx:Declarations>
    <rtc:ConnectSessionContainer id="session" authenticator="{auth}" roomURL="https://collaboration.adobelivecycle.com/yytan1987/myfirstroom" width="100%" height="100%">
    <mx:HBox width="100%" height="100%">
    <mx:VBox width="25%" height="100%">
    <rtc:WebCamera width="100%" height="50%"/>
    <rtc:SimpleChat width="100%" height="50%"/>
    </mx:VBox>
    <rtc:SharedWhiteBoard width="75%" height="100%"/>
    </mx:HBox>
    </rtc:ConnectSessionContainer>
    </s:WindowedApplication>
    Basically when i debug it with AIR, the chat is working properly but the webcam and whiteboard just don't work....I really don't know what's wrong with it already...Appreciate it if anyone can help,thanks!!
    Regards

    Hi,
    My take is , is your autopromote tuned on for the room. I mean whats
    your user role when an user enters the room(who is not host), is it 10
    or 50. If its 10 i.e. viewer , then he cant use his own cam etc. You
    need to take a look at the logs when an user enters and if its 10 and
    you want to give him these permissions, turn autopromote on from the
    devconsole for the room to make his role 50 i.e. publisher.
    I just now downloaded 2.5.1 AIR and created a new project with your
    source and I am able to use everything.
    Thanks
    Hironmay Basu

  • -webkit-linear-gradient not working with Adobe Air 3.0

    Hi -
    I recently downloaded Adobe Air 3.0 after reading that gradients are now supported (http://www.adobe.com/devnet/air/ajax/articles/air_and_webkit.html), but I have not been able to successfully implement them. For example, I have the following CSS class defined:
    .gradient_test {
         background-image: -webkit-linear-gradient(#68AB34, #3D721B);
         padding: 5px;
         color: #FFF;
    This should (and does in Chrome, Safari, etc) create a linear gradient going from light to dark green. But in Air it just appears as if no background has been applied to the selector. Am I missing some unique way to be able to apply gradients in Adobe Air 3.0?
    Thanks,
    Zach

    I don't know why this hasn't been addressed. I'm seeing the exact same problem. I've tried every permutation, but haven't been able to generate a gradient using any existing standard for webkit or otherwise (even though it's allegedly supported).
    -Matthew
    EDIT: I discovered that when the app is compiled, the gradients work fine. This one is driving my crazy, because I want to be able to test them. I get a mix of CSS support, depending on how the app is run.
    From Dreamweaver CS3 "Preview" - My CSS doesn't show gradients and shows embedded web fonts.
    From ADL - My CSS fails almost entirely, but some if it gets loaded.
    From the compiled AIR file: fortunately, everything seems to display correctly, but it's really a bad scenario for development / testing. Not sure what to do.

  • IOS app touch input not working with Adobe AIR

    I believe the problem here is my touch input but I'm not positive.
    This is my first iOS application. I'm making the game for both Android and iOS and it works perfect on Android, however when I sent it out ot my iPhone testers, they were unable to get past my "Tap to Play" screen.
    I'm using mouse events for the touch/click and this is no problem on Android and all of my research says touch events work fine for iPhones as well. Is there another way I should be handling this event?
    Below is the code that loads the next swf. Again, it works perfect on PC, and multiple Android devices.
    TouchToPlay.addEventListener(MouseEvent.CLICK, page1);
    function page1(event: MouseEvent)
         MovieClip(stage.getChildAt(0)).loadThisScreen("Menu.swf");
    Like stated above, it seems as if iOS doesn't/isn't recognizing the MouseEvent. Why is this?

    A major difference is Android supports Flash up to 11.2, so you can be getting away with it for that.
    For mobile, there's absolutely no reason not to simply convert to using TouchEvent.
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/events/TouchEvent .html
    They work almost identical, simple CONST changes between (MOUSE_DOWN is TOUCH_BEGIN, etc).
    What MouseEvent doesn't support is gestures, so why would you use an event model with less features like MouseEvent over Touch?

  • PSE 9 only works with old AIR version on Win 7 x64. Adobe please help.

    I'm hoping that Adobe can jump in and help here as there are some real versioning issues with the components that PSE 9 uses.  I've made a number of posts in the Adobe AIR forum (while I was figuring this out) and have exchanged with Adobe resources regarding my problems with Adobe AIR on Win 7 x64. They are still looking into it.
    PSE 9.0 comes with
         Adobe AIR 1.5.3.9130,
         Adobe Community Help 3.2.1.650 (an AIR app), and
         Adobe Photoshop.com Inspiration Browser 3.07 (an AIR app)
    That  Adobe AIR 1.5.3.9130 is an old version of AIR.  Since then there have been production releases 2.0.2, 2.0.3, and the latest 2.0.4.  If you upgrade to ANY of those Adobe AIR 2.x versions on your Win 7 x64 system, ALL your Adobe AIR apps will stop working.
    Adobe Community Help 3.2.1.650 is an out-of-date version and it continually nags you to update to the newer version.  If you do that, the install will first upgrade Adobe AIR to 2.0.4 and then upgrade Help.  Help will no longer work and all Adobe AIR apps will not work.
    I have installed and uninstalled PSE 9 about 25 times, I have installed and ununinstalled different versions of AIR over 50 times, etc. etc. to come to these conclusions.  I have tested Adobe AIR 2.0.2, 2.0.3 and 2.0.4 and NONE of them work on Win 7 x64.
    I'd really like someone from the Adobe PSE team to look into this.  I don't have time to spend hours on the phone with support.  I have described the problem and can offer more details as necessary.
    Thanks . . . . Brian

    Ankush,
    Thank for your two responses.  I have also received some more emails from Chris Campbell around AIR in particular so I'll try to work with him first.
    Thanks you for confirming that you do not see any errors after installing the updates.  Also that Adobe Help and Inspiration Browser both work after updating AIR to 2.0.4.
    I will answer your questions for now though:
    1. You asked:
    Have you tried this:
    Uninstall PSE 9, PRE 9 and any other CS5 Adobe application.
    Uninstall Adobe AIR.
    Install PSE 9 and run the updates of Adobe AIR and now use the applications?
    If it still gives error, uninstall Adobe AIR and then install the 2.0.4 version directly which is available on Adobe.com.
    What happends now?
         Yes, I have done all of these combinations a few times without success.
    2. The directories for Adobe Help and PIB look fine.  They are
        C:\Program Files (x86)\Adobe\Adobe Help
        C:\Program Files (x86)\Adobe\PhotoshopdotcomInspirationBrowser
    As I said, Chris Campbell has asked me for info and to run some tests.  I'll let you know how it works out.
    Thanks . . . . Brian

  • How to record a time-limited video with Adobe AIR for iOS

    I am trying to record a time-limited video with Adobe AIR for iOS.
    For example, I want to implement the following function. Start a one-minute timer before launching CameraUI to record video. When the timeout event happens after one minute, stop recording video, close the CameraUI view and obtain the video data so far.
      I have several questions related to that.
      1. How to stop recording video from outside the CameraUI view(in this case, from the timeout event handler) and then close the CemeraUI view? As far as I know, to close the CameraUI view, the only way is to press the [Use Video] button or the [Cancel] button from inside the CameraUI view. Is it possible to close it from outside?
      2. Even if the first problem mentioned above is solved, then how can I get the video data so far(in this case, the video data before the timeout). I know that normally we can get a MediaPromise object from MediaEvent parameter of the  complete handler, and read the video data from the MediaPromise object. But obviously in this case, we can not access the MediaPromise object just because the complete handler itself will not be executed since the [Use Video] button is not pressed.
      3. Is it possible to add a stopwatch to show possible remaining recording time when CameraUI view is open? It seems that the CameraUI automatically uses the full screen of iOS device(in my case, iPad) and there is no extra space to show the stopwatch.
      Are there any solutions or workarounds about the three problem above? I really appreciate it if anyone has any idea about this. Thanks in advance.

    You'd have more control by using the Camera object, showing the camera on a video object inside a Sprite, and capturing that. Then you could put whatever graphics alongside it on the stage.. I've used FlashyWrappers in a test to capture the video to the library.  It took some work, but the test worked well...
    Flash/AIR record videos of your apps and games: Rainbow Creatures

  • Problem with adobe air ajax PUT request

    Hi,
    Sorry for my english.
    I would like to send a XML document to a server with AJAX
    XmlHttpRequest Object.
    I use the PUT method.
    Adobe Air sends the PUT request without the contents and set
    the contents-length header to 0.
    If I replace the PUT method by a POST method Adobe Air sends
    the request with the document, but the service on my server do not
    allow POST requests.
    If I open the same page with Firefox, IE and Safari, all
    works fine.
    I do not understand why Adobe Air is not able to send my xml
    document with a PUT request but he can if I replace the method PUT
    by a POST ?!?
    I cannot change the implementation of the remote service so I
    need to send a PUT request.
    I see an old topic here (
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=641&threadid=1309642#47 47452)
    speaking about my problem but I do not the right to add a message
    to the thread.
    Somebody can help me, please ?

    tzeng,
    The web server is a tomcat.
    Maybe the server is not configured to manage POST request or
    the service does not support the POST request (only PUT and GET).
    The AJAX code :
    quote:
    var xhr = new XMLHttpRequest();
    if (window.XMLHttpRequest) {
    try {
    netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
    } catch (e) {}
    // With Adobe Air, the following code Adobe AIR sends the PUT
    request without the document (in the data object).
    // if I replace "PUT" by "POST" all works fine
    xhr.open("PUT", url, true);
    xhr.onreadystatechange = function () {
    // my code [....]
    xhr.send(data);
    Thanks.

  • Air application installer doesn't always work when Adobe air is already installed

    Hi,
    I've recieved an adobe air application from another developer. I placed it a web site and tested it. It worked so I considered it complete. However it turns out that it only worked because I didn't have Adobe Air installed.
    I've found that there is someone with Adobe Air (same version as me) already intalled from another source and when they click application install button absolutely nothing happens. No error or anything.
    However I can revisit the page and click it and it works every time even with adobe air already installed. So I suspect it has something to do with how they've installed it.
    Has anyone ever run into this issue and do you know what could be causing it? It is because something is wrong with their installer which leaves it not knowing what to do with an air extension and the whole thing just fails silently?

    Hi,
    Would it be possible to get the URL to the page that has your AIR badge installer (or the html if it's not publicly viewable)?  We'll probably also need further info on the system that's failing, if possible could you post the installer log and check to see if the following file exists:
    Win 7:
    C:\Users\username\AppData\Roaming\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    Mac
    /Users/username/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin/airappinstaller/airappinstaller
    Please feel free to contact me at [email protected] if necessary.
    Thanks,
    Chris

  • DirecTv NFL Supercast with Adobe Air - Problem - HELP

    I am attempting to download the DirecTv Supercast feature so I can watch NFL Sunday Ticket online.  I am unable to get Supercast to work via Adobe Air.  When I attempt to download Supercast, I get an error message (see first  screen shot) that states, "The application could not be installed because the AIR file is damaged. Try obtaining a new AIR file from the application author."  After I download Adobe Air from the Adobe website, it installs fine; however, if I attempt to install Supercast after installing Adobe Air I get an error message (see second screen shot) that states, "The application could not be installed. Try installing it again. If the problem persists, contact the application author. Error 2032."  I have the latest Adobe flash player.  I have already viewed DirecTV online FAQs and called customer service… neither have helped resolve the issue.  I have uninstalled and reinstalled all software numerous times.  I have also attempted the installs with all firewalls off.  Nothing has worked.  I get the same problem on 4 different computers (3 running Vista and 1 running XP).  Anyone have any ideas what the problem might be?  Thanks for the help.

    hey my name is tom im in the army stationed out here in bulgaria and i have been having this same problem for 2 weeks now trying to watch the games,i downloaded and uninstalled adobe air hundreds of times, but directtv when i click there thing to install the supercast it dosnt work, i think it might be the isp aswell, would u please be able to send me the direct link or the direct file for supercast? or tell me  a easy way to fix it, i dont know anything about vpn's so thats not going to work. id appreciate it if u could just send it to me thanks         tom.burns421  at  live  dot com is a email please send it to there and put who its from in the subject so i know

  • Still big problem with "Adobe AIR 16" and "Adobe AIR 17"

    Device:Iphone 6 e Iphone 6 plus
    My application xml:
        <fullScreen>true</fullScreen>
        <aspectRatio>landscape</aspectRatio>
        <renderMode>cpu</renderMode>
        <autoOrients>false</autoOrients></initialWindow
    When I use "cameraRoll.browseForImage ();" and the user clicks on the "Cancel" the keyboard becomes vertical and status bar trasparent. Unable to use the app.
    Adobe is not the same as a few years ago, instead of solving the problems they create.
    With "Adobe AIR 15" works but I can not publish the app on Apple Store (OS64 bit).
    HelpMeeeeeeeee

    Device:Iphone 6 e Iphone 6 plus
    My application xml:
        <fullScreen>true</fullScreen>
        <aspectRatio>landscape</aspectRatio>
        <renderMode>cpu</renderMode>
        <autoOrients>false</autoOrients></initialWindow
    When I use "cameraRoll.browseForImage ();" and the user clicks on the "Cancel" the keyboard becomes vertical and status bar trasparent. Unable to use the app.
    Adobe is not the same as a few years ago, instead of solving the problems they create.
    With "Adobe AIR 15" works but I can not publish the app on Apple Store (OS64 bit).
    HelpMeeeeeeeee

  • Will WRT54G work with an Air Card

    Just wondered if anyone has tried to make the WRT54G work with an air card from one of the cell phone providers?

    Not that model. Maybe wrt54g3g.
    The box said windows xp or better... So I installed Linux!

  • I have a major problems with adobe air.

    i have a major problems with adobe air. day before yeasterday it work. now it tell me that it is musconfigure. so i have tried a download it again. but still not working.

    You really need to explain what you are doing, and what your "major problems" are.  We do not even know if you mean the AIR runtime, or AIR SDK?  Nor your operating system.

  • Will Adobe Acrobat 8.0 Standard Work With Adobe Reader 8.2.4?

    Hello,
    I have a question, but haven't found an answer to this yet.
    Can anyone tell me please:  Will Adobe Acrobat 8.0 Standard work with Adobe Reader 8.2.4?
    I had Adobe Acrobat 6.0 Standard on my computer & it was working with Adobe Reader 8, but don't remember what the version it was.
    I was using Adobe Acrobat 6.0 Standard to scan very old family pictures & documents & I realize that this version of Acrobat is outdated.
    To make a long story short, my computer had crashed, so we built another computer & just replaced the hard drive.  When I went to Adobe, I had to download the newer version of Reader 9.0 & it didn't work with Acrobat 6.0., so I removed Adobe Reader 9 & I found Adobe Reader 8.0 & have downloaded the patches, so now I have Adobe Reader 8.2.4 back on board.
    Thank you.

    Adobe doesn't recommend any version of Reader with any version of Acrobat on Windows. It will cause problems. It just is a matter of how and when. The problem has to do with shared resources causing conflicts. If you have Acrobat 8, you can update it to Acrobat 8.2.4. You must apply the updates sequentially.
    http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows

  • Any pre keyed effect sites that work with adobe premiere elements 11?

    I have been trying to find a legit non scam/virus site with pre keyed effects like explosions, gunshot fire, fire, and other effects like that.
    Most sites that I've tried are virus' or only work with imovie.
    Anyone know of any good sites that have pre keyed effects that works with adobe premiere elements 11? (they don't have to look good, I am just practicing with those)

    In my book "Cool Tricks & Hot Tips for Premiere Elements 11", I recommend and show you how to use clips from the wonderful site http://detonationfilms.com/ to create explosive effects.

Maybe you are looking for

  • Mailman on Mac OS X Server 10.3.9 Problems

    We have a few mailing lists on our old PowerMac G4/Dual 450 machine. We have Mac OS X Server 10.3.9 on there and we are using Mailman for list management. Mailman is not sending anything through the lists. I repaired permissions via the Apple repair

  • Using Combo Box in Web Report 6.0

    Has anyone had success using a combo box on the parameter form in a Reports 6.0 web report? I can successfully use a list of values, but this requires that the user must select an entry. Some parameters may be null. Current environment is NT4 SP4, OA

  • Conditional Display in DataGrid

    Please help me with this issue ASAP : I need to display a particular image in a cell of the DataGrid depending upon the value in the data retrieved from the DB. I receive the contents of a Table from the DB and then need to display an image in the 3r

  • Reinstalling CS3 Why the is it asking for Adobe Fireworks CS4

    When attempting to reinstall my Photoshop CS3 on my Mac because of the clone brush not working I am prevented from doing so because It is asking for Adobe Fireworks CS4. Thanks

  • BOM assembly indicator

    Dear Gurus Please tell me, In which table I can find assembly indicator with related to a BOM. Thanks & Best Regards Charith