Air Application URL Path Issue

I am trying to invoke a  content of the file which is in shared folder from Air application.
Version : Flash builder 4.5,Flex3.6 sdk and Air 2.7.
for this am using the below code..
var request:URLRequest = new URLRequest();
//request.url = ('file:///c:/params.txt'); - This is working fine
request.url = ('file:///172.20.188.25/Share/chk/Property/params.txt');  // its not working
trace("Unable to load URL: " + request);
var variables:URLLoader = new URLLoader();
variables.dataFormat = URLLoaderDataFormat.VARIABLES;
variables.addEventListener(Event.COMPLETE, completeHandler);
try
variables.load(request);
The same part of code ,I tried in Flex application is working .but in Air application its not working.
Its urgent requirement,If any one know the way to resolve this path issues.
Kindly let us know.
Thanks in Advance !!

I tried in the following URL but no use ..
its throwing ioError and textError and stream error.
1.file:///172.20.188.25/Share/chk/Property/params.txt
2.http://172.20.188.25/Share/chk/Property/params.txt
3. //172.20.188.25/Share/chk/Property/params.txt
Is there any other solution for this issue ?

Similar Messages

  • AIR Application Transparent Background issue

    Hi, I have a small AIR application with a transparent
    background, my problem is when I drag the application I get a
    border appearing. How can I change this behaviour so I dont show
    the application border when dragging the application across my
    desktop
    Thanks.

    Hi,
    In your application descriptor, is systemChrome set to none
    and transparent set to true?
    Even then, you are getting a border?

  • AIR Application Sandbox Bridge Issue

    I am having an issue accessing the sandbox bridge from my application core page.
    The only thing I think it might be is I am using ajax for a login procedure so it might bolo it because of that.
    if anyone has any ideas I could use a fresh pair of eyes,
    If I strip it and create a new basic client I can get the sandbox bridge to work and launch the internet explorer , but with this client it won't
    here is the code for my AIR app document
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Viper: Nuclear Edition</title>
    <link rel="stylesheet" type="text/css" href="../../lib/css/viperapp-interface.css" />
    <link rel="stylesheet" type="text/css" href="../../lib/css/module-headers.css" />
    <link rel="stylesheet" type="text/css" href="../../lib/css/p7exp.css" />
            <script src="/AIRAliases.js"></script>
    <script type="text/javascript" src="../../lib/js/scripts.js"></script>
    <script type="text/javascript" src="../../lib/js/p7exp.js"></script>
            <script language="javascript">
    //This code is placed in the root document header
    //This function is written to run from the sandbox. It opens a url in an external browser
    function processURL(){
    var searchString = document.location.search;
    // strip off the leading '?'
    searchString = searchString.substring(1);
    var nvPairs = searchString.split("&");
    for (i = 0; i < nvPairs.length; i++)
    var nvPair = nvPairs[i].split("=");
    var name = nvPair[0];
    var value = nvPair[1];
    alert(searchString);
    function remoteLogin(){
    var searchString = document.location.search;
    viperframe.location.href = 'http://devcenter.viperapp.com/cgi/login.cfm'+ searchString;
    function testRemote(){
    alert('this is working');
    function noLogin(){
    alert('Your login information was incorrect, please try again');
    top.location.href="login.html";
    //This code is placed in the root document header
    //This function is written to run from the sandbox. It opens a url in an external browser
    function openExternalURL(href) {
    var request = new air.URLRequest(href);
    try {
    air.navigateToURL(request);
    catch (e) {
    alert(e);
    var Exposed = new Object();
    // expose the trace() function.
                 Exposed.trace = function(str) {
                    air.trace(str);
    Exposed.openExternalURL = openExternalURL;
    Exposed.testRemote = testRemote;
    Exposed.noLogin = noLogin;
    function doLoad() {
    //Place the Exposed object on the parentSandboxBridge property of the ui frame's window object.
    var frame =  document.getElementById('viperframe').contentWindow.parentSandboxBridge = Exposed;
    setIframeHeight('viperframe');
    remoteLogin();
    // window.callMe = document.getElementById('viperFrame').contentWindow.childSandboxBridge.callMe;
    //var frame = document.getElementById('viperFrame').contentWindow.parentSandboxBridge = Exposed;
    </script>
    </head>
    <body onload="doLoad();" onresize="setIframeHeight('viperframe');" onfocus="setIframeHeight('viperframe');" bgcolor="#222222">
    <!-- END P7EXP PULLDOWN MENU -->
    <div id="headerToolBar">
    <div id="headerToolUser">
    <ul>
    <li><a href="javascript:void(0);">Logged in  <strong>
                        </strong></a></li>
    <li><a href="login.html" target="_parent"><strong>Log Out</strong></a></li>
    <li><div id="windowTools"><a href="javascript:void(0);" onClick="parent.minimizeWindow()"><img src="../../lib/img/headertoolbar/icon_minimizewindow.png" width="18" height="18" border="0" /></a><a href="javascript:void(0);" onClick="parent.maximizeWindow()"><img src="../../lib/img/headertoolbar/icon_expandwindow.png" width="18" height="18" border="0" /></a><a href="javascript:void(0);" onClick="parent.closeWindow()"><img src="../../lib/img/headertoolbar/icon_closewindow.png" width="18" height="18" border="0" /></a><div class="clearfloat"></div></div></li>
    </ul>
    </div>
    <div id="menuwrapper">
    <ul id="p7menubar">
    <!-- ADD SIDEBAR - TO COME IN LATER
    <li class="topnav"><a href="javascript:void(0);" class="trigger2"><img src="../../lib/img/headertoolbar/toolbar_icon_sidebar_open.png" width="27" height="13" border="0" /></a></li>
    -->
      <!-- PLANT SELECTOR - NOT FOR DELIVERABLE
    <li class="topnav"><a href="javascript:void(0);" class="trigger">Plant: <strong>SNPP</strong></a>
    <ul>
    <li><a href="javascript:void(0);">Plant Selector</a></li>
    <li><em> </em></li>
    <li><a href="javascript:void(0);">SNPP</a></li>
    <li><a href="javascript:void(0);">BM</a></li>
    <li><a href="javascript:void(0);">SRNP</a></li>
    </ul>
    </li>
    -->
    <li class="topnav"><a href="javascript:void(0);" class="trigger">File</a>
    <ul>
    <li><a href="login.html" target="_blank">New Window</a></li>
    <li><em> </em></li>
    <li><a href="javascript:window.print();" onclick="window.print();">Print</a></li>
    <li><em> </em></li>
    <li><a href="login.html" target="_parent">Log Out</a></li>
    <li><a href="javascript:void(0);" onClick="parent.closeWindow();">Quit VIPER</a></li>
    </ul>
    </li>
      <li class="topnav"><a href="http://designsupport.viperapp.com" target="_blank" class="trigger">Help</a>
      <ul>
    <li><a href="login.html" target="_parent">Reset Connection</a></li>
    <li><em> </em></li>
    <li><a href="http://designsupport.viperapp.com/contact.cfm" target="_blank">Contact Support</a></li>
                                <li><a href="license.html" target="viperframe">View License</a></li>
    </ul>
    </li>
    </ul>
    <div class="clearfloat"></div>
    </div>
    </div>
    <!-- END P7EXP PULLDOWN MENU -->
    <iframe src="" id="viperframe" name="viperframe" frameborder="0" scrolling="no" width="100%"></iframe>
    <!--<iframe name="viperFrame" id="viperFrame" src="http://devcenter.viperapp.com/VS/ui/screens/plantselections.html" frameborder="0" scrolling="no" width="100%"></iframe>-->
    </body>
    </html>

    I have tried running another command and it still doesn't run the external URL function, just if it runs my no login command via the sandbox bridge,
    and it is a simple command
    here is the javascript it is running on the nologin.
    function noLogin(){
    alert('Your login information was incorrect, please try again');
    top.location.href="login.html";
    if it runs that over the sandboxbridge it works , if it doesnt then it doesnt.
    Anyone have any ideas, and I missing something on my iframe  ?

  • AIR applications will not install on Super OS (Ubuntu 9.04) 32-bit

    I was able to install Adobe Air on my system fine, but no
    AIR apps will install. Anything I try to install, it just pops up a window for a millisecond and refuses to install. If I download an AIR app, the AIR app installer pops up and gives the option to open or save and I can't install apps either way.
    Thanks for any help,
    Rob Steel

    Hey Rob
    Thanks for reporting the issue. In order for us to find out the cause of the behaviour you see on you system we would like you to provide some more information.
    1. Execute the following from terminal: touch ~/.airappinstall.log
    2. Try to install the air app and provide us the contents of this file.
    In case the contents of the log file is empty, try installing the app from command line:
    Adobe\ AIR\ Application\ Installer /path/to/AIR/file.air
    If there is a crash, can you provide us the crash log generated.
    Thanks for your time
    Sundeep

  • "Abobe AIR Application Installer" is damaged and can't be opened.

    I went just downloaded ADOBE AIR and when I try to use it to install one of my Apps I get the message, "Abobe AIR Application Installer" is damaged and can't be opened.
    Can someone please address this.
    Thank you,
    Dr. Alan

    Hi,
    Exactly some of our customers are experiencing with "Adobe AIR application Installer damaged" issues.
    Can someone help us here?

  • Unable to install an Adobe AIR application with -location to correct path

    Hi
    Im trying to silent install an air app on the command line (Windows).  But the path i use after -location is ignored.
    This is the code im using:
    "C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe" "-silent" "-location" "C:\Program Files\my_app_name" "C:\Program Files\my_app_name.air"
    What ever i add after -location isnt used and it gets added to the default location.  Has anybody else found this?
    Thanks
    James

    Thanks and see this article, the detail is not what is the command that allows me themassive installation of AIR application.

  • Font Anti-Aliasing Issues in HTML/Ajax based Air Applications

    It seems that the font-renderer in HTML/Ajax based Air Applications is using some kind of sub-pixel font renderer that is overriding and vastly inferior to the standard Windows ClearType, or any Apple based option as well.  This problem is particularly noticable with light text on a dark background, and made worse the smaller the text is.  I've put together an example image explaining exactly what I mean at: http://regator.com/fontRendering.png   (it's a large image 1126 x 1500 px)
    My example shows two fonts at four different sizes rendered in an HTML Air App vs the default Windows Cleartype, as well as using Safari to show the Font style anti-aliasing.  In all cases the HTML Air App rendering is far more difficult to read, and in many cases severely distorts the color of the text in a way that other subpixel algorithms do not.  As far as I can find after literally hours of googling and searching there's no way to override this in HTML based applications.  Is there any solution to this, or a planned fix for the renderer?  Other than this rendering issue, the HTML interface for creating Air apps is absolutely brilliant, this is just making my finished product look significantly less polished than it otherwise would if the text were more readable.
    Thanks.

    Dear caturner81, dear Adobe,
    is there a solution to this problem? I'd really love to fix the aliasing thing in Air/HTML!

  • Mapping root of URL path to web applications

              Does the name of the web application have to equal the first element in the URL
              path? The WebLogic 5.1
              documentation suggests that you can create such a mapping with a property:
              weblogic.httpd.webApp.<context>=<WebAppLocation>
              where <context> is the servlet context path (I presume that is the root of the
              URL path) and
              <WebAppLocation> is the application root directory (or WAR-file location). Is
              there any equivalent to
              this mapping in WebLogic 6.1, or must the URL path begin with the web application
              name?
              

              "Daniel Steinberg" <[email protected]> wrote:
              >
              >Does the name of the web application have to equal the first element
              >in the URL
              >path? The WebLogic 5.1
              >documentation suggests that you can create such a mapping with a property:
              >weblogic.httpd.webApp.<context>=<WebAppLocation>
              >where <context> is the servlet context path (I presume that is the root
              >of the
              >URL path) and
              ><WebAppLocation> is the application root directory (or WAR-file location).
              > Is
              >there any equivalent to
              >this mapping in WebLogic 6.1, or must the URL path begin with the web
              >application
              >name?
              I have looked further into the documentation, and the answer seems
              to be NO. However, I can solve my particular problem (supporting
              old URLs) by defining a default web application.
              

  • URL for Redirecting to a Desktop AIR Application

    Hi,
    I'm developing a Flex Project that runs on ADOBE AIR. This
    project contains two Flex desktop applications that runs in ADOBE
    AIR.Now i need to redirect to one Flex desktop application from
    another Flex desktop application.Can anyone please tell me how the
    URL should look like in the new UrlRequest( ). Thanks in advance
    for any help....................

    You can launch an AIR application from the browser if a few
    requirements are met.
    *Use must have the application already installed.
    *The application must have "allowBrowserInvocation" set to
    true in the application descriptor.
    *Must have AIR installed
    *Application must be launched by some sort of user
    interaction, ie, a mouse click (can't be launch
    automatically)

  • Adobe AIR Application certificate issue - Urgent

    Hello,
    I have created my AIR application in flex 3 using AIR 1.0. I have created it with local air certificate and dispatch the air application to the client. Now after 2-3 months i have got some new features to be added into that application for same client. I have lost my original certificate using which i have created the air application installer. Now if i am creating air with new certificate then it gives me following error:
    This application cannot be installed because this installer has been mis-configured. Please contact the application author for assistance.
    Can any one have any idea for how to get certificate recreated. Here certificate is not licenced one it was local. And my application is using auto update feature. So if i change the certificate then already installed application will never get update message. ITs a deadlock situation.Help me.
    Thanks
    Dhwani

    Samsung Tab 3 features x86 architecture, did you try an Android-x86 build? (add -arch x86 to compiler flags)

  • Issue with decreasing startup time of Air Application(Please Help)

    If someone knew the answer to this it would really help me. I put a large directory into my source folder that was pulling up HTML files through a mx:html. I added a creationComplete function so a the user would fill out a registration form before they start using the application. When I run the application from Flex it runs fine but when I export the application and turn it into a .air file and install it on a computer, the application seems to be scanning the entire directory(the src folder) the application is in, including the large sub-directory housing the HTML files, before the application starts. I don't know if its the creationComplete fuction or something else, but my application did not do this before but know its doing it now. There is no need to scan the entire folder before the application starts. Does anyone know what function would be scanning the source folder before opening the application? Is it the creationComplete function? Do I have any other alternatives besides for creationComplete that will not scan the entire folder at application startup, or is there anyway to exclude a specific subdiretory (in the src folder) at startup so the a application will not scan the entire folder before opening, or should I put the creationComplete function in a separate directory.
    What i'm using:
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns="*"
        height="730" width="1257" title="Prototype" xmlns:comp="components.*"
        creationComplete="checkRegistrationWinInfo(), checkRegistrationInfo()">

    Post both these methods:
    checkRegistrationWinInfo(), checkRegistrationInfo()
    creationComplete itself does nothing with the system. It's an internal (Flex) thing.
    AFAIK, an air application doesn't "scan" anything when started.

  • Comand line argument for updating .air applications

    Hi all,
    Please help me regarding the issue while updating the .air application silently using command line argument -update -silent -location <%INSTALLDIR%> "Location of .air file".
    For the fresh installation I used the following cmd line arguments
    ------> Adobe AIR Application Installer.exe -silent -eulaAccepted -programMenu -location "<INSTALLDIR>" "Location of .air file" ---> This will work for fresh installations only.
    but the same comand will not work if the older version is already installed in the machine we have t use -update argument.
    I don't fine correct argument list for updating the .air files. Please help me if any one know how to update the .air file silently using command line arguments.

    Hi,
    To update an app, the app installer should be invoked with the following command line params:
    -update -silent <dir> <url> <version>
    where <dir> is the full native path to the application, <url> is the URL to the .air file to update it with (either local or remote), and <version> is the version of the new app in the .air file.
    Thanks,
    Jian

  • Deployment of an Adobe AIR application in an enterprise environment

    Dear Team members,
    first of all my apologies for posting this thread in more than one forum (see Installations Issues) but the argument is very important to us and I don't know where discuss it.
    I would like to post a question to you regarding deployment doubts that we are trying to address.
    My company is working on the new version of our primary application previously built as a J2EE application with some reporting functions with Flex, and we want to use AIR in order to leverage its possibilities:
    Seamless integration with existing application functionalities (implemented as standard JEE web application pages) thanks to the integrated HTML capabilities
    Improved integration of the user interface with the desktop
    Native processes to provide additional functionalities
    Our application is targeted to pharmaceutical industry, subject to FDA regulations, and it affects more than 5000 users for each customer, so we have some specific requirements affecting the deployment and distribution of the software:
    Allow to run multiple versions of the software on the same client machine (to support test and acceptance activities in addition to the production environment)
    Minimize the effort of the initial setup on each client
    Manage the version upgrades without manual activities on each client
    Keep the test/acceptance and production environments strictly aligned to improve effectiveness of formal validation (ideally, an application once validated should be transported in production without any source code modification, recompilation or repackaging)
    The current browser-based strategy is perfectly fit to these requirements, and in the shift towards a desktop-based strategy we need to continue satisfying them as much as possible. We evaluated the standard distribution strategy of Adobe AIR applications, and noticed several attention points in this scenario.
    The first issue we encountered is the back-end services endpoint discovery problem. Simply hardcoding a server URL in the packaged application could be a viable solution for public internet-accessible applications, but we need to support multiple customers in their intranet, and each one typically requires multiple environments for the application (acceptance, production, etc.). Maintaining dozens of different packages of the AIR application to support all these customer environments clearly is not the solution. Neither we want to force thousands of different users to enter and maintain the correct server location in their local preferences.
    So, we thought to use a badge hosted in the back-end application to run the local AIR application: using the underlying API, we could activate the application specifying also the network location of the back-end services. We could also rely on the badge to install the application (and the AIR runtime if necessary)… however, application packaged as native installers cannot be installed, upgraded, or launched by the badge API (and we need to package ours as native to use native processes).
    We also noticed that multiple versions of an AIR application cannot be installed side-by-side in a client machine, and that the installation and upgrade of the application can be performed only when the local user has administrative rights on the machine (using standard or native packages), forcing us to rely on external software distribution systems in some customer scenarios (introducing additional complexities in the release cycle).
    At this point, in our opinion the standard deployment strategies of Adobe AIR applications are unfit for enterprise environments. In the enterprise world, many of the applications have migrated to a completely browser-based solution, while others enhanced their client layer to comply with the requirements, for example installing only a thin portion of the client code and allowing to connect to multiple server versions/environments with it (e.g. the SAP GUI universal client). Without smarter deployment and distribution tools, AIR applications currently are a step back compared to web applications in terms of manageability.
    So, we are trying to develop a solution to address these problems, with some concepts similar to JStart: install on the client machine a launcher application capable of being activated from a web page, dynamically locate, download and run the actual client bytecode, transparently enforce client software updates, and supporting multiple applications (and multiple versions of the same application). However, we are facing many technical problems due to internal architecture of AIR and we already spent a considerable amount of effort trying to find a solution. We are now thinking to return on the choice of AIR, going back to Flex.
    What is the position of Adobe on this argument? Is Adobe aware of these issues and are there any plans on this topic? Any advice?
    Thank you in advance

    For those following along, Oliver Goldman will be answering this post in future articles on his blog.
    Many great comments and questions here. I’m working on some follow-up posts to address these; nothing I could cram into this comment field would really do your query justice. - Oliver Goldman
    Pursuit of Simplicity
    Chris

  • How to Call a AIR application from Flex Application

    Hi,
        I have Used AIR (Desktop application) in Flex Builder to Upload a File from a local path and save it it a server path.
    I need to Call this AIR(Desktop application) from my Flex Application.... i.e
    I am using a link button to send a event using Script and Forward that Desktop application  from Flex Screen
    But it doesnot load that (Desktop application)  in Screen. Only Balnk screen is loaded from path
    Here is the code
    AIR(Desktop application)
    <?xml version="1.0" encoding="utf-8"?><mx:WindowedApplication 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="openBrowseWindow();">
    <mx:HTTPService id="urlpath" showBusyCursor="true" useProxy="false" method="
    POST" url="http://localhost:8080/nat/FlexAction.do?method=UrlPath"result="pathresult(event)"
    fault="faultHandler(event)"
    >  
    </mx:HTTPService> 
    <mx:Script>
    <![CDATA[
    import mx.events.FileEvent; 
    import mx.rpc.events.ResultEvent; 
    import mx.rpc.events.FaultEvent; 
    import mx.utils.ObjectUtil;  
    import mx.controls.Alert;
    private  
    var openFile:File = new File() 
    private  
    function openBrowseWindow():void{openFile.addEventListener(Event.SELECT, onOpenFileComplete);
    openFile.addEventListener(Event.OPEN, load);
    openFile.browse();
    private  
    function load():void{Alert.show(
    "load"); 
    var imageTypes:FileFilter = new FileFilter("Images (*.jpg, *.jpeg, *.gif, *.png)", "*.jpg; *.jpeg; *.gif; *.png"); 
    //var textTypes:FileFilter = new FileFilter("Text Files (*.txt, *.rtf)", "*.txt; *.rtf"); 
    var allTypes:Array = new Array(imageTypes);openFile.browse(allTypes);
    private  
    function faultHandler(event:FaultEvent):void { 
    //Alert.show("Fault")Alert.show(ObjectUtil.toString(event.fault));
     private  
    function pathresult(event:ResultEvent):void{Alert.show(
    "res") 
    //Alert.show(ObjectUtil.toString(event.result));}private  
    function onOpenFileComplete(event:Event):void{ 
    //mx.controls.Alert.show("event: "+event.target.nativePath +"UR!!!"); 
    var pPath = event.target.nativePath; 
    var parameters:Object = {FlexActionType:"PATH",path:pPath};  
    // Alert.show("Image Selected from Path : "+pPath); urlpath.send(parameters);
    //Alert.show("Passed.."+parameters);}
    ]]>
    </mx:Script>
    <mx:Button click="openBrowseWindow();onOpenFileComplete(event)" name="Upload" label="Upload" x="120.5" y="10"/> 
    Here is Mxml Code for Flex Application
    <?xml version="1.0" encoding="utf-8"?><mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns="http://ns.adobe.com/air/application/1.0.M4" >
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert; 
    private function Upload():void{ 
    // CursorManager.setBusyCursor();  
    //var url:String = "HomeAction.do?method=onLoad"; 
    //var url:String = "assets/Air.swf"; 
    var url1:URLRequest = new URLRequest("assets/Air.swf");navigateToURL(url1,
    "_self"); 
    // CursorManager.removeBusyCursor(); }
    ]]>
    </mx:Script>
    <mx:LinkButton id="up" click="Upload()" x="295" y="215" label="UpLoad"/>
    In this code i forward using s url to Open tat  Desktop application but a blank screen appears with out the proper output...
    Please Help me in this to forward AIR from Flex Screen..
    Thanks in Advance
    With Regards
    Gopinath.A
    Software Developer
    First Internet Systems Pvt. Ltd.,
    Chennai

    try this
    http://www.leonardofranca.com/index.php/2009/09/17/launching-an-installed-air-application- from-the-browser/
    regards
    Leonardo França
    Adobe Certified Expert Flex 3 with AIR
    Adobe Certified Expert Rich Internet Application Specialist v1.0
    Adobe Certified Expert Flash CS3 Professional
    Certified Professional Adobe Flex 2 Developer
    Adobe Certified Professional Flash MX 2004 Developer
    http://www.leonardofranca.com
    http://twitter/leofederal
    Manager AUGDF - Adobe User Group do Distrito Federal
    http://www.augdf.com.br
    http://twitter/augdf

  • AIR application with Flex 4.5 will not render content. What gives?

    OK,
    So I've upgraded to Flash Builder 4.5 Premium and I am unable to develop desktop AIR applications with the 4.5 Flex SDK. I start by simply creating a brand new AIR application using the default SDK (Flex 4.5). I set the title property on WindowedApplication and include a simple Label component. The project compiles fine but when I run the application all I see is the adl window in the dock but that's it. If I modify the Main-app.xml file to set the visible attribute to true, I will get a small window but there is no content although the output window shows the application swf being loaded. Checking the release version of the Main-app.xml file shows the correct path location to the swf.
    Here is what I've tried so far:
    Install/reinstall Flash Builder, 4+ times
    Downloaded the trial installation twice
    Downloaded the SDK's for 3.6, 4.1 and 4.5.0. I then copied each SDK folder and merged the AIR 2.6 SDK with each copy. So now I have 6 SDK versions; one pristine and the other with the AIR 2.6 SDK merged. I then added each SDK individually and created an AIR desktop application for each. Each and every one works fine with the exception of the two 4.5 SDK's. They will not render content.
    I created a simple creation complete handler for the application that declares a simple variable and assigns a value to it. I then put a break point on the assignment and it never gets caught. More evidence that the swf isn't getting loaded.
    The computer I'm running on is a Mac Book Pro with Snow Leopard 10.6.7. If I create a web project in each of the 6 SDK's, those will work just fine. What the heck is it with Flex 4.5 and the AIR 2.6 SDK on this machine? I have the AIR 2.6 runtime installed as well as a number of AIR applications that work just fine. I also tried my 4.5 test on my windows machine and that worked like a champ.
    I am completely out of ideas. Finding information has been difficult because everyone is all about mobile so searching for desktop issues is a losing battle. I realize this is a long email but I'm desperate for help. There must be someone out there that knows more about the low level interaction between Flex 4.5/AIR 2.6 and the OS.

    Well, I finally found the issue, a corrupted mm.cfg file in /Library/Application Support/Macromedia. I deleted the file and then adl ran just fine.

Maybe you are looking for

  • Not Printing the source storage bin in the layout

    Hi Gurus As i am printing the layout to pick the goods for delivery, in which iam not getting the source storage bin for some deliveries only. sometimes its picking and some times not, what has been the reason behind it. i have take the help of an Ab

  • Creation of Service Registry

    Dear Experts Im new to web services, i created a web service and i want to configure it in service registry, but i cant find suitable document for creating the service registry, help regarding creation of service registry will be highly appreciable R

  • Snapshot and backup

    Hello BW Experts, Current Scenario: There is a daily snapshot of the BW system in nite for our Production server. During this they have to stop any jobs / loads running at that time. Secondly they take a backup every weekend. They stop any jobs / loa

  • Calling an external web service from a session bean

    We're integrating our Weblogic EJB application with a third party JBoss-based product that exposes a web service API. I thought that Weblogic should have all of the libraries available that I would need in order to make this connection. However, when

  • ASP form reads from access, can't write

    I am a complete ASP noob. I use ColdFusion and ASP has proven to be a pain I wish I would have never touched. I need to add a simple contact form to the end of an ASP page to capture basic info. When the page loads, all is well. In fact, the page is