New to adobe flex 2.0

hello! can anybody tell me how to use adobe flex 2.0? can i
also make a html file using flex? any reply would be very much
appreciated. thanks.

Hi,
I've just started learning Flex too. I agree, the Adobe
"Learrn About Flex" is the best place to start. In particular, the
video "See a Flex app built" gives you a really good overview of
how you use the interface - and what it is capable of doing - cool!
It's not html, its mxml. Your design is compiled into a Flash
movie which you can either play in Flash Player 9 or run as a
desktop app using Adobe AIR.
I also signed up with Total Training for their online video
tutorials.

Similar Messages

  • Hii,i m new to adobe flex but want a basic start...where to get pdf files to study

    hii,i m new to adobe flex but want a basic start...where to get pdf files to study

    A good place to start is with the Flex in a Week online course that you can do at your own pace.  You can download the Day Project Files and get PDFs of all the transcripts for the videos and all the starter and solution files.
    There is also more infomation here as well:  http://www.adobe.com/devnet/flex.html
    It is not in a PDF format but you can print it out or just work at your own pace online to get started with Flex.

  • Integration of Adobe Flex with SAP Web Dynpro ABAP

    I am new to adobe flex development. i am following a tutorial prepared by
    Mr. Karthikeyan Venkatesan (Infosys Technologies Limited) Integration of Adobe Flex with SAP Web Dynpro ABAP-for ABAPers
    He used flex 3 to develop the flex application. i am using flex 4 downloaded from adobe(At a time Build release I used low version only 3.5). I followed all the steps. At a time of Run the data was not came.
    How to fetch the data?
    Please Guide how to proceed.

    Hi Laxmikanth,
    For Adebo Flex help..
    Please go through Thomas tutorial..
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10989ef6-968c-2b10-50a9-eb34a5267163&overridelayout=true
    and ...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/307b434f-ff32-2b10-e885-991247270480?quicklink=index&overridelayout=true
    Hope it might helps you
    Thanks,
    Kris.

  • Adobe Flex 3 Dashboard and Iframe

    Hello;
    I am new to Adobe Flex; I have downloaded the source for a Dashboard provided by ESRI from the following link: http://examples.adobe.com/flex3/devnet/dashboard/main.html , I played with the source and I managed to understand some of the methods used. I am trying to use one of the panels to browse PDF document using the IFrame method, can you please help.
    Regards
    Khalid Almansour

    Thank you for your response. But, I think you mean to say I would have 4 pods, the 2nd being transparent but that would not look good from user point of view. I should have been more clear about the display. Sorry about that. Actually, I wanted the 1st pod width=100%, as follows:
    -       Pod 1      -
    - Pod 2-  -Pod3-

  • How to save the data to sap abap using Adobe Flex

    Hi Everybody......
    I am new to Adobe flex with sap abap.
          How to save the data in sap abap using Adobe Flex coding is Action Script and using RFC web service.
    Please give me any suggisions on that.
    Thank you
    Venkatesh V

    Hi Venkatesh,
    Try with folowing coding...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
         initialize="initApp()">
         <mx:Label x="10" y="23" text="Airline" width="90" id="lblAirline"/>
         <mx:TextInput x="108" y="21" id="txtAirline"/>
         <mx:Button x="10" y="49" label="Get Data" id="btnGetData" enabled="false" click="getData()"/>
         <mx:DataGrid x="10" y="97" id="dgFlightData" dataProvider="">
         </mx:DataGrid>
           <mx:Script>
              <![CDATA[
                   import mx.collections.ArrayCollection;
                   import mx.rpc.AbstractOperation;
                   import mx.rpc.events.FaultEvent;
                   import mx.rpc.soap.LoadEvent;
                   import mx.rpc.events.ResultEvent;
                   import mx.rpc.soap.WebService;
                   [Bindable] public var flightData:ArrayCollection;
        private var flightWS:WebService;
         private function initApp():void{
              flightWS = new WebService();
              flightWS.wsdl = "http://uscib20.wdf.sap.corp:50021/sap/bc/soap/wsdl11?services=ZGTEST&sap-client=000";
            flightWS.addEventListener(FaultEvent.FAULT,onWSError);
              flightWS.addEventListener(LoadEvent.LOAD,onWSDLLoaded);
             flightWS.addEventListener(ResultEvent.RESULT,onFlightWSGotResult);
              flightWS.loadWSDL();
    private function getData():void{
              var operation:AbstractOperation = flightWS.getOperation("ZGTEST");
              var input:Object = new Object();
              input.Airline = txtAirline.text.toUpperCase();
              operation.arguments = input;
              operation.send();
         private function onWSError  (event:FaultEvent):void{
         private function onWSDLLoaded(event:LoadEvent):void{
              btnGetData.enabled = true;
         private function onFlightWSGotResult(event:ResultEvent):void{
              flightData = event.result.SFLIGHT;
              ]]>
         </mx:Script>
    </mx:Application>
    Regards,
    Vinoth

  • Reset Validator controls in Adobe Flex 3.0

    Hi,
    I am new to Adobe Flex. I am using Flex Builder 3.0 to build
    an application. I am having a problem with validator controls. The
    senario is as follows:
    About the problem:
    I am having a page with two text boxes. If the user does not
    enter anything in the TextInput, am alerting the user to enter a
    value using the validator control.
    If the user enters the data and clicks on save, am displaying
    the details in a grid and am clearing the TextInput fields. After
    this process the TextInput fields are again getting validated and
    shown as an error.
    Please adivce me how to avoid this.
    Regards,
    Raj.

    I'm hoping you have found the answer by now, but...
    To reset a control, set the errorString to the empty string.
    myControl.errorString = "";
    And do this for all of the controls that you wish to reset.

  • How to create new themes in adobe flex projects

    How to create new themes in adobe flex projects 

    I too would like to understand this and find more information about this.
    I would like to produce my own theme. But how??

  • New data base with adobe flex

    Hi  All,
    My Requiremenyty as below.
    I need to get the data from sap and from some third party softwares.  and need to build a web applicaation in adobe flex.
    i want put the data from sap and other systems into separate data base ( Like Oracle ).
    the data  from sap and other softwares can be schduled daily.  so we need build flex web appllication newly built oracle data base.
    Pleaae let me know how we can do?  is it possible?  we can i get the exact help?
    Regards,
    Kishan

    Hi mate!
    You can communicate your Flex app with SAP or another third-parties throw WebServices, RPC's or Remote Objects (java).
    For the communication with Oracle, there is a versión of Oracle which has WebServices to expose the operations; if not avaliable, you might need an application server (php, jsp, ...)
    This links may help you:
    http://www.nabble.com/-flex_india:15197--flex-sql-or-oracle-td20034201.html
    http://www.richappsconsulting.com/blog/blog-detail/integrating-flex-with-oracle-epg-using-xml/
    http://asql.mooska.pl/
    Hope it helps you
    Regards!
    Fran

  • Problem Installing Adobe Flex Builder 3 (Standalone)

    I have attempted a few times today to install the Flex Builder 3 standalone file, but I am having issues. I am currently using Adobe CS4 Design Premium on my computer.
    I am new to this type of application development.  Currently, I mainly used flash to create my interactive applications, but I need to branch out to create more complex applications.  As I already know actionscript 3.0, I was interesting into getting into Flex.  I do not know Javascript, C++, etc.
    Once I download the standalone file to my desktop and run the installer, I do not choose to download Flash Player 9 because I already have nor do I choose do download the Coldfusion or JSEclipse Plug-in as I do not have Eclipse on my computer (it comes with the standalone as I have been led to believe).  After running the installer, it almost gets to the end and then I get the following error message:
    I click OK, it finishes the install and says
    I go to the log file and get the following:
    !SESSION 2010-02-24 16:22:40.424 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.5.0_11
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Framework arguments:  -application org.eclipse.update.core.standaloneUpdate -command install -from file:\C:\Program Files\Adobe\Flex Builder 3\com.adobe.flexbuilder.update.site/ -featureId com.adobe.flexbuilder.feature.standalone -version 3.0.214193
    Command-line arguments:  -application org.eclipse.update.core.standaloneUpdate -command install -from file:\C:\Program Files\Adobe\Flex Builder 3\com.adobe.flexbuilder.update.site/ -featureId com.adobe.flexbuilder.feature.standalone -version 3.0.214193
    !ENTRY org.eclipse.update.core 4 0 2010-02-24 16:22:44.799
    !MESSAGE Cannot install featurecom.adobe.flexbuilder.feature.standalone 3.0.214193
    Can anybody help me on this?  Is there something I missing prior to download?

    We're in the same boat here - the the behavour of xsd:all in
    BETA 3 renders our Flex app virtually useless because of
    communication issues with the backend webservice. We have studied
    the proposed workaround suggested, unfortunately we only control
    the FLEX app - we do not control the WS we have to integrate with.
    As a result we've gone back to BETA 2 to do some critical
    changes in the software but the "Beta expired." message we've been
    receiving is really not well received. As we have been very
    proactive in supporting development in the BETA phases including
    reporitng bugs, we think that Adobe shoudl also have some
    flexibility here and offer ways to extend the BETA 2. We're not
    asking for any type of support during that phase - purely the
    ability to compile our source until we can implement the full work
    around which will allow the software to run on BETA 3. The
    suggestion to change dates or go to previous restore points do not
    work well here with our numerous developers.

  • Is Adobe Flex suitable to build a Multimedia Presentation?

    I am looking for some advice on the suitability of using
    Adobe Flex for building a Multimedia presentation system. I have
    watched numerous videos about Flex and even tried some tutorials
    but before I make a decision on Technologies for a project I am
    working on, I wanted to consult the Flex community for some advice.
    I have to take Multimedia Presentation made using PowerPoint
    and build it into a custom made Multimedia Presentation that has
    similar functionality. Would Adobe Flex would be a suitable tool?
    The Presentation must be viewable on the Internet and be deployed
    to the Desktop so combining Flex with Adobe AIR would be needed to
    meet this requirement.
    I guess the general requirements are as follows:-
    The user must be able to navigate forward and backward
    through pages of the presentation.
    The Presentation must be able to display Flash video's. When
    video is played, the video must open in a new window infront of the
    main application. Images and animated GIF'S must have the same
    functionality.
    Based on these requirements, would Flex be suitable?
    Thanks in advance for you help and advice.

    I think Flex would be very suitable for building a multimedia
    presentation system. Once you create your Flex app and generate the
    SWF file, you can post it on the web, or view it on the desltop,
    even without AIR. You could use view states to transition between
    pages, though you would have other options as well. You could
    display Flash videos easily, and I believe you could have the video
    open in a new top window. Same with images and gifs. Flex would be
    a very good choice I believe.

  • Directions towards Adobe Flex/ AIR

    Hi all,
    I am an ABAP developer for 7 odd years and dabbled a bit in ABAP web dynpro, however have not worked on Java or .Net languages. I am keen to work on Adobe Flex and using it as a UI for SAP applications.
    Needed advise on where I can start to study up on Adobe Flex considering my back ground.
    Thanks in advance for your suggestions!
    Cheers,
    Aditya

    Hi,
    When you say Air setting do you mean creating an Air App ?
    If so when you select new flex project from the menu you have a choice to have an AIR app or a Flex app.
    You can also change an existing Flex app to an AIR app but not the other way around. This is done by right clicking on the project in the package explorer panel and selecting change "project type".
    David.

  • Problem with Xcelsius 2008 sp3 service pack chart slider into adobe flex

    Hello All,
    I tried to use the Xcelsius 2008 SP3 and created a Chart with a slider the new UI element which is introduced in the Service pack versions ..  now i tried to implement the logic in Adobe flex builer 3 setting the compiler properties as hot fix 2.0 . Followed all the rules like creating an action script and creating MXML component.. Now when i try to embed the same swf whic is generated into webdynpro component it gives me error tht some classes or some events or some variables are missing..
    According to my assumption i doubt wether the xcelsius 2008 sp3 will support the adobe flex 3 with this hot fix which i was initialy using .. So can anybody suggest me what can be doen to overcome this issue and make my new chart with slider run in my webdynpro abap :(...
    Regards,
    Sana.

    Hi Sana,
    You might be using Flex 3 sdk library files.
    Just check in Properies of your Flex project -> Flex Build Path -> Library Path .
    You might get the library files as Flex 3.*
    If it is the case then change it to Flex 2.0.1 Hotfix 3.
    now create a new project and compile your application and use the same swf.
    Otherwise try to import any existing Flex 2 project folder with compiler flex 2 ver. then try the same swf in your xcelsius application.
    Regards,
    Vivek

  • WebDynPro ABAP in adobe flex client

    Hi,
    I have some WebDynPro ABAP applications.
    I want to run them in adobe flex client as rendering medium.
    Is it possible.
    Best Regards
    Sid

    >
    Robert Gaertner wrote:
    > Good to know. That kinda sounds as if the webdynpro app itself will not have to be modified at all. Does this apply to CE webdynpro only or will be NW7.0 webdynpro apps supported the same way? How's the xBCML code generated? Will the CE be an requirement?
    That is correct - the apps do not have to be modified in any way.  Web Dynpro was designed years ago with this kind of future in mind.  The application rendering is separated in layers. One of those layers is the UI rendering itself.  It was strickly designed so that we could "plug-in" new rendering engines over time. 
    So what technically happens is nice bit of OO magic.  There are multiple implementations of each UI elment rendering class, but they all have the same interface.  That way the rendering engine can determine what kind of client it is building the UI for at runtime and substitute a different rendering engine by calling the correct subclass.  The first rendering engine that SAP supplied for Web Dynpro is what is called the Unified Renderer.  This is what produces the HTML and JavaScript UI that we run today in the browser.  In NW 7.0 EnhP1 ABAP and NW 7.1 CE EnhP1 we have actually rewritten this Unified Renderer completely - improving performance and adding in more AJAX functionality.  So this same plug-in rendering technology can be used to seemlessly overhaul the HTML renderer as well. 
    With this plug-in rendering technology we were able to build an XML based renderer.  This XML formatted output is what we call xBCML (Extensible Business Client Markup Language).  Actually if you compare the two rendering engines it is much easier to build an XML description of the UI then it is to build HTML/JavaScript. This nice, neutral XML description of the UI elements and their properties can then be sent to the client machine over HTTP/HTTPS and interpreted by different technologies.  We use this same XML format within a Flex, Silverlight, and .Net Client Renderer.  This is how SAP has built the Flex Client, Flash Islands, Silverlight Islands, and the NetWeaver Business Client Smart Client Renderer.
    On the ABAP side of the house for Web Dynpro we are bringing all of this new rendering technology to the 7.0 release via Enhancement Packages.  The dependency of the Business Suite to run on top of NetWeaver 7.0 is a pretty much a driving factor to make sure that new Web Dynpro technology for ABAP must make it into the 7.0 code line to be effective.
    The Java side is less clear.  We have really focused future enhancements to Java Web Dynpro within the 7.1 CE codeline.  Our current plans are to deliver this functionality to WD Java via CE  (some of it is already there in CE 7.1 and some will come later with CE 7.1 EnhP1). I would be a little suprised to see a backport effort to 7.0 Java given the focus on CE.  I realize that this leaves ESS/MSS in a strange location - so if there was customer demand around that application it might be the only thing to lead to a selective backport - but I certainly can't confirm that this will happen.

  • Are there any new features for Flex 4.6 developers?

    Hi,
    just wanted to ask if there are any new features for projects that use Adobe Flex 4.6 (i.e., Flex projects, targetting Flash Player in the browser). From what I've observed so far:
    * Design view is removed (not really a "new feature")
    * Working with imports is smarter
    * Nothing else really changed
    Is that correct? Anything else why I as a Flex developer should appreciate in Flash Builder 4.7? (We don't use Apache Flex 4.8 and will not in the near future so if there are any new features there, they don't really apply to us, 4.6 developers).
    Borek

    I mean I am having that duplication issue.....

  • Adobe Flex - Air Setting??

    Where can I find Air setting of Adobe flex???
    kkm

    Hi,
    When you say Air setting do you mean creating an Air App ?
    If so when you select new flex project from the menu you have a choice to have an AIR app or a Flex app.
    You can also change an existing Flex app to an AIR app but not the other way around. This is done by right clicking on the project in the package explorer panel and selecting change "project type".
    David.

Maybe you are looking for

  • Replacement for iMovie HD - or much simpler iMovie 11 interface

    Replacement for iMovie HD - or much simpler iMovie 11 interface I have just upgraded from a tape DV to a HDD HD camcorder. This has meant leaving behind my cherished i-Movie HD programme and using i-Movie11 (also moved to lion). I just want to do sim

  • IMac file share with an Imerge s3000 server.

    I cannot get ny mac to connect with an Imerge s3000 music server.  I can operate the system through the mac using the TV interface but I cannot share files.  The server is recognised by the mac on the network but each time I try to access the files i

  • Sync 1 socket between 2 threads.

    consider this code: Socket sok = new Socket('192.158.9.42", 5432); ThreadClass_1 t1 = new ThreadClass_1(sok); t1.start(); ThreadClass_2 t2 = new ThreadClass_2(sok); t2.start(); t1 needs to download a large file. then t2 takes over for the remaining w

  • Strange ORA-00947

    Hello all, I have a query in a stored procedure as follows: select min(ref.REFERENCE_V_INNER_CODE) INNER_CODE, item.COMPONENT_V_ID bulk collect into highest_quality_table from T_ITEM item, T_REFERENCE ref where (item.ITEM_V_CODE, item.COMPONENT_V_ID)

  • WCS 6.0.132.0 Database

    Hello, I've been having some problems with the linux version of WCS. Sometimes, and I still don't know why the Database server stops. To activate it again I need to restart the service using the WCSStart script. Is anyone having similar problems? The