Conflict between flash and flex

Detail Description Steps:
1). Created an flex web application with the sdk 3.2 and the application woks fine individually.
2). Loaded that output swf file created by the flex application in to an adobe air 1.0 application it works fine. The air application was created used adobe flash professional cs3
3). When we try to build the air package with adobe flash cs4 professional environment in air 1.5 sdk  the swf created using flex application is not loading and displaces an error message .
VerifyError: Error #1053: Illegal override of FocusManager in mx.managers.FocusManager.
at global$init()
at mx.core::Application/initManagers()
at mx.core::Application/initialize()
at registrationForm/initialize()
at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::childAdded()
at mx.managers::SystemManager/initializeTopLevelWindow()
at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::docFrameHandler()
at mx.managers::SystemManager/docFrameListener()
We tried out various methods and samples given in internet  but nothing works out . kindly help us how to go about.
This problem is occurring when we are trying to migrate our application from air 1.0 to air 1.5. Basically we are doing this for better performance.

I have long thought that if the purpose of the RIA movement
is to create
desktop like apps that run in your browser...then the
platform used to build
those apps would certainly be powerful enough to create
e-learning.
If Flash can be used for e-learning (as we do), what would
make it so
incredible to believe that Flex could also? I find e-learning
to be
well-suited to forms-style development, particularly if you
throw in
some script-driven animation. Seems to me Flex is probably
better
suited to this kind of work than Flash is.

Similar Messages

  • Conflict between Flash and CoffeeCup Web Form

    Hi
    I can't solve this and I really need some help:
    I'm developing a site using CoffeeCup webform together Adobe Flash CS4 and DW CS4 on the same page.
    When viewing through FF, Safari, Opera, Chrome both components will work although errors will be reported in error logs.
    see: http://www.realorganizingsolutions.com/ … ation.html
    When viewing through IE8 the *web form works fine* BUT the flash will only appear erratically - often not at all. To get the flash to play at all you have to click the link multiple times.
    Coffeecup uses flash to build the form hence my belief that there is a conflict in the javascript.  By commenting out the CoffeeCup web form ( starts line 38) the flash works fine which also makes me think it is the javascript in the web form.
    I am at a loss as to what to do about this. I've searched high and low. My javascript is weak.
    My Platform:
    Coffecup Web form 7.8 set to php
    Flash: CS4
    DW CS4
    Dell XP Pro
    Many Many thanks
    Vincej

    I have do that already. At first, I try to set it 1 msec but the form runtime seem like to be frozen, so I set the timer just for 300msec (I set with that value , so my clock tick can follow the system clock in difference about 99ms with the system clock tick, I could tolerance that).
    The problem is when I focusing on one text item and type something on it.
    Everytime the timer expire, It will trigger the WHEN-TIMER-EXPIRED, while in the trigger itself, I wrote one of this procedure:
    SET_APPLICATION_PROPERTY('my_window',WINDOW_TITLE,vTime);
    Everytime this procedure run, My cursor will lost its focus with the last item I entered.
    (The problem showed up if you press space-bar on the text item, because everytime you press space-bar, the cursor will return to the left position of the value in that text item. That's what I said problem with "spacing", it wouldn't do any spacing to the value in the text item).
    Of course, I have anticipation for that. I set the item property (Keep Cursor position) to true and it works fine. The cursor didn't runaway to the left, but it still wouldn't do any spacing, in other way, the cursor will return to its position of last focused text item, if the last character of the text item is space (from space-bar, I mean)It will be erased. The cursor will pretend like the last character is no space at all.
    I think that's the problem, because I can't do any space in that item (especially, if I set the timer with lower value than 300 msec).
    what I'm trying to ask is "Are there any tip or trick to make the cursor know if the last character is space and will return to the "real last" of the string in the text item ?
    Thank you for your suggestion and also thanks for your opinion, Chandrangadan, but I have already do that (It doesn't work if I set the timer lower than your 1000 ms)...
    null

  • Build the connection between Arduino and Flex 4.0 via JSON

    Hi,
    I try to make a connection between arduino and Flex 4.0, I included the JSON lib and also as3corelib.swc to Flex. When I run the Flex file the connection between PC to arduino is working (I can see it in SERPROXY window) and also I don't have any problems in Flex window, I added the SWF file of Flex to the list at //http://www.macromedia.com/support/documentation/tr/flashplayer/help/settings_manager04.htm l, Bu the reading result is not shows in the SWF,    I couldn't understand why !, thanks for help
    here the code
    package
    import com.adobe.serialization.json.JSON;
    import flash.display.Sprite;
    import flash.errors.*;
    import flash.events.*;
    import flash.net.Socket;
    import flash.text.TextField;
    public class deneme extends Sprite
    {private var magnetic:Socket=new Socket("localhost",5331);
      private var magneticValue:Number=0;
      private var distance:Number;
      private var newText:TextField=new TextField();
      private var listText:TextField=new TextField();
      private var MNx:Number;
      private var MNy:Number;
      private var MNz:Number;
      private var d:Object={"x":null, "y":null, "z":null};
      public function deneme()
       socketDataHandler();
      private function socketDataHandler():void
       newText.text=magnetic.readUTFBytes(magnetic.bytesAvailable);
       d= JSON.decode(newText.text);
       MNx=d["x"];
       MNy=d["y"];
       MNz=d["z"];
       listText.x=10;
       listText.y=10;
       listText.width=600;
       listText.height=100;
       listText.text=newText.text;
       addChild(newText);

    package
    {    import com.adobe.serialization.json.JSON;
    import flash.display.Sprite;
    import flash.errors.*;
    import flash.events.*;
    import flash.net.Socket;
    import flash.text.TextField;
    import mx.rpc.events.ResultEvent;
        public class deneme2 extends Sprite
            private var newText:TextField=new TextField();
            private var listText:TextField=new TextField()
            private var magnetic:Socket=new Socket("localhost",5331);
            private var MNx:Number;
            private var MNy:Number;
            private var MNz:Number;
            private var d:Object={"x":null, "y":null, "z":null};
            public function deneme2()
                 magnetic.addEventListener(ProgressEvent.SOCKET_DATA,getDATA);
             private function getDATA(event:ProgressEvent):void
                newText.text=magnetic.readUTFBytes(magnetic.bytesAvailable);
                d= JSON.decode(newText.text);
                MNx=d["x"];
                MNy=d["y"];
                MNz=d["z"];
                listText.x=10;
                listText.y=10;
                listText.width=600;
                listText.height=100;
                listText.text="X="+String(MNx)+" Y="+String(MNy)+" Z="+String(MNz);
                addChild(listText);

  • What is the difference between html5 and flex

    what is the difference between html5 and flex
              can any body tell me...
    Regrds
    sreedhar

    Flex uses Flash a plugin by Adobe.
    HTML5 uses HTML and requires no plugin.

  • Error while trying to synchronize audio and MIDI.  Sample rate 42804 recognized.  Check conflict between Garageband and external device.

    Sometimes, while playing back my software instrument songs, I get an intermittent pop-up error message, saying "Error while trying to synchronize audio and MIDI.  Sample rate 42804 recognized.  Check conflict between Garageband and external device."
    (Sometimes the five digit number is different, but remains a five-digit number beginning with "4".)
    Simultaneously, the song stops until I press the "Okay" button in the pop-up window.
    When I continue to play the song, the sound is jerky and clipped, and the playhead doesn't keep up with the song, and then suddenly jumps to the part of the song currently being played.
    There's also a sound of static.
    The issue seems to occur whether or not I have my MIDI controller turned on and plugged into my desktop Imac.
    Tony

    Hello,
    open your Audio MIDI Setup utility and set the input to 44100
    https://discussions.apple.com/message/12710638#12710638

  • How can I resolve conflict between itunes and Windows 8.1

    When downloading itunes to my laptop computer, using Windows 8.1 my email/network account will not work on that computer.  It is fine on other devices such as ipad and Windows phone.  I can also pick up emails on online on the same laptop.  There appears to be a conflict between itunes and Windows 8.1

    Please see  Boot Camp for comments.

  • Posing a question for those well versed in flash and flex

    I would like to start an off-line communication chat with those of you who are well versed in Flash and Flex.
    I've worked with Cold Fusion but I am not up to date on all the technologies available.  This seems like the perfect forum for this question.
    I simply want to build an application (web or desktop is unknown) in which a person can learn a foreign language, in this case English.
    I need some technical advice as to whether Flash, Flex, or a combination of technologies (Cold Fusion for server side functionality) is the best choice for this application.  I do not understand the technical aspects of Flash or Flex in building applications so I need the advice of you experts.
    As with most foreign language textbooks, audio, or foreign language video training, the material is not interesting, not pertinent to daily life, and is great for late night insomnia.  I've never seen any type of foreign language training that is interesting, fun, or uses current events as part of the curriculum.
    I would like to illustrate my idea with an example.  I want to use an existing English beginners textbook (for kids), scan the images in the textbook, store the content (rules of grammar) in a database and store example sentences in a database.
    I would like to record basic audio sentences from the textbook (Do you know tomorrow's weather), incorporate some animation (baseball player hitting a home run), incorporate some basic video (purchasing an item at the grocery store), add a quiz, test question or puzzles, etc..
    In addition, since this is a classroom setting and the kids are split into groups, I would like to store a seating chart with the kids names and pictures in a database.  After the first segment is finished (e.g. purchasing a toy at the store) the kids next perform an activty.  I want to use a combination of audio, video, and animation to explain the activity, give instructions, split the class into groups,and perform the activity.
    As I mentioned before, I would like to start an off-line discusion for those of you who are willing to share some of you knowledge and experience with both Flash and Flex.  Since you are extremely busy, maybe you might be able to point me in the right direction.
    Hopefully, some of you can provide some sound technical advice.
    Thanks in advance
    Michael Poplawski

    This is an abitious project even for some-one well versed in flex/flash, i have to give you points for outstanding courage on this .
    You need to cover quite a few areas in a project like this both for the client and the back end, you need a strong understanding of animation(either through code or the flash timeline), data parsing, logic trees for the quiz/test elements and a lot more before the first line of code would be written.
    In Australia there are already a few companies using flex for online educational applications and at least 1 state educational Authority. A search on the internet will find several sites pertaining to flash/flex based online education software and this would be a starting point to give you an idea of the strength flex has in this area.
    Beyond this it is not the sort of project that 'help' would be readily available for unless it was relating to very specific issues you could readily define. Also this is not the best forum to request this type of help as the forum is more about testing a beta product. I am sure that if you start learning about flex and have trouble understanding different aspects of how things work there will be plenty of support from the flex community.
    Message was edited by: David_F57
    by forum I don't mean the whole forum just this branch.

  • Same fonts used in Flash and FLEX are different

    Fonts used in Flash and Flex differs in appearance even though they are same. It lacks the anti alias property and shows pixelated in flex even if it appears normal in flash. Please see attachment.

    There can be several reasons for that.  First make sure the font is embedded properly.  Rotate the object and see how it looks.  It is also possible that in Flex the fonts are being captured as a bitmap which can turn off AA at times.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • AS Library for both Flash and Flex

    Hi all,
    I want to create an action script library that i can use with
    both flash and flex. i understand how to do it if i want to just
    use it in flex, but i also want it to compile down in to an swf or
    whatever so i can use the functions in flash. i tried creating an
    action script library, but it requires me to specify a 'runnable
    application file.' which doesn't make much sense, since i just want
    a class library.

    Found the answer (sort of). it's only partially possible. The
    best way would just to edit the as files in flex builder and not
    create an actual library (though this approach doesn't work if you
    need to distribute the library).
    In order to do create a library, you need to create a Flex
    Library Project in flex builder, not an Action Script Library. the
    action script library is a misnomer.
    then, when you build you have to jump through some hoops to
    get it to actually work, but creating a manifest file and setting
    "compute-digest=false" as a compiler option. for more info, check
    out the following blog post:
    http://timwalling.com/2007/10/22/compiling-flash-cs3-compatible-swcs-with-flex/

  • [JS CS3] Conflict between palettes and panels

    Hello,
    I am having a conflict between panels and palettes. Hopefully I can get some direction without having to copy the code here, because it is very long.
    I have a window of the palette type. This palette has buttons and radio buttons. The buttons call up various functions.
    The radio buttons, however, make visible/invisible a series of panels in the palette. The panels are stacked upon each other, only one of which is visible at any one time, depending upon which radio button is selected.
    One of the buttons in the palette calls up another palette (which also has a series of buttons for various functions). Let's call it the little palette. The problem is, that after the little palette is called up, the radio buttons in the big palette no longer work. I can select them but they will not make visible/invisible any of the stacked panels. The buttons in the visible panel work as well as all the other buttons that are always visible. The only thing that does not work are the radio buttons.
    My only workaround is to just dismiss the palette and call it up again. But I'd rather fix this bug.
    Any ideas? If I need to I can strip down the coding leaving only the essentials, but rather not take the time if this is a problem others have run into and hopefully have a solution for.
    Thanks,
    Tom

    Thanks.  I'll give it a try, but I even uninstalled both programs, tried
    reinstalling Reader only, and when that didn't work, uninstalled Reader and
    then reinstalled Acrobat.  Still a problem.  The particular website is
    www.officeally.com, and it opens the PDF file in a browser window, I believe
    using an ASP file.
    Larry

  • Name space conflict between static and instance method

    Hello,
    there seems to be a very unfortunate name space conflict between static and instance method name. Consider:
    static String description() that should return a description of a class.
    String description() that should return a description of an instance.
    That seems to confuse the compiler. How come? Static and instance methods don't have anything to get confused about.
    Thanks for any insights :-)

    Umm...jeez.
    It's not a bug, it's the way it's supposed to be.
    Since a static method can be called the same way an instance method
    A instance = new A();
    A.staticMethod();
    instance.staticMethod();it's not allowed.
    Also in the class, you can call
    public void myMethod() {
          instanceMethodInClass();        // You don't need this, it's superfluous
          staticMethodInClass();          // You don't need the class name.
    }If you didn't understand, then just accept the fact that it is so. Some day you'll understand it.

  • Array data between Flash and PHP

    As the title suggests, I'm trying to find a good way of
    getting an ActionScript/Flash dynamic array into PHP, so I can
    serialize it and store it in a DB, then simply give back that same
    array when it's called. Are there any popular techniques? The array
    will always be a different size, containing different values -
    which is why I'd like to keep the array in tact, to minimise the
    amount of parameter transfers. If there's no good solution, I
    suppose I could pass in parameters and read them in, create an
    array and serialize that... but I'd much rather find a way of
    having my flasher serialize his own array and pass me the
    byte-code. Is this possible?
    PHP doesn't need to read the contents of the array, simply
    store it in a DB, so if there's some kind of flash method for
    serializing an array into bytecode that it can unserialize and read
    back later, that would be awesome.
    Thanks. =]
    [edit]
    I found this:
    http://sourceforge.net/projects/serializerclass/
    a serializer class. Is this the best method?

    Sorry, I should have explained, we already use XML for data
    transfers (though I personally find JSON much nicer with less
    overhead). So, in this project, we use XML for data transfer
    between flash and PHP/Database. The reason I wanted this
    functionality, is because the flash array, in this one case, will
    be completely dynamic and the PHP doesn't need to know the contents
    of the array at all. In fact, in this instance, PHP is just the
    mechanism used for storing the data. Becuase of the nature of the
    data, I wanted to serialize the flash array, store it in the
    database as Bytecode, then when the flash needs that information
    again, I can pass back the same bytecode, which can then be
    unserialized back into the original array.
    I think I've found the solution, the one I linked in the
    original post. I should know if it's as effective as I want it to
    be in the next couple of days when my flasher gives it a try. =]
    Thanks for the responses. If anyone has any other ideas,
    please throw them in here.

  • HT202574 what is the difference between Flash and Fusion Drives?

    what is the difference between Flash and Fusion Drives?

    Here's Apple's explanation Mac mini (Late 2012 and later), iMac (Late 2012 and later): About Fusion Drive - Apple Support

  • What's the difference between flash and premier

    I know Flash is usually used for game production and Premier for video creation, but I saw poeple also can use Flash for video production as well. So I need to know what are the differences between the two of them.

    Flash is used most often for animation, and especially interactive animation.
    Premiere is used for video production, but with certain limitations, such as version support, or lack of it, can work with Flash animations.
    There is some cross-over, just as there is with Premiere and After Effects, but each program has specific uses.
    Good luck, and that is the very short answer. Others will likely be able to give you a point-by-point difference between Flash and Premiere.
    Hunt

  • Difference between Flash And AIR

    Hi,
    Actually, What is the difference between Flash and AIR

    At a very high level, Flash Player is a plugin used by browsers to display Flash content typically hosted on a server.  AIR is a runtime that displays a superset of Flash Player content, but does so in an application format installed on the users system or device.  In addition, there are differences in how the two interact with the file system and security policies.
    http://www.adobe.com/products/flashplayer/faq.html

Maybe you are looking for

  • Connecting powered 5.1 speakers to an Audig

    This should be an fairly simple question, assuming I wasn't so inept at audio stuff I just picked up a relati'vely basic 5. speaker system from Kinyo. I used to have it's little brother 4. setup, which plugged into my Audigy 2 just fine. With this 5.

  • Webforms Login

    Is there a way to do something like OPS$ for webforms? The point is to avoid authentication when starting the forms application; this should be taken from the OS-Login at the "Client".

  • NAC 4.7.1 CAS CAM Login issues

    Hello, I upgraded from 4.5.1 to 4.7.1. I am having trouble with the communication between the CAS and the CAM Here is an outline of the issue 1.       After Authentication, DHCP, ACS ok, WALL !!! 2.       Nac Online Users = 0 3.       Ping the CAM HA

  • PC Suite 6.83

    I have just downloaded PC Suite 6.83. Now when I try to use my N73 as a modem there are no modems present. I have gone to control panel, or remove programs/pc connectively solutions and clicked on repair, but this didn't help. Any suggestions or shou

  • Albanian regional settings, date-time format

    We need to have the regional settings on our SharePoint 2013 installation set to the Albanian language. When the Albanian regional settings are selected, in many places the time part of a date disappear. If I revert back to another language (en-us fo