Flex for mobile development

Is it possible to use Flex for developing RIAs for mobile
browsers?
From what I've read, Flex doesn't seem to be suitable for
creating applications on mobile phones. But I wanted to be sure
that's why raised this question here.

Adobe Newsbot hopes that the following resources helps you.
NewsBot is experimental and any feedback (reply to this post) on
its utility will be appreciated:
Adobe - Flex 3:
Flex is a highly productive, free open source framework for
building and maintaining expressive web applications that deploy
consistently on all major
Link:
http://www.adobe.com/products/flex/
Adobe Flex 3 Language Reference:
Frame Alert. This document is designed to be viewed using the
frames feature. If you see this message, you are using a
non-frame-capable web client.
Link:
http://livedocs.adobe.com/flex/3/langref/
Flex.org - Rich Internet Application Development:
Welcome to the new Flex.org. This site aggregates Flex news
from a number of sources, and allows community members to
contribute their own content as well.
Link:
http://flex.org/
Flex 3 - Versioning:
You might encounter some versioning issues when working on
Adobe Flex applications. When compiling, you can choose the version
of the SDK to use and you
Link:
http://livedocs.adobe.com/flex/3/html/versioning_1.html
Adobe Flex - Wikipedia, the free encyclopedia:
Adobe Flex is a collection of technologies released by Adobe
Systems for the development and deployment of cross platform rich
Internet applications based
Link:
http://en.wikipedia.org/wiki/Adobe_Flex
Adobe - Flex Developer Center:
Check out the getting started guide on learn.adobe.com, with
special areas for developers using Flex with PHP, .NET, Java, and
ColdFusion.
Link:
http://www.adobe.com/devnet/flex/
Disclaimer: This response is generated automatically by the
Adobe NewsBot based on Adobe
Community
Engine.

Similar Messages

  • Flex and mobile development for webOS?

    Do the 'Hero' and 'Burrito' products provide the ability to implement Flex code for the webOS platform?  Or is the webOS platform not supported yet?  If Flex isn't ready for the webOS platform now, then I suppose I will need to use JavaScript and HTML 5 on webOS for now.
    The webOS platform is the go-forward strategy for Hewlett-Packard for both smart phones and tablets.

    The right place to look for updates on Flex is http://flex.apache.org
    The good thing is that activities are still going on. The bad things are that:
    - Unless the dependency to Adobe air is cut, Flex as an open source project is bound to fail imho. See FlexJS for updates on that point
    - Current activties seem to be focused around making things more polished rather than working on hard stuff (typically developing an independent and open source runtime execution engine => flexJS)
    So...
    For a small company, home development, not so business critical applications, I recommend warmly Flex, since it is one of the best (if not the best) cross-platform mobile development environment (Very good performances if used appropriately, very good programming environment, lots of components, structured language, lots of documentation and tutorials, easy to design, etc.)
    for business critical applications... The risk is high !

  • b and i tags not working in StyleableTextField for mobile development

    I'm trying to dynamically produce TextArea instances in a Flex mobile app that implement html formatting.  I've made a lot of progress, but simple <b> and <i> tags are not being rendered correctly. 
    My current hypothesis is that I need to embed the italic and bold fonts.  I am currently not embedding fonts for these particular TextArea instances at all -- they are rendering using the system font.  In my previous experience, this eliminates problems with rendering <b> and <i> text.  However, when deploying on mobile platforms, I don't know for sure if there is a bold or italic system font natively available. 
    If I need to embed the bold and italic fonts for the tags to process correctly, does anyone know which font(s) I should embed and how I should name them so that the html will be able to find them and render correctly?  I am applying a CSS to these TextArea instances in the full app, so I can do any font embedding there if necessary.  I am planning to compile this app for both iOS and Android, in case that makes a difference. 
    Below is a simplified example of the code I'm using.  The TextArea that is generated is formatted honoring the <br /> tags, but ignoring the <b> and <i> tags. 
    Thanks in advance for any help. 
    import mx.events.FlexEvent;
    import spark.components.TextArea;
    import spark.components.supportClasses.StyleableTextField;
    import spark.skins.mobile.TextAreaSkin;
    protected function application1_creationCompleteHandler(event:FlexEvent):void
              var textArea0:TextArea = new TextArea();
              textArea0.setStyle("skinClass", TextAreaSkin);
              addElement(textArea0);
              var styleableTextField0:StyleableTextField = StyleableTextField(textArea0.textDisplay);
              styleableTextField0.multiline = true;
              styleableTextField0.htmlText = "<b>bold</b><br /><i>italic</i><br />normal";

    Huh!  I tried tracing the htmlText property after formatting, and the bold and italic tags are not there anymore.  Unexpected, but consistent with the results.  Thanks for suggesting that test.  Here is the line where I assign the htmlText property:
    styleableTextField0.htmlText = "normal<br/><i>italic</i><br/><b>bold</b><br/><a href='http://www.google.com/'>link</a>";
    Here is the section where I create the StyleSheet and assign it to the StyleableTextField:
    var styles:String =
      "@font-face{ fontFamily: Arial; src: url('assets/fonts/Arial.ttf'); embedAsCFF: false;}" +
      "@font-face{ fontFamily: Arial; src: url('assets/fonts/Arial Italic.ttf'); fontStyle: italic; embedAsCFF: false;}" +
      "@font-face{ fontFamily: Arial; src: url('assets/fonts/Arial Bold.ttf'); fontWeight: bold; embedAsCFF: false;}" +
      "a { color: #FFE043; textDecoration: underline; } " +
      "a:active{ color: #ffffff;}" +
      "b{fontWeight:bold; fontFamily: Arial;} " +
      "i{fontStyle:italic; fontFamily: Arial;}";
    var myStyleSheet:StyleSheet = new StyleSheet();
    myStyleSheet.parseCSS(styles);
    styleableTextField0.styleSheet = myStyleSheet;
    And here is the trace statement
    trace( styleableTextField0.htmlText); // <TEXTFORMAT RIGHTMARGIN="21" INDENT="10" LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="16" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">normal</FONT></P></TEXTFORMAT><TEXTFORMAT RIGHTMARGIN="21" INDENT="10" LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="16" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">italic</FONT></P></TEXTFORMAT><TEXTFORMAT RIGHTMARGIN="21" INDENT="10" LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="16" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">bold</FONT></P></TEXTFORMAT><TEXTFORMAT RIGHTMARGIN="21" INDENT="10" LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="16" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0"><A HREF="http://www.google.com/" TARGET="">link</A></FONT></P></TEXTFORMAT>
    Lots of code modification going on behind the scenes, it would seem.  Any idea as to why the bold and italic tags are being stripped out when the formatting process happens?  Any idea of what steps I could take next?  Thanks for all your help so far! 
    BTW, here's a screen capture of what the text looks like at this point:

  • Flex for Java Developer?

    I am working on flex 1.5 from last 7 months.Ealier i hv
    worked on Java (1.5 Yr)
    I hv created an application in flex sucessfully.
    My Qtn is:
    Whether i have to continue with flex or move to another
    technologies like Struts etc.
    Because i have nil knowlwge of FLASH.
    or
    I hv to start learning FLASH MX. Is it necessary for
    Flex/Java Developer.
    I am comfortable with action script if uses for Business
    Application but
    unable to produce better designs using it.
    Please Suggest.
    with Regards
    Vinay

    well vinay if u r thinking about -- Flex Front End to Your
    Struts Applications
    then ,,
    Struts is an open source framework that facilitates the
    development of web applications based on Java servlets and other
    related technologies. Because it provides a solution to many of the
    common problems developers face when building these applications,
    Struts has been widely adopted in a large variety of development
    efforts, from small projects to large-scale enterprise
    applications.
    Although Struts greatly facilitates the task of developers,
    it doesn't do much to improve the end-user experience: the
    end-result is still an application delivered in HTML and using the
    traditional HTTP request/response mechanism.
    Developers—and organizations in general—are
    increasingly looking for solutions to provide their applications
    with a more engaging user experience that overcomes the limitations
    of HTML.
    Macromedia Flex is a presentation server that addresses this
    requirement and allows developers to build a new generation of Rich
    Internet Applications (RIAs) that combine the usability of desktop
    applications with the reach of traditional web applications.

  • Can i install VS 2013 in my Virtual Machine with Windows 8.1 and work for Mobile Development,Mobile Emulator can work in my Virtual Machine ?

    I have a Virtual Machine with Windows 8.1 OS and 4gb RAM, 200gb Disk.
    I want to develop apps for Windows Mobile 8.1 with VS 2013 Update 4, Mobile Emulators can work in my Virtual Machine, bcz i am getting bellow error.
    Windows Phone Emulator is unable to verify that the virtual machine is running:
    Something happend while starting a virtual machine:'Emulator 8.1 WVGA 4 inch 512MB.APPUSER' failed to start.(Virtual machine ID xxxxxx-xxxxx-xxxx-xxxx-xxxxxxx)
    The Virtual Machine Management Service failed to start the virtual machine 'Emulator 8.1 WVGA 4inch 512MB.appuser' because one of the Hyper-V components is not running (Virtual machine ID xxxx-xxxxx-xxxx-xxxx-xxxx).

    No you cannot do that.  You need a physical machine that supports Hyper-V
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • Learning Flex for Web Development

    Hello Folks,
    I am new to flex. Previously i have been developing in PHP. I just thought of implementing a web based inventory management system in flex. Now in PHP, we have one html page that takes input and we re-direct it to a PHP page and it does the insert delete. But in flex, i can do all this on one page.. literally one page using view states.
    So should i proceed with this approach OR is there an efficient way of page navigation in flex. Moreover, can we manage sessions in flex.??? Are there good resources for flex development for web like PHP???
    Any help would be appreciated

    States should generally only be used for small components that can change their UI in small ways.
    In general for navigation in Flex, ViewStack is great, and also TabNavigator, Accordion, etc.
    The following links give more info on this and also on using Flex with PHP and MySQL.
    http://livedocs.adobe.com/flex/3/html/help.html?content=navigators_3.html
    http://livedocs.adobe.com/flex/3/html/help.html?content=navigators_1.html
    http://www.switchonthecode.com/tutorials/flex-php-tutorial-transmitting-data-using-json
    http://www.switchonthecode.com/tutorials/using-flex-php-and-json-to-modify-a-mysql-databas e
    http://www.switchonthecode.com/tutorials/flex-php-json-mysql-advanced-updating
    If this post answers your question or helps, please mark it as such.

  • Oracle SSHR Interfaces for Mobile Development

    Dear All,
    We have a following requirement on top of Oracle E-Business Suite 11.5.10.
    We need to access certain functionalities of Oracle Self Services Human Resoures (SSHR) like Apply New Leave, Leave Approval from various mobile applications (iOS, Android, Symbian OS, Blackberry OS, Windows Mobile). This will enable our executives to do some basic leave related functionalities on the go through mobile.
    We are planning to develop the mobile frontends and wants to interact with the Oracle SSHR to save and retrieve the leave related information with workflow functionalities.
    Can any one guide us on how to do this? Is there any interfaces provided by EBS which does the functionalities along with workflow features.
    Note: We know that Oracle EBS 12.x support IPhone and Ipad using Oracle Business Approvals. But our company has no near term plans to upgrade our EBS to 12.x
    Requirements Summary
    1) Create New Leave, View Leaves for Approval, Approve/Reject Leave with comments
    2) Should support various mobile OS platforms like iOS, Android, Symbian OS, Blackberry OS, Windows Mobile
    3) Should support Workflow functionalities offered by EBS

    I think there is no need to complicate it you can just enable the approvals through email so whatever the mobile used the manager will receive an email and he can take action through email.

  • How to display rich content with URL in adobe flash builder and flex for mobile apps?

    Hi,
      In Apple IOS SDK, I used the WebView control to display the rich text with Bullets, different font style, images within the text and the URLs also within the text as HTML content.
    Clicking on the URLs automatically opens the respective webpage in Safari.
    In Adobe Flash Builder, I don't see any control straight away equivalent to Apple WebView control.
    How to implement the same using adobe and flex?

    Thanks for your reply, its nice to know its not just me.
    the error i got when submitting to the App store where due to native support for IPHONE 5 which is now mandatory (from May 1st), looking around the internet the common soloution seemed to be upgrading to Air 3.7.
    The strange erorrs on 3.7 revolve around compiling a standard / production build (fast build works fine)
    the error is always the same (snippet shown below):
    Error occurred while packaging the application:
    Undefined symbols for architecture armv7:
      "__ZN7avmplus8Debugger9debugLineEi", referenced from:
          __ZN7avmplus9MethodEnv9debugExitEPNS_13CallStackNodeE in AOTBuildOutput-4.o
          __ZN7avmplus11BaseExecMgr22debugEnterExitWrapperNEPNS_9MethodEnvEiPj in AOTBuildOutput-4.o
    I have completly failed to work out why, but my gut feeling is its something to do with how the mac is compiling the code in standard build and unable to find a library it needs.
    cheers
    Toby

  • Suggestion for mobile development

    Hi
     Sir/madam ;
    This is my personal advice and humble request
    i am requesting you please make a computer mobile
    because bill gates is a great man and Nokia lumia fail in market
    and i am not want to his company going down
    you are thinking  that i am mad
    but sir micro soft company is doing anything in the world
    please forgive me for my bad English
    thank you

    farasshaikh,
    Sorry but you have posted to a forum that deals exclusively with customizing and programming Microsoft Project. I suggest you delete this post and find a more appropriate forum.
    John

  • Flash vs flex for android development

    I've seen some videos using Flash and others using catalyst/Builder. I'm not sure which to start learning, I'm very interested though. I'm comfortable with flash (and have new 5.5 creative) but feel like builder/catalyst will eventually be more powerful.
    what are the advantages and disadvantages of them (is there somewhere I can read up on this if it's too long of an answer?)
    are there any good websites or books that really dig into the actual code from beginner to advanced? I don't even know where to look, the documentation is just very overwhelming. how would you advise even beginning? I don't want to get into bad habbits. i.e. learn in Flash then find out that I am limited by the program, or learn bad coding practices.

    I suggest checking out the Flash Platform page on Adobe.com for additional information.  Flash Professional, Flash Builder, and Flash Catalyst are targeted towards individual workflows for building rich Internet applications.  If you want to build data-driven or e-commerce applications and leverage the Flex framework, I suggest checking out Flash Builder.
    http://www.adobe.com/flashplatform/

  • Just a question for mobile development ...

    Hello everyone !
    I was wondering :
    I have a bunch of movieclips in my library. Each one contains it's own class and functions etc.
    I put each of these movieclips on diffrent frames in my timeline.
    My question was, if I am going to put these movieclips, on 2 or 3 frames on my timeline what will be the impact on speed of application (in mobile afcourse).
    For example MovieClip2 will be put on frames 2,3 and 6.
    It has 300 lines of code. Is the impact noticable ?

    that depends on what you coded.  for example, if there no enterframe or timeline or setinterval loops, the impact should be negligible.

  • Flash builder 4.6 flex for mobile with mysql php and json

    I am trying to create an app that get data from online mysql server via php service and displays the data in a list
    I have been looking all over the internet but had no success in finding a working tutorial and i am frustrated
    can anyone help or direct me to a working tutorial please ?

    Watch the Online Video Course Flex 4.5 and PHP: Creating Data-Driven Applications

  • How to pass data between views using Flex for mobile?

    Hi,
      In my 1st view, I have set of images. Each image represents a product category. When I click on an image, it has to show my 2nd view which is a list. This should show all the products linked to this category.
    I saw few examples where the 1st view is a list. Select an item in a list shows the details in the next view.
    But what I need is, I need to know which image is clicked in my 1st view (ie) Home page. This id needs to be passed to my 2nd view to retrieve the data for the clicked image (clicked product category).
    Can anyone help me in this?

    Chellaa2011,
      If I understand you correctly, you can pass data to the next view by passing the second parameter to the pushView method. 
      check out: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/ViewNa vigator.html#pushView()
      I've written similar apps in the past and found that a singleton class alleviates some of these issues.  If you use a singleton to track currently selections all your views can access the same data without having to pass and return data from each other.
    Hope this helps,
    KLee

  • Displaying Large Blocks of Text with Flex for Mobile

    Hi,
    I have prepared an application for Android in Adobe Flash Builder. In application there are prayers in Arabic as a list. In app , short prayers are displaying quickly, but long prayers are displaying  after a long time. This is my problem.
    I share my project file in addition.Can  anybody help me, please?
    Note: I used SQLite database in my project as you can see and  I used a font to view prayers in Arabic.
    My Project FB 4.7 Link:
    My Project FB 4.6 Link:
    Regards,
    Burhan

    Hi,
    I have prepared an application for Android in Adobe Flash Builder. In application there are prayers in Arabic as a list. In app , short prayers are displaying quickly, but long prayers are displaying  after a long time. This is my problem.
    I share my project file in addition.Can  anybody help me, please?
    Note: I used SQLite database in my project as you can see and  I used a font to view prayers in Arabic.
    My Project FB 4.7 Link:
    My Project FB 4.6 Link:
    Regards,
    Burhan

  • Text-input component with auto-complete functionality for mobile

    Hey guys,
    I wonder if there is a text-input component with auto-complete functionality optimized for mobile development with AIR like the one that Android provides natively as you can see here http://developer.android.com/reference/android/widget/AutoCompleteTextView.html and here http://developer.android.com/resources/tutorials/views/hello-autocomplete.html.
    At least I didn't find it in the latest SDK and I think such a component is pretty standard nowadays. Or did I simply overlook it?
    Thank you guys for any advice.
    Regards,
    Thilo

    Hi relaxtraja,
    thanks for your reply!
    I knew that there are a lot of auto-complete scripts on the web. What I was hoping was, that Adobe provides an officially supported auto-complete component optimized for mobile as part of the SDK (like in the Android SDK as I pointed out), but that doesn't seem to be the case. It's sad, because it's an essential part of modern UIs in mobile applications.
    I've already created an auto-complete component by myself based on Spark components and I will end up using it. But I will have to optimize it for mobile applications beforehands. I just think something this essential should be provided by the SDK.
    However, thanks for posting!
    Regards,
    Thilo

Maybe you are looking for

  • Can I add a third party filter (ASFROC) to the filter sub-folder of Photoshop Elements 13?

    I have been using a third party filter (Applied Science fiction R-O-C (now Kodak)) with Photoshop elements 9.  After upgrading to Elements 13 I would like to continue using the ASFROC plug-in filter.  Can I just add it to the Filter sub-folder in Ele

  • So iWeb is dead? what is the next best thing for a beginner?

    Hi Guys, I have my new Mac and i want to build my first website....with iWeb dead, what is the next best web builder for a beginner like me...? I want to creat a blog add the odd photo and link to my twitter page. Thats about it.....any suggestions?

  • Query dataset on BI Publisher

    Hi Group, I'm new to Oracle BI Publisher, I want to ask about : 1. In my query I need to run this : begin dbms_application_info.set_client_info(:P_ORG_ID); end; how do I did in bi publisher? after that I run query select ... from .. where... 2. If I

  • Safari doesn't show iweb audio files - help

    Hi Just created my first iWeb site and it has a page with 1 minute samples of music. I tested these with Firefox and Safari both before and after publishing to the web and all seemed OK. When I tried today, Safari doesn't display the files at all whe

  • Insert multiple rows at a time

    Hi All, I have one table which has start date and end date and seq no. I need to insert the dates from 1 Jan 08 to 1 Apr 09 at a time. Can we do it with one single insert statement? Thanks in advance...