Access Raw Outgoing NetStream Data in Flex/AIR

I have a Flex/AIR desktop application that connects a local camera and microphone to a NetStream for delivery to a Flash media server.
However, I would also like to archive a copy of the outgoing stream locally on the filesystem. Is there any access to the actual bytestream of a NetStream object (even in the dreaded mx.internal namespace) that I could turn around and feed to a FileStream for the local archive?

Am I to guess there's just no way to access that raw bytestream from within Flex?

Similar Messages

  • How to access the following xml data in Flex

    <users>
    <user dept id="HR">
         <user>
              <fname>mm</fname>
              <email>[email protected]</email>
         </user>
         <user>
              <fname>sss</fname>
              <email>[email protected]</email>
         </user>
    </dept>
    <user dept id="Finance">
         <user>
              <fname>ffff</fname>
              <email>[email protected]</email>
         </user>
         <user>
              <fname>www</fname>
              <email>[email protected]</email>
         </user>
    </dept>
    </users>
    using HTTP service through access the data
    this my user.xml file i want to display all the item in flex datagrid using tab navigator function................ each tab navigator contain one data grid for corresponding Dept like HR, sales , Finance
    corresponding information will display in data grid
    first tab navigatore is
    HR ->  data grid field like fname , Email
    finance -> fname, E Mail

    great for quick reply
    my XML file is data.xml
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    private var myUser:XML =
    <users>
    <dept id="hr">
        <user>
            <firstName>murali</firstName>
            <emailAddress>[email protected]</emailAddress>
        </user>
        <user>
            <firstName>bharathi</firstName>
            <emailAddress>[email protected]</emailAddress>
        </user>
        <user>
            <firstName>vasa</firstName>
            <emailAddress>[email protected]</emailAddress>
        </user>
    </dept>
    <dept id = "finance">
        <user>
            <firstName>mohan</firstName>
            <emailAddress>[email protected]</emailAddress>
        </user>
        <user>
            <firstName>vinoth</firstName>
            <emailAddress>[email protected]</emailAddress>
        </user>
    </dept>
    <dept ="sales">
        <user>
            <firstName>manoj</firstName>
            <emailAddress>[email protected]</emailAddress>
        </user>
        <user>
            <firstName>deepan</firstName>
            <emailAddress>[email protected]</emailAddress>
        </user>
    </dept>
    </users>
    codings i used
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="absolute" creationComplete="htp.send()">
        <mx:HTTPService id="htp" url="data.xml"
            result="resulthandler(event)"
            fault="faulthandler(event)"/>
            <mx:Script>
                <![CDATA[
                    import mx.collections.ArrayCollection;
                    import mx.rpc.events.FaultEvent;
                    import mx.rpc.events.ResultEvent;
                    [Bindable] private var userlist:ArrayCollection;
                    private function resulthandler(event:ResultEvent):void
                        userlist=(htp.lastResult.user.dept.user);
                    private function faulthandler(event:FaultEvent):void
                ]]>
            </mx:Script>
            <mx:TabNavigator>
            <mx:Repeater id="rep" dataProvider="{data.dept}"> <!--data.xml is my fle name-->
                <mx:Canvas label="{rep.currentItem.@id}">
                    <mx:DataGrid dataProvider="{rep.currentItem.user}">
                        <mx:columns>
                            <mx:DataGridColumn headerText="Name" dataField="fname"/>
                            <mx:DataGridColumn headerText="E Mail" dataField="email"/>
                        </mx:columns>
                    </mx:DataGrid>
                </mx:Canvas>      
            </mx:Repeater>
    </mx:TabNavigator>
    </mx:Application>
    its not show anything

  • Flex/Air Access up/download to a relational DB - BLOBS

    I am coding an homebrew application to access a database of my personal photos (stored as jepgs) which is going to load up a gallery of thumbnails and then drop the original into illustrator/photoshop. My database is mysql with the jepgs stored as binary large objects and will be on a separate server to the laptop running the app. I have a layer of PHP dealing with the database access and then ontop I have an Air application. The point is going to allow me to load a thumbnail library of all my photos in the application, if needs be allow the application to load illustrator an then perform some editing and then the application needs to be upload the edited image back into the database. Ideally when I come to polishing the app I'll be looking at doing this through a drag/drop interface.
    I tried using Flex but couldn't get the app to call/load the local illustrator/photoshop application, so I moved it to an Air application and seem to be going okay apart from the fact I seem to be more limited in terms of the database access and the amount of files that the air app can pull out of the database at any one time and the ability to write back the photo from illustrator back into the database. Both Air and flex have ahd issues with dealing with BLOBS also.
    I'm pulling my hair out a bit trying to get this to operate and since taken a step back to re-look at my design and see if mysql with the php layer is the most efficient method for storage and 'talking' to either flex/air? i.e. Flex/Air receiving the data as BLOBS?
    Would something like coldfusion offer me any improvements in this scenario swapped for the PHP? Or even changing the DB to something more mainstream such as oracle 9 lite or sql server? In terms of the application itself is my movement over to air pre-emptive? Or should flex be able to deliver all the functionality of AIR without any messy coding workarounds?

    Yes I posted the current tables in the last part so yes I have a FK in the images table...
    (tbCategories)
    (PK)catID
    category
    catThumb
    (tbImages)
    (PK)imgID
    imgTitle
    imgDescription
    imgThumb
    imgMain
    (FK)catID
    Ok so when building this page on the page that I referenced I would query the tbCategories to pull the most recent category list then correct?
    Then when going to the detail page when the selected category is selected I would pass the catID and then let the record set reflect the query that was built in Access so it shows only the photos from the selected category?
    thanks
    B

  • Interactive medical report with Flex/AIR, XML, U3D and PDF

    Hello,
    I am computer science student and during my master thesis I want to program an interactive medical report which should include some 3D models (U3D) and which should provide the following options:
    Interactive manipulation of the 3D models
    Typing in a structured medical report
    Loading of a XML file with additional information
    Loading of medical image data (jpg images)
    At best, only one pdf file as resulting report
    And: A nice user interface (I like the interface elements of Flex...)
    I think, the best way is a pdf file which includes all the needed data. The problem is that I don't know exactly what software combination fulfills my requirements... I read some things about Adobe Flex and AIR and the U3D format and I suppose, the great interface builder "Flash Builder 4" might be useful to generate a nice user interface. BUT: I was not able to find out, how to include U3D in Flex/AIR.
    Then I found the nice pdf library iText (http://itextpdf.com/examples/index.php?page=chapters) which is able to produce a pdf file from a swf file and to include a U3D-model with an additional JavaScript file for manipulations.
    BUT again: If I have a swf flash file with the nice user interface (generated with the Flash Builder), how can I access the U3D model in the final pdf document? Imagine: I click on a "rotate" button in the swf and then the U3D-Model in the pdf should rotate...
    Ok, as you can see, it is a complex szenario.
    My questions summarized:
    What, in your opinion, is the best technology for my task? Flex? AIR?
    How can I import the U3D-models? Should I use PaperVision, Sandy3D or something else?
    Is there a way to save user inputs directly in the pdf file, or as new pdf file or as xml file?
    What is the best way to produce the user interface? Flashbuilder, or maybe a html container with "normal" html interface elements and then the events communication between JavaScript and ActionScript?
    How can I export all the stuff to one pdf document? Should I use iText?
    Best regards,
    Steven

    Thanks for making my point - perfect is the enemy of good.  We tolerate less capable, less perfect system that are in place now, because of the false expectation that it should be perfect.  Incremental improvements are rejected, because they are not perfect.  Even an imperfect algorithm can find 'Broken' as a common thread in your example, and highlight them for the clinician to evaluate their impact on the current treatment.  This no less likely to miss the connection than a clinician trying to scan through handwritten notes, in the 5 - 10 minutes he/she has to interact with the patient and determine what to do. 
    Because of legal concerns, incremental but imperfect improvements don't get implemented, so nothing ever moves forward.  Imagine if after the Wright Brothers first flight, no improvements were considered acceptable unless they completely eliminated the risk of failure - there wouldn't be any airlines to go bankrupt today!
    For the most part, IT has focused on activities where 'perfect' is achievable.  Accounting in its various forms have been the primary focus of most IT systems.  In that area, the vocabulary is very limited, well defined, and consistent.  A debit is always a debit, and a credit is always a credit.  Medicine is completely different. It is much larger in scope, poorly defined, the vocabularies are mostly non-existent, and where they exist are incomplete and inconsistent.  Despite the huge leaps forward in the last century, there is still more unknown than known about how and why the body works.  This environment makes most individuals trained in IT uncomfortable.  Until we learn how to deal with 'fuzzy', Healthcare IT is going to be limited to the billing and collection functions that it mostly accomplishes today.
    Mark

  • Flex AIR iOS application with rtmps

    Hi,
    If I am accessing flex AIR application from Mac or iOS (iPad) using secure rtmp then it gives me error. It is not able to connect to the server.  I have a self signed certificate generated using java keytool. I have configured it on tomcat and it works for the ssl in browser with https://localhost:8080, but fails when using rtmps from flex application especially in Mac and iPad.  It works in Android tablet and windows machine though.
    Here is the configuration in I gave in the server for ssl.
    <server id="secure-nio-server" class="flex.messaging.socketserver.SocketServer">
            <properties>
                <keystore-file>D:/keystore.jks</keystore-file>
                <keystore-password>password</keystore-password>
            </properties>
        </server>
    <channel-definition id="mobility-rtmp"
          class="mx.messaging.channels.SecureRTMPChannel">
          <endpoint url="rtmps://{server.name}:@flex.rtmp.port@"
            class="flex.messaging.endpoints.SecureRTMPEndpoint"/>
       <server ref="secure-nio-server">
          <properties>
            <idle-timeout-minutes>20</idle-timeout-minutes>
            <!-- for deployment on WebSphere, must be mapped to a WorkManager available in the web application's jndi context.
            <websphere-workmanager-jndi-name>java:comp/env/wm/MessagingWorkManager</websphere-workman ager-jndi-name>
            -->
    </properties>
    </server>
        </channel-definition>
    Here is the exception I am getting on server side.
    INFO: [LCDS] 01/21/2012 17:14:44.258 [ERROR] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] failed to read Connection '521330370' or process the data; Connection is in the 'Handshaking' state and will be forced closed.
    javax.net.ssl.SSLException: Inbound closed before receiving peer's close_notify: possible truncation attack?
    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLEngineImpl.fatal(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLEngineImpl.fatal(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLEngineImpl.closeInbound(Unknown Source)
    at flex.messaging.socketserver.SSLConnection.handshake(SSLConnection.java:298)
    at flex.messaging.socketserver.Connection$ConnectionReader.run(Connection.java:845)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Jan 21, 2012 5:14:44 PM org.apache.catalina.core.ApplicationContext log
    INFO: [LCDS] 01/21/2012 17:14:44.258 [DEBUG] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] Connection '521330370' has changed state to: Closing
    Jan 21, 2012 5:14:44 PM org.apache.catalina.core.ApplicationContext log
    INFO: [LCDS] 01/21/2012 17:14:44.258 [DEBUG] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] closing Connection '521330370'.
    Jan 21, 2012 5:14:44 PM org.apache.catalina.core.ApplicationContext log
    INFO: [LCDS] 01/21/2012 17:14:44.258 [DEBUG] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] Connection '521330370' has changed state to: Closed
    Jan 21, 2012 5:14:44 PM org.apache.catalina.core.ApplicationContext log
    INFO: [LCDS] 01/21/2012 17:14:44.258 [DEBUG] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] closed Connection '521330370'.
    Jan 21, 2012 5:14:44 PM org.apache.catalina.core.ApplicationContext log
    INFO: [LCDS] 01/21/2012 17:14:44.258 [DEBUG] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] Connection '521330370' finished a read. -1 bytes were read.
    Please help.
    Thanks,
    Swathi.

    Did you get anywhere with this, I'm having a similar issue?
    I have an Air app that works fine using rtmp in iOS but not rtmps (it works fine in Android for both). The release notes for 3.1 (http://kb2.adobe.com/cps/923/cpsid_92350.html) suggest there was a problem for rtmps on iOS, but I'm using the latest 3.1 SDK version.
    I'm suspecting an SSL certificate issue as in Android I get prompted as to whether I trust the certificate, but not on the iPhone. I have installed the certificate manually but to no avail.

  • Twitter Feed Within A Flex/Air Application

    I am attempting to advance an appilcation I've created so that it incorporates a live twitter feed i.e. when users access the application their own twitter feed is shown within it and is updated live.
    I have no experience in using either twitter itself or how to incorporate twitter feeds into a flex/air application specifically and was wondering if anyone can tell me exactly what I'd need to do to achieve this?
    A further addition my client has requested is the use of live images. The app itself is basically an interactive favourites menu with users clicking on and adding links to sites within the app. Each of these links is represented by an icon which is basically a screenshot of each site. I want to alter this so that these images change live AS the site themselves change so they are constantly up to date. Is this also possible at all and if so can anyone give me advice on how this could be achieved?

    Thanks a lot. I've used another method that simply lets the user enter their twitter name and it loads their live feed. I suppose that way would work too though. Cheers.

  • Example working Flex AIR app for Android?

    I'm having trouble getting even the most basic AIR app working on Android. Here is the 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" xmlns:local="*"
                            width="600" height="600">
         <fx:Declarations>
             <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <mx:Label text="Hello World"/>
    </s:WindowedApplication>
    It works fine running on  Windows in Flash Builder, obviously it's pretty simple. Here are the  commands I use to put it on a Samsung Galaxy Tab with Android 2.2.
    C:\Users\Ryan\Adobe  Flash Builder 4\Test2\bin-release>adt -package -storetype pkcs12  -keystore C:\Users\Ryan\STG-Android.pfx Test2.air Test2-app.xml  Test2.swf
    password:
    C:\Users\Ryan\Adobe Flash Builder 4\Test2\bin-release>adt -package  -target apk -storetype pkcs12 -keystore C:\Users\Ryan\STG-Android.pfx  Test2.apk Test2-app.xml Test2.swf
    password:
    test
    C:\Users\Ryan\Adobe Flash Builder 4\Test2\bin-release>adb install -r Test2.apk
    2286 KB/s (419172 bytes in 0.179s)
             pkg: /data/local/tmp/Test2.apk
    Success
    A Test2 app icon shows up on my Galaxy Tab  under Applications but when I run the app I just see a plain white  screen, I don't see the words "Hello World". Any ideas? Does anyone have  an example Flex AIR app that works on Android and can post the code so I  can try it on my Galaxy Tab? I know AIR is installed correctly on my  Galaxy because I installed an AIR app called South Park Avatar Creator  that I got from the market and it works fine.
    Thanks,
    Ryan
    P.S.  Here is the Test2-app.xml from my non-working project above in case it  helps. This is the default generated with a new Flex app in Flash  Builder 4 using the Flex 4.1.0 AIR 2.5 SDK but I uncommented the andoid  tags and set the visible tag to true.
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/2.5">
    <!-- Adobe AIR Application Descriptor File Template.
        Specifies parameters for identifying, installing, and launching AIR applications.
        xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/2.5
                 The last segment of the namespace specifies the version
                 of the AIR runtime required for this application to run.
         minimumPatchLevel - The minimum patch level of the AIR runtime required to run
                 the application. Optional.
    -->
        <!-- A universally unique application identifier. Must be unique across all AIR applications.
         Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
         <id>Test2</id>
        <!-- Used as the filename for the application. Required. -->
         <filename>Test2</filename>
        <!-- The name that is displayed in the AIR application installer.
         May have multiple values for each language. See samples or xsd schema file. Optional. -->
         <name>Test2</name>
         <!-- A string value of the format  <0-999>.<0-999>.<0-999> that represents application  version which can be used to check for application upgrade.
         Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.
         An updated version of application must have a versionNumber value  higher than the previous version. Required for namespace >= 2.5 .  -->
         <versionNumber>1.0.0</versionNumber>
         <!-- A string value (such as "v1", "2.5", or "Alpha 1") that  represents the version of the application, as it should be shown to  users. Optional. -->
         <!-- <versionLabel></versionLabel> -->
        <!-- Description, displayed in the AIR application installer.
         May have multiple values for each language. See samples or xsd schema file. Optional. -->
         <!-- <description></description> -->
        <!-- Copyright information. Optional -->
         <!-- <copyright></copyright> -->
        <!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 -->
         <!-- <publisherID></publisherID> -->
        <!-- Settings for the application's initial window. Required. -->
         <initialWindow>
             <!-- The main SWF or HTML file of the application. Required. -->
             <!-- Note: In Flash Builder, the SWF reference is set automatically. -->
             <content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
             <!-- The title of the main window. Optional. -->
             <!-- <title></title> -->
            <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
             <!-- <systemChrome></systemChrome> -->
            <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
             <!-- <transparent></transparent> -->
            <!-- Whether the window is initially visible. Optional. Default false. -->
             <visible>true</visible>
            <!-- Whether the user can minimize the window. Optional. Default true. -->
             <!-- <minimizable></minimizable> -->
            <!-- Whether the user can maximize the window. Optional. Default true. -->
             <!-- <maximizable></maximizable> -->
            <!-- Whether the user can resize the window. Optional. Default true. -->
             <!-- <resizable></resizable> -->
            <!-- The window's initial width in pixels. Optional. -->
             <!-- <width></width> -->
            <!-- The window's initial height in pixels. Optional. -->
             <!-- <height></height> -->
            <!-- The window's initial x position. Optional. -->
             <!-- <x></x> -->
            <!-- The window's initial y position. Optional. -->
             <!-- <y></y> -->
            <!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. -->
             <!-- <minSize></minSize> -->
            <!-- The window's initial maximum size, specified as a  width/height pair in pixels, such as "1600 1200". Optional. -->
             <!-- <maxSize></maxSize> -->
         </initialWindow>
        <!-- We recommend omitting the supportedProfiles element, -->
         <!-- which in turn permits your application to be deployed to all -->
         <!-- devices supported by AIR. If you wish to restrict deployment -->
         <!-- (i.e., to only mobile devices) then add this element and list -->
         <!-- only the profiles which your application does support. -->
         <!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> -->
        <!-- The subpath of the standard default installation location to use. Optional. -->
         <!-- <installFolder></installFolder> -->
        <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
         <!-- <programMenuFolder></programMenuFolder> -->
        <!-- The icon the system uses for the application. For at least one resolution,
         specify the path to a PNG file included in the AIR package. Optional. -->
         <!-- <icon>
             <image16x16></image16x16>
             <image32x32></image32x32>
             <image36x36></image36x36>
             <image48x48></image48x48>
             <image72x72></image72x72>
             <image128x128></image128x128>
         </icon> -->
        <!-- Whether the application handles the update when a user double-clicks an update version
         of the AIR file (true), or the default AIR application installer handles the update (false).
         Optional. Default false. -->
         <!-- <customUpdateUI></customUpdateUI> -->
         <!-- Whether the application can be launched when the user clicks a link in a web browser.
         Optional. Default false. -->
         <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
        <!-- Listing of file types for which the application can register. Optional. -->
         <!-- <fileTypes> -->
            <!-- Defines one file type. Optional. -->
             <!-- <fileType> -->
                <!-- The name that the system displays for the registered file type. Required. -->
                 <!-- <name></name> -->
                <!-- The extension to register. Required. -->
                 <!-- <extension></extension> -->
                 <!-- The description of the file type. Optional. -->
                 <!-- <description></description> -->
                 <!-- The MIME content type. -->
                 <!-- <contentType></contentType> -->
                 <!-- The icon to display for the file type. Optional. -->
                 <!-- <icon>
                     <image16x16></image16x16>
                     <image32x32></image32x32>
                     <image48x48></image48x48>
                     <image128x128></image128x128>
                 </icon> -->
             <!-- </fileType> -->
         <!-- </fileTypes> -->
        <!-- Specify Android specific tags that get passed to AndroidManifest.xml file. -->
         <android>
             <manifestAdditions>
             <![CDATA[
                 <manifest android:installLocation="auto">
                     <uses-permission android:name="android.permission.INTERNET"/>
                     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
                     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
                     <uses-configuration android:reqFiveWayNav="true"/>
                     <supports-screens android:normalScreens="true"/>
                     <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
                     <application android:enabled="true">
                         <activity android:excludeFromRecents="false">
                             <intent-filter>
                                 <action android:name="android.intent.action.MAIN"/>
                                 <category android:name="android.intent.category.LAUNCHER"/>
                             </intent-filter>
                         </activity>
                     </application>
                 </manifest>
             ]]>
             </manifestAdditions>
         </android>
         <!-- End of the schema for adding the android specific tags in AndroidManifest.xml file -->
    </application>

    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                            xmlns:s="library://ns.adobe.com/flex/spark"
                            xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:local="*"
                            width="600" height="600">
         <fx:Declarations>
             <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <mx:Label text="Hello World"/>
    </s:Application>

  • How do i access the email folder on my macbook air?

    how do i access the email folder on my macbook air?

    OS X doesn't really encourage users to tamper with that folder.  Instead, the idea is to use your email application to keep your mail data in order.
    What are you trying to do?

  • IOS 6.0 simulator error / Flex+AIR 3.5

    I am not able to run a Flex/AIR program on the IOS 6.0 simulator. I searched all forums. I am new to using IOS simulator. Any help is appreciated.
    I am using Flex 4.6 and AIR 3.5, with target swf version 18. A simple Flex app (WindowedApplication with a Label in it) crashes at initialization in IOS simulator.
    <?xml version="1.0"?>
    <s:WindowedApplication
      xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:mx="library://ns.adobe.com/flex/mx"
      xmlns:s="library://ns.adobe.com/flex/spark">
      <s:Label text="Test"/>
    </s:WindowedApplication>
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
      at spark.components::WindowedApplication/initialize()
      at ptest/initialize()
      at mx.managers.systemClasses::ChildManager/childAdded()
      at mx.managers.systemClasses::ChildManager/initializeTopLevelWindow()
      at mx.managers::SystemManager/initializeTopLevelWindow()
      at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::kickOff()  at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::preloader_completeHandler()
      at flash.events::EventDispatcher/dispatchEventFunction()
      at flash.events::EventDispatcher/dispatchEvent()
      at mx.preloaders::Preloader/timerHandler()

    Update: the problem was resolved by changing WindowedApplication to Application.
    Is WindowedApplication not allowed for IOS/mobile ? I couldn't find any doc on this.

  • Is there any MS Sql Server connector available for Flex Air.?

    hi,
       I want to connect my flex Air application with MS Sql server.* directly without any server side scripting. I got MySql Connector , which is available in  (http://code.google.com/p/assql/downloads/list). Like this is there any connector is available .Please share it
    thanks
    karthy

    I do have exactly the same questions. SO far the fas_mssql_connector.asp file is placed at the 'wwwroot' folder of the 'inetpub' folder of the IIS server. As hostname I use '[MyServer]' since it should run on the same machine and username and password are correct.
    The fas_MSsql_Clean file is setup in a way that the name of the database is specified and the url to the asp file is set as: http://[MyServer]/fas_mssql_connector.asp
    My SQL query looks like this:
    private function getDbData():void
        mssqlQuery("Select * from Tomat", "getDataO3");
    And the MXML document like this:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="955" minHeight="600">
        <mx:Script source="Actionscript/MSsql.as"/>
        <mx:Script source="Actionscript/SqlQueries.as"/>
        <mx:DataGrid x="148" y="95" id="dgData">
            <mx:columns>
                <mx:DataGridColumn headerText="Column 1" dataField="col1"/>
                <mx:DataGridColumn headerText="Column 2" dataField="col2"/>
                <mx:DataGridColumn headerText="Column 3" dataField="col3"/>
            </mx:columns>
        </mx:DataGrid>
        <mx:Button x="148" y="264" label="Get data" id="btnGet" click="getDbData()"/>
    </mx:Application>
    However the application is busy for a long time and I do not receive a single piece of data. Any help with this?
    Thanks in advance.

  • Connect oracle data in flex 4

    Thanks for your reply ...since I am new to flex....kindly tell me step by step process....and which code should be write on the state.....to connect  oracle data in flex 4

    hi
             you can not connect to oracle database from flex4 directly.. But there may be some thing in adobe air to connect to the local sql database like sql lite.. i dont think exactly there may be or may not be connect to database from flex.. we are using  blazeds to connect to the database server... this will make easier

  • Flash, Flex, AIR Which is best for producing small interactive apps?

    Hi
    I posted to the flash forum but really looking for feedback from flash, flex, AIR users as well
    I'm looking for the forums thoughts and advice on which of Adobe's current technology set (CS5) is best suited for creating small interactive applications/packages by users who would not have any background in coding and very little interest in learning coding.
    The idea is that users would know basic drag & drop development and maybe extend it to include some basic scripting to wire up elements of it. The ability to develope applications for a range of access points (website, mobile, desktop) would also an added benefit
    The over arching idea would be to let the users create some apps/programmes/packages quickly on any topic they like but not bog them down with coding
    Which CS5 technologies would be best for that

    I don't see how it would be any different for mobile than for desktop, considering the biggest difference is frame-size.
    Flash Builder is very good at building fluid layouts.  VERY good.  By extension, Catalyst, built on the same framework, should be too (haven't seen the final version, but the betas were looking good in this regard).
    The entire platform has been getting optimized for mobile creation lately, and CS5 should have a lot of tooling towards that end.
    I would suggest downloading the trial version of the softwares when they are released (supposed to be mid-may) and playing around with it before you decide.
    If you want to, you can hit up labs.adobe.com to download the beta of Catalyst right now, which might give you the answers you need. (Flash Builder was already released, and is available on adobe's site for trial download currently)

  • Flex Air & SSH or FTP ... ??

    I am new to flex, and was wondering if it were possible to
    create a Flex Air application that can access a server using SSH or
    the FTP socket? What I want to do is have a program that downloads
    some necessary files from a server and save it to the local machine
    running the Flex Air Application.
    Is this possible? If so, can anyone point me in the right
    direction to some documentation or tutorials?
    Thanks.
    Rob

    Hello, I've create 2 library sshcmd.swc and scpcmd.swc with adobe air 2.0 to create applications that can send files and commands to remote hosts using ssh. Same that putty.
    Actually is compatible with windows air applications.
    To acquire this library contact me [email protected]

  • How to delete spotlight data in macbook air ?

    how to delete spotlight data in macbook air ?

    Open system preferences and go to Spotlight then to the privacy tab and add the Macintsoh HD to the list for "Prevent Spotlight from searching these locations. That will remove all spotlght data. Then you should highlight that entry and click the Minus ( - ) sign at the bottom to have spotlight reindex your drive.

  • I recently installed an app CARTOON HD. I stupidly clicked install as I read that it wants access to my protected data. How can I see what it wants access to and how do I delete it

    I recently installed an app CARTOON HD. I stupidly clicked install as I read that it wants access to my protected data.... I think.  How can I see what it wants access to and how do I delete it

    How do I delete it permanently if it has indeed requested my protected/personal data?

Maybe you are looking for

  • Report output in TXT format BOXI3.1

    Our requirement is to save the report in txt format. Currently we are using BOXI 3.1and using the option of CSV to convert it into TXT format. This lead to addtional overhead of removing headers and modfiying the delimiters. Is there any option avaia

  • Adjust color temperature how?

    When shooting a play with tungsten lighting I set the camcorder to custom white balance but forgot to adjust the color temperature and the video now has a reddish cast. If it was a still photo, I could open it in adobe raw/lightroom and adjust the co

  • Universal Windows 8.1 & Phone App accessing on-premise SQL Server DB and offline SQLite DB

    I am new to Windows Mobile App development. I am creating a mobile app that I want to connect and get data/authentication from on-premise SQL Server database.  I then would like to have a local (on device) SQLite DB to hand offline situations. I am a

  • User Profile Option Values

    The concurrent report User Profile Option Values, is only site value levels. Are user level values more powerful, i.e. do they overide such values. How can I determine profile option values set at user level? Is there a similar report?

  • Tuning Queries

    1) While using toad for sql tuning,it's adding +0 to the where clause columns ? What's the significance of adding zero? 2) One more thing I observed it's rewriting joins : For ex : select * FROM tablea a, tableb b, tablec c, tabled d WHERE a.CREATED