In search of advice for a Flex application

I'm trying to describe my plan as simply as I can but I may
fail.
My project group is working on a designing application for
garages. User can drag and drop elements (window, wall, doors) to a
canvas area to create a garage design. I can't tell more because
it's a business secret. ;) Could someone help me how to create a
feature that if user hasn't created valid entity (for instance
pieces of wall are missing and thus the garage won't function
properly because chilling wind is let inside and the roof can't be
placed on the construction) our application draws a red line to
empty spots marking an error. Also an alert/message box should
appear and tell the user what's wrong with his/her design. I
suppose that this could me made by using degrafa but feel free to
suggest better options.
I would very much appreciate if somebody knows an existing
application which has same kind of feature which I could use as
help. Thanks beforehand!
//John

quote:
Originally posted by:
robbyk87
I reccommend checking out the seemingly infinate number of
games/apps that are created using basic flash - plenty of those use
techniques you have described - and most of which can be applied
using the actionscript in flex or even AIR as it sounds more like a
desktop based project.
Thanks a lot mate. That's pretty much I considered an useful
way to create such feature. I would extra appreciate if you know
some applications which use before-mentioned techniques. Searching
for one hasn't yet come up with anything.

Similar Messages

  • Need advice for installing flex application in touch screen Kiosks

    Hello,
    We have a requirement in one of our project to create touch screen interfaces and I am intending to user Adobe Flex for the development and run them in Adobe Air because, definitely it saves development time and great look and feel.
    However, I need advice on how to connect the application to a touch screen events like we do on  Keyborad and mouse events like, click() or onFocus etc.
    Please advice.
    Best Regards,
    Jai Kishan Shah

    Bar Code Scanners are no different than keyboards in my experience.  It just sends the text to whatever application is open. Integrating it with Flex requires no effort.  You just have to be sure that Flex is the current application and the field you want to put the data in is given focus.
    In a point of sale application with very specific use case and limited interface, it is easy to force the app to give focus to the input field that needs to accept your input.
    Credit card swipers work the same way.
    I don't know about a weighing scale, but I bet it is very similar.  If not, you may want to use Java for scale integration and then use Merapi to integrate with the Java applet.

  • Best webservers for deploying flex application

    Hi,
    I want to deploy flex application in web server.
    I am serching for best and suitable server for deploing flex
    application.
    any info pls.............

    Rule 1: Never use the "Automatically Expose UI Componentes in a New Managed Bean" option, create your bindings manually;
    Rule 2: Rule 1 is always right;
    Rule 3: In doubts, refer to rule 2.
    You may also want to check out :
    http://groups.google.com/group/adf-methodology
    And :
    http://www.oracle.com/technology/products/jdev/collateral/4gl/papers/Introduction_Best_Practices.pdf

  • Designing for Flash/Flex application

    Hello,
    I'm trying to create multiple themes for a flex application. It seems as though Flash is the best way to do that given the workflow. I'm looking for a Flex/Flash template within flash. I'd like to take the .Fla and edit it and export the .swc. I swear there was a folder in Flash with templates for this process. Can anyone tell me where those templates are?
    Also, does this workflow make sense, when trying to update the look and feel every few months? I can use PS for example, but I'd like to avoid bitmaps where I can.
    I'm using CS5 on a mac.
    Thanks

    You should definitely check out some online tutorials on design in FB4.5, such as Lee Brimelow's tutorials on "blitting" and skins/styles in Flex ("Intro to Flex: Part 3"):
    http://www.gotoandlearn.com/
    Also, the "Change the appearance of your application" videos on the Flash Builder "Test Drive" site:
    http://www.adobe.com/devnet/flex/testdrive.html
    Good luck!

  • I am looking for a load testing tool for my flex application

    I am looking for a load testing tool for my flex application having a limited budghet of 1000-1500$. I have gone through NEOLoad,WebUiLoad all are very expensive.

    Do you have iPad 1 or 2?
    You can connect iPad 1 via a VGA adapter to any projector with a VGA input (all projectors have this).
    You can connect iPad 2 via VGA or HDMI.
    I like Epson or Sony for projectors.

  • What kind of licensing is required for using Adobe Flex Builder IDE for building Flex Applications?

    I am looking for an IDE to build Flex Applications. Can you suggest what IDE to be used for this and what are the licensing I should procure for the same? What kind of support will be available with that license?

    Thanks Empardopo.  Do you have any suggestions? What kind of problems do you see with this tool. Also does Flash Builder 4.7 supports Flex SDK 3.5?

  • How to have Multiple Configurations for a Flex Application

    Hi All,
    I've seen this question asked in various forms multiple times, but never answered: How do you set up a FLEX configuration to have different configurations for development (local), test server, staging server, beta server, and production server? I cannot imagine that Adobe has not accounted for this, something that is very standard in most development teams. Zend Framework has a very elegant solution for this: in the configuration file you define all aspects that can be configured, as well as the various environments (development, staging, beta, live, etc.). Then, in the bootstrap file you specify which environment you want to work in, and you're all set.
    How can something like this be achieved in FLEX?
    Many thanks!
    -Mike

    Maybe my setup is unconventional, I doubt it, though:
    1) SVN repo stores FLEX and PHP codebases in separate projects.
    2) Developer gets code from repo, and runs on local machine. -> need to configure FLEX to point to local PHP code here for Remote Objects.
    3) Developer then publishes Flex app to staging server. -> need to configure FLEX to point to staging PHP code here.
    4) Flex app then gets published to live server. -> need to configure FLEX to point to live PHP code here.
    Now, using ANT, the scenario would look like this:
    1) SVN repo stores FLEX and PHP codebases in separate projects.
    2) Developer gets code from repo, and runs on local machine. -> need to configure FLEX to point to local PHP code here for Remote Objects.
    3) Code is good and developer checks it back into SVN.
    4) ANT extracts latest build from SVN and builds it, then publishes to staging server. -> need to configure FLEX to point to staging PHP code.
    I am using PHPUnderControl as my build server for PHP.
    I am also unclear as to how my goal could be achieved using ANT?
    Thanks!
    Mike

  • Resizing a flex application

    I am trying to write a resize function for my flex
    application. I have pasted a simple sample below, but when I try to
    run this application I get the following error:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    This is my application:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" resize="resizeHandler()">
    <mx:Script>
    <![CDATA[
    private function resizeHandler():void {
    t.text = stage.width + " - " + stage.height;
    t.text += "\n" + stage.stageWidth + " - " +
    stage.stageHeight;
    ]]>
    </mx:Script>
    <mx:Panel x="10" y="10" width="250" height="200"
    layout="absolute">
    <mx:TextArea id="t" x="0" y="0" text="test"/>
    </mx:Panel>
    </mx:Application>
    Can someone tell me where I am going wrong?
    Thanks in advance

    DIsplay Object Stage would cause the exception the first time
    you run the application. A simple if condition can help you
    overcome the issue..
    private function resizeHandler():void {
    if(stage != null){
    t.text = stage.width + " - " + stage.height;
    t.text += "\n" + stage.stageWidth + " - " +
    stage.stageHeight;
    }

  • Licensing a Flex Application - How to?

    Hello all,
    I want my Flex application to have a license key so as to control the functionality available to the user. What options do i have available for this? Is there a open source framework or common approach to adding licensing infrastructure to a Flex app...
    Thanks,
    Ankur

    In 2012 i'm also facing the same issue. Isn't there anyway i can create a licensing system for a flex application still?

  • Calling a FLEX application from html, using parameters

    Hi guys,
    I have this html:
    <form name="getTracing" method="POST" action="http://syyzas400/ShipmentInquiry/ShipmentDetails.html">
              QuickTrace 
    <input type="text" name="TrackNbr" size="14" tabindex="1" maxlength="11">
    <br>
    Carrier        
    <select name="Carrier" tabindex="2" style="background-color: #D8E4FF; color: black;
                             font-family: Arial; font-weight: bold; font-size: 9pt; width=114">
              <option>Option1
              <option>Option2
              <option>Option3
    </select>
    As you can notice, there is an Input field ("TrackNbr") and a selection field ("Carrier") with three options... The user enters a Tracking Nbr.
    in first field  and chooses one of the three options from the second field and hits <enter>. In this moment, as you can see from "action" area, an html (part of a FLEX application) is called. The problem is that the parameters ("TrackNbr" and "Carrier") are not transmitted and I don't know how to do that.
    This FLEX application accepts parameters using URL fragments technique (because could be called from another FLEX application, too)
    but obviously this cannot work with the above described form.
    I read about External Interface class, but everybody is talking about calling ActionScript functions, not FLEX applications. Being a newbie in this area,
    I am sure I am missing something, but what?
    Any help would be very appreciated, as usual...
    Florin

    Problem solved.
    I got rid of the form tag (and "action", obviously); instead, I created a JavaScript function used for onClick event of the submit button. Inside this function, I captured the values (using getElementById method) of the input and select field and, using these values, I created the URL for my FLEX application (used with location.href property), and BAM! Everything works like a charm... I am even able to use the Back button to exit the FLEX app and return to the selection screen.
    Now my question is, why does it work??? No complaints at all, just curiosity... I didn't use External Interface class, no exposed ActionScript functions prior calling frm JavaScript, no fancy stuff all sites I saw talking about...
    Grizz..., I have a feeling that what you described above is a simpler and more advanced way to do about the same thing I did; am I right?
    Thanks,
    Florin

  • What to look for in a web hosting company for Flex applications

    Hello,
    I am trying to figure out what I need to look for in a web
    hosting company if I want to deploy my own Flex applications? I
    don't anticipate having any special requirements other than the
    ability to interact with databases and XML files. Can someone help
    me figure out what the server-side requirements are?
    Thanks in advance!
    Matt

    then almost 99.9% hosting will work.
    if you want a Flexx app with compiler then oo thats different
    but as you say "I don't anticipate having any special requirements
    other than the ability to interact with databases and XML files"
    then you can go with pretty much any hosting, as long as they have
    apache, Database serve and I think thats it.

  • How to do single sign on for multiple webservices in flex application

    Hi Experts,
    I have created a flex application and using few webservices in that application. When I run the application its asking logon details for each and every webservice I used. However I want to do single sign On without providing logon details for each and every webservice.Please suggest me.
    Thanks and advance.

    Hi,
    if yout projects are deployed in their own Java EE context root then you have multiple applications, though logically you count them as one. Use OSSO or Oracle SSO (where OSSO should be fine since all deployments share the same instance)
    Frank

  • One Search service application for multiple web applications in a single server

      We are planning to host 17 Web applications in a single Server. Do I need to create search service application for each web application or I need to create one  Search service application , create a Content source for each web
    application and create a Result source for filtering. Which is the best approach. And which approach takes more RAM memory.
       In my application I am using Search web part, "Recently Changed Items", "Popular Items" web parts. when I created only one one  Search Service application for all web applications and using Result sources ,
    I am not getting the results. What could be the problem.

    Hi,
    One SSA is ok, but you should think about access rights. If the access is clear cut between all the web apps you should be ok with one SSA. Multiple result sources limiting on content source also works, but could easily be bypassed.
    Multiple SSA's will eat up RAM/CPU like a mother :)
    As for popular etc.. it could be due to how those sources are set up, but haven't investigated or tested this much.
    Thanks,
    Mikael
    Search Enthusiast - SharePoint MVP/MCT/MCPD - If you find an answer useful, please up-vote it.
    http://techmikael.blogspot.com/
    Author of Working with FAST Search Server 2010 for SharePoint

  • Support document for Migration of application fro flex 2 o flex 3

    Support document for Migration of application fro flex 2 to
    flex 3

    I'm sorry to hear that you are having problems. A few APIs
    did change from B3 to final, but you should be getting compile
    errors for those. I can assure you that all of the areas you
    mentioned were tested and are working for many folks so if you can
    supply examples of what isnt working we can try to get you back up
    and running.

  • Safari does not support community toolbar ive searched my computer for the following like people have said in similar posts but none seem to work /Library/Application Support/Conduit /Library/InputManagers/CTLoader /Library/Receipts/ctloa

    hey all i know that there have been many post about this community toolbar thing that pops up when opening Safari
    i have searched my computer for the things that have been posted in the other posts to delete
    /Library/Application Support/Conduit     (no conduit in folder)
    /Library/InputManagers/CTLoader         (i dont have input managers i have input methods but still no CTLoader)
    /Library/Receipts/ctloader.pkg                (no ctloader.pkg)
    /Library/Receipts/<Toolbar name>.pkg      (nothing in this one either)
    /Library/Application Support/SIMBL/Plugins/CT2285220.bundle         (NADA)
    /Users/<User name>/Library/Application Support/Conduit           (NOTHING EITHER)
    where / is the root library on your Hard Disk.
    If you are running Snow Leopard you should also look here:
    Library/launchAgents/com.conduit.loader.agent.plist
    Library/Application support/conduit plugins
    i have pretty much looked everywhere i dont even know where this thing came from
    can anyone lend some advise i really do not want to take the 2 hour ride to apple to get this off my computer
    thanks so much

    When you see this path:   /Library   That is your root Library.
    Open a Finder window.
    Select MacintoshHD in the Sidebar on the left then open the LIbrary folder then the Application Support folder, then InputManagers folder, the Receipts folder.
    For this path:  ~/Library/Application Support  (your Home library)
    The Tilde character ~ represents your Home folder.
    From that same Finder window select your Home folder in the Sidebar. It has a small house icon. Open the Library folder then the Application Support folder.
    Move all the Conduit/CT associated files you posted above to the Trash.
    Try Safari.
    I've yet to find the launchAgents.plist file in any Safari crash report in years. I don't think that's a problem.
    Another way to find files on your hard drive is to go to your Finder.
    From the menu bar at the top of your screen click Go / Go to Folder.
    Example. Type in:  /Library/ApplicationSupport   click Go
    Or type in:  ~/Library/Application Support   click Go

Maybe you are looking for

  • Error message while trying to play rented moves on Apple TV

    I keep getting an error message while trying to play my rented movies. I have rebooted the Apple TV. Lowered the resolution. Restated my modem . Rest my Apple TV. Soft rebooted it and it plays all Netflix and previews in HD no problem just not the mo

  • Block Sales Order by Account Group

    Hi, I hope someone can help me, I have created a new sales doc type and would like to control the use of the new sales doc type by customer account group. Is this possible? Thanks.

  • Cannot drop a column

    Hi, I am having a problem with dropping a column from a table. I am using 10g (10.2.0.1.0). Whenever I try to drop a column I got this error: ORA-39726: unsupported add/drop column operation on compressed tables Then I tried to drop it in a way that

  • Swatch library suddenly disappeared and doesn't recognize to reload

    I was working on a file as normal and noticed that in a matter of a few minutes, the swatches I had all disappeared. Had left me with none. Rebooted system, didn't help. When I go to reload swatches, it doesn't recognize any of the libraries. HELP!

  • Toplink in Cluster without Cache Synchronization

    Hello, I’m trying to setup my J2EE app that uses Toplink for its persistence in a 9iAS cluster. For the first release I’m not planning to use Toplink Cache synchronization but planning to deploy the app in 9iAS cluster of nodes say A and B. By de