Flex 4.1 changed creationpolicy?

good day
I just upgraded to flashbuilder 4.0.1/flex 4.1 and all my creationpolicy tags that are creationPolicy="queued" are broken the
error message says invalid value queued it must be one of auto,all,none.  did the specification change or is it a bug?  I tried to find the release notes for flex 4.1 and have not found them. I did find the release notes for flashbuilder 4.0.1 but didn't see anything right off about this error.

I thinkg "queued" hasn't worked correctly for a long time, so believe it got
pulled.

Similar Messages

  • Flex sampling frequency changes when I use it with apple loops

    Flex sampling frequency changes when I use it with apple loops in a 24 bit 88.2 project

    sorry  !
    Flex changes sampling frequency when I use it with apple loops in a 24 bit 88.2 project

  • Flex 4.1 change log?

    The stable build is out, anyone know where to get the change log for this release?

    Nightly builds which you can find here
    http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4
    All have a changes column.
    The Stable build doesn't have a changes column.
    If you mess around with the address bar and type in
    http://opensource.adobe.com/wiki/display/flexsdk/changes4.1.0.16076
    It seems to pull up changes for that specific build. WOOHOO...
    However is there a complete change log that can be found somewhere, or do you have to go back through every nightly build and figure out what changes are done to the stable build?

  • Error in compiling Flex application  - After changing my query in BW

    Hi All!!
    I'm facing the following problem:
    I have created a VC model based on a BW Query View... I have changed the query in BW (added a new key figure) and then I've refreshed the Query View in my VC model...
    After the refresh, I get the error "Error in compiling Flex application (1). Consult log file for details" everytime I try to deploy...
    Have you faced a similar problem? Does this mean that I can no longer change any query or view used in VC models???
    Thanks in Advance!
    Cris

    Hi Prachi,
    I've tried all the options you listed and it still doesn't work... I even tried to create a new query as a copy of the first one... and the error persists...
    Any other good idea (the model I´m talking about is really huge.. creating it again from zero would be a nightmare!!!)?
    Thanks in advance,
    Cris

  • Flex List ItemRenderer : Change States from parent ?

    Hai there,
    So i created a list that uses an arrayCollection as dataProvider and an itemRenderer with 2 states : LabelState and ProgressState, the labelState is the start state and shows a Filename, the progressState is the state i need to change to when i press a "Start Upload" Button.
    This is the itemrenderer :
    <?xml version="1.0" encoding="utf-8"?>
    <s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx"
    autoDrawBackground="true" currentState="LabelState" width="800">
    <s:states>
    <s:State name="LabelState" />
    <s:State name="ProgressState" />
    </s:states>
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
    <![CDATA[
    public function changeState():void
    trace("changing state for " + label_field.text);
    this.currentState = "ProgressState";
    trace(this.currentState);
    ]]>
    </fx:Script>
    <s:Label name="label_field" paddingLeft="10" maxHeight="40" paddingTop="10" paddingBottom="10" id="label_field" width="800" color="#333333" includeIn="LabelState" text="{data.label}"/>
    <mx:ProgressBar id="progress_field" left="3" top="3" bottom="3" mode="manual" chromeColor="#0096FF" includeIn="ProgressState" textAlign="center" labelPlacement="center" maximum="100" color="#FFFFFF" right="3"/>
    </s:ItemRenderer>
    This is the code for the List :
    <s:List keyUp="lst_selected_files_keyUpHandler(event)" skinClass="styles.skins.ListSkinNoHorizontal"
    borderVisible="false"
    contentBackgroundColor="#c9c9c9" contentBackgroundAlpha="1"
    id="lst_selected_files"
    width="100%" height="100%"
    alternatingItemColors="[#EAEAEA,#FAFAFA]" color="#000000"
    itemRenderer="components.ProgressLabel" dataProvider="{arr_items}" />
    <components:RemoveBar nr_of_items="{arr_items.length}" id="cmp_removeBar" hermesRYA="cmp_removeBar_hermesRYAHandler(event)" bottom="-35" width="100%" height="35" />
    This is the function that changes the states for the current "to be uploaded file":
    protected function uploadNextFile():void
    if(uploadingFile!=null) uploadingFile==null;
    popup = null;
    popup = new ProgressPanel();
    lst_selected_files.selectedIndex = currentUploadNr;
    current_progressItem = lst_selected_files.dataGroup.getElementAt(currentUploadNr) as ProgressLabel;
    current_progressItem.changeState();
    lst_selected_files.validateNow();
    For some reason the states change ... but the elements aren't visually updated, ... meaning that i still see the label and the progressbar isn't visible :/
    anyone ?

    This seems to work for me:
    <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" >
        <s:controlBarContent>
            <s:Button label="test" click="(list1.dataGroup.getElementAt(0) as Object).test()" />
        </s:controlBarContent>
        <s:List id="list1">
            <s:dataProvider>
                <s:ArrayList>
                    <fx:Array>
                        [0,1,2]
                    </fx:Array>
                </s:ArrayList>
            </s:dataProvider>
            <s:itemRenderer>
                <fx:Component>
                    <s:ItemRenderer>
                        <fx:Script>
                            <![CDATA[
                                public function test():void {
                                    currentState = 'state2';
                            ]]>
                        </fx:Script>
                        <s:states>
                            <s:State name="state1" />
                            <s:State name="state2" />
                        </s:states>
                        <s:Rect width="50" height="50">
                           <s:fill>
                               <s:SolidColor color.state1="red" color.state2="green" />
                           </s:fill>
                        </s:Rect>
                        <mx:ProgressBar includeIn="state2" />
                    </s:ItemRenderer>
                </fx:Component>
            </s:itemRenderer>
        </s:List>
    </s:Application>
    You will probably want to override getCurrentRendererState() to do this properly tho.  This post demonstrates how to use DataRenderer instead if you would rather: http://flexponential.com/2010/02/07/using-datarenderer-to-add-custom-states-to-a-spark-lis t-renderer/
    In general you shouldn't interact with the renderers of a List directly (via getElementAt), but rather by changing the data in the List and building an ItemRenderer that reacts to those changes.  So it would be better if you did something like list1.dataProvider.getItemAt(0).changeState = true and then in your renderer override the data setter to change the state if that variable is set.

  • Stage Quality of Flex App automatically changes zu LOW

    Hi there.
    I have an issue with setting the stage quality of the
    flashplayer to
    high which is default.
    I set the quality in my HTML-Container to HIGH and in my flex
    application with stage.quality = StageQuality.HIGH;
    But after a couple of seconds the quality automatically
    changes to low.
    Is this a bug?
    I'm using Flexbuilder 3b3.

    stissing,
    I'm seeing this in other Button based controls as well
    (LinkButton, Button, CHeckBox, RadioButton).
    I filed a bug at
    http://bugs.adobe.com/jira/browse/SDK-19353
    Thanks,
    Peter

  • Flex + PHP Application - Change endpoint

    I need distribute my applicatión between many clients and i need change the endpoint in every they.
    I need any tip about this because i can´t create many "Export release build" with the configuration on _serviceControl.endpoint for every client
    I have Flash Builder for PHP 4.6
    best regards

    Pass it runtime viaflashvars or make a service and call the service for each client to return the proper endpoint.
    C

  • Flex Window Title Changing Autoatically

    Hello,
    I have a flex window, and I am setting the title using
    BrowserManager and IBrowseManager. When the window is loaded, the
    title is getting set properly. But once the user clicks on the
    window, the title is getting reset to #. Strange thing is, this is
    happening with IE browsers only. With Mozilla, window title is
    persisting properly.
    Please help me to resolve this incase of IE browser.
    Regards
    Sivajee.

    I tried this... But didnt wrok...
    Here is the code which I used to set the title.
    bm = BrowserManager.getInstance();
    bm.init("", "Create PDF - Claim # " + claimNumber);
    I tried bm.setTitle("Create PDF - Claim #" + claimNumber),
    that too didnt work.

  • Huge lag when changing currentState for the first time in simple application, Flex 4.6?

    Please try out the example code below.
    The first time I click the button it takes my PC ~ 85 ms to change states. If I click the back button afterwards, then click the button again, the lag is gone and the state change is fast. I've tried changing the creation policy, seems like it has no effect and there are deeper problems
    My questions are why is there lag the first time you click the button, and how do you fix it? I have an application that uses a state flow very similar to the code I have simplified below and this is really driving me nuts.
    <?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="*"
                                     creationPolicy="all" currentState="InitialState"
                                     width="512" height="512">
              <fx:Script>
                        <![CDATA[
                                  import flash.utils.getTimer;
                                  protected function button1_clickHandler(event:MouseEvent):void{
                                            var time:int = getTimer();
                                            this.currentState = "ListState";
                                            trace("time to show list state:" + (getTimer() - time));
                                  protected function button2_clickHandler(event:MouseEvent):void{
                                            var time:int = getTimer();
                                            this.currentState = "InitialState";
                                            trace("time to go back:" + (getTimer() - time));
                        ]]>
              </fx:Script>
              <s:states>
                        <s:State name="InitialState"/>
                        <s:State name="ListState"/>
              </s:states>
              <s:Button includeIn="InitialState" click="button1_clickHandler(event)" x="221" y="221" label="Show List State"/>
              <s:Button includeIn="ListState" x="226" y="324" label="Back" click="button2_clickHandler(event)"/>
              <s:List includeIn="ListState" x="139" y="158" itemCreationPolicy="immediate">
                        <s:dataProvider>
                                  <s:ArrayList>
                                            <fx:Object/>
                                            <fx:Object/>
                                  </s:ArrayList>
                        </s:dataProvider>
              </s:List>
    </s:Application>
    ----OUTPUT----
    time to show list state:84
    time to go back:2
    time to show list state:5
    ----OUTPUT----
    Message was edited by: Chentleman. fixed code indentation

    I am gonna be blunt and say I am quite annoyed that you did not read my post at all. 85 ms is a 1600% increase in lag, the first time the state changes. This is also a scaled down version of the problem with only a SINGLE component. The more components you add, the worse the delay gets. 
    After spending a lot of time searching, this seems to be a bug that has existed for quite some time as early as Flex 4.1. https://bugs.adobe.com/jira/browse/SDK-30302. Now in flex 4.6, it is still broken with the 9 month old bug report closed and deferred
    itemCreationPolicy and creationPolicy do not work at all in conjuction with includeIn/excludeIn. At least the work-around kind of works, although I am sure there are plenty of people still using the creationPolicies not knowing why their applications are so slow.

  • Data connection between Java Webdynpro - Flex Flash Island

    Hi,
    I'm developing a Java Webdynpro with connection to a Flex Flash Island. I'm using Flex 3.2.
    I've already set up the connection from WDJ to Flex, by using Events and the FlashIsland.fireEvent method, this all works fine. Now I'm trying to update a value in WDJ, to be updated in Flex. This gives the following error:
    Error: Error #1023: Stack overflow occurred.
         at Function/http://adobe.com/AS3/2006/builtin::apply()
         at mx.binding::Watcher/wrapUpdate()
         at mx.binding::PropertyWatcher/eventHandler()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()
         at UWLApplication/set opentask_updated()
         at MethodInfo-4234()
         at Function/http://adobe.com/AS3/2006/builtin::call()
         at sap.core.wd.context::WDContextListener/execute()
         at sap.core.wd.context::WDContext/notifyListeners()
         at sap.core.wd.context::WDContext/_set()
         at sap.core.wd.context::WDContext/set()
         at sap.wd.island::WDIsland/storeProperty()
         at sap.wd.island::WDIsland/onUpdateProperty()
         at mx.binding.utils::ChangeWatcher/wrapHandler()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()
         at UWLApplication/set opentask_updated()
         at MethodInfo-4234()
    This is especially strange, cause before I had a refresh button in which I updated my entire item collection. Now, I have added this field and suddenly I get this error !
    Does anybody has any idea what this could mean? Any help would be much appreciated ...
    My field in Flex:
    \[Bindable\]
    public var opentask_updated:Number;
    <mx:Text id="opentask_updated_text" text="{opentask_updated.toString()}" />
    My adaptions in WDJ:
    public void getInbox( )  {
           wdContext.currentInboxElement().setOpentask_updated(0);
    public void wdDoInit()  {
           getInbox();

    Solved!
    It appeared to be a "long" parameter and I was trying to put it in a "Number" parameter in Flex (because there is no long in Flex)
    When I changed both to String, it worked!

  • Using Eclipse project definitions to build the Flex SDK

    It would be great if someone from Adobe could post on the recommended usage of the Eclipse project definitions in the development/eclipse/ subdirectory of the 3.0.x trunk distribution. I would like to debug some compiler modifications that I am working on.
    I saw Peter Farland demo this setup at 360Flex, but was unable to capture all the details of the Eclipse configuration that he discussed in his talk.
    thanks!

    If you go to the framework project’s properties, there is a section called Flex Library Compiler, you want to use a specific flex sdk (add a new sdk which points to the trunk, and use that) — you are probably building /against/ the wrong sdk, right code, wrong compiler.
    - Jono
    From: Ben Clinkinbeard <[email protected]>
    Reply-To: <[email protected]>
    Date: Thu, 3 Apr 2008 12:56:01 -0700
    To: <[email protected]>
    Subject: Re: Using Eclipse project definitions to build the Flex SDK
    A new message was posted by Ben Clinkinbeard in
    Developers --
      Using Eclipse project definitions to build the Flex SDK
    Sorry, I'm not following. My SDK project is from the trunk.
    Thanks,
    Ben
    On Thu, Apr 3, 2008 at 3:32 PM, Jono Spiro <[email protected]> wrote:
    A new message was posted by Jono Spiro in
    Developers --
      Using Eclipse project definitions to build the Flex SDK
    Try changing the sdk for the framework lib project to trunk (you'll need to add a new flex sdk, name it whatever you want) -- it's in the project properties. It's using the wrong compiler.
    - Jono
    From: Ben Clinkinbeard <[email protected]>
    Reply-To: <[email protected]>
    Date: Thu, 3 Apr 2008 05:13:43 -0700
    To: <[email protected]>
    Subject: Re: Using Eclipse project definitions to build the Flex SDK
    A new message was posted by Ben Clinkinbeard in
    Developers --
      Using Eclipse project definitions to build the Flex SDK
    I am running FB on top of Eclipse 3.3.2.
    <http://3.3.2.>  <
    <http://3.3.2.>
    http://3.3.2.>  I checked out the whole SDK trunk and can build the main ant task with no errors. I used the instructions mentioned above to create a Flex framework library project and thats where the error comes in. (I had tried to manually build a framework project a few times and it was a nightmare.) I would probably prefer to work on the 3.0.x branch/tag as I hope to submit a patch or two but saw Joe mention that the project defs only existed in the trunk.
    Searching Google for the oem error turns up lots of links about projects that had assets deleted and the build got confused but following the instructions on how to fix proved unsuccessful.
    Thanks,
    Ben
    On Thu, Apr 3, 2008 at 1:45 AM, Jono Spiro <[email protected]> wrote:
    A new message was posted by Jono Spiro in
    Developers --
      Using Eclipse project definitions to build the Flex SDK
    I always forget what that error means when it comes up -- though it's been ages since I've seen it last, literally.
    Joe: Since you mention Java 1.5, I'm guessing the errors are in the asdoc package? Those should be turned off (read: turned into a warning) -- Eclipse is a little too persnickety about that particular error. There's a preference for this in the Java section under warnings and errors. It's turned off in the trunk dev projects. Otherwise, you should be able to run the compiler directly with no problems (okay, one more caveat: there's a class loader issue with the OEM, fixed in trunk if you look for my Java 1.5 checkin).
    Ben: What is your setup? What are you building (Ryan mentions trunk, Joe mentions 30x), which Eclipse, which dev projects, did you build the sdk from the commandline first, etc.?
    Cheers,
    Jono
    View/reply at Using Eclipse project definitions to build the Flex SDK <
    <http://www.adobeforums.com/webx?13@@.59b4a9d4/3>
    http://www.adobeforums.com/webx?13@@.59b4a9d4/3>
    Replies by email are OK.
    Use the unsubscribe <
    <http://www.adobeforums.com/webx?280@@.59b4a9d4%21folder=.3c060fa3>
    http://www.adobeforums.com/webx?280@@.59b4a9d4%21folder=.3c060fa3>  form to cancel your email subscription.
    View/reply at Using Eclipse project definitions to build the Flex SDK <
    <http://www.adobeforums.com/webx?13@@.59b4a9d4/5>
    http://www.adobeforums.com/webx?13@@.59b4a9d4/5>
    Replies by email are OK.
    Use the unsubscribe <
    <http://www.adobeforums.com/webx?280@@.59b4a9d4%21folder=.3c060fa3>
    http://www.adobeforums.com/webx?280@@.59b4a9d4!folder=.3c060fa3
    <http://www.adobeforums.com/webx?280@@.59b4a9d4%21folder=.3c060fa3> >  form to cancel your email subscription.
    View/reply at Using Eclipse project definitions to build the Flex SDK
    <http://www.adobeforums.com/webx?13@@.59b4a9d4/6>
    Replies by email are OK.
    Use the unsubscribe
    <http://www.adobeforums.com/webx?280@@.59b4a9d4%21folder=.3c060fa3>  form to cancel your email subscription.
    View/reply at Using Eclipse project definitions to build the Flex SDK
    <http://www.adobeforums.com/webx?13@@.59b4a9d4/7>
    Replies by email are OK.
    Use the unsubscribe
    <http://www.adobeforums.com/webx?280@@.59b4a9d4!folder=.3c060fa3>  form to cancel your email subscription.

  • Problem viewing flex in Safari

    I'm new to Flex and unable to view my Flex work in Safari...
    Firefox works fine.
    Here's one simple example:
    http://www.papaya.net/test/flex/1/firstAnimation.html
    You should see a red ball moving across the screen like this
    screen cap from Firefox:
    http://www.papaya.net/test/flex/1/firefox-snap.png
    But in Safari I only get the grey background, no red ball. So
    far none of my samples work in Safari.
    Do you see the same problem?
    These source files can be downloaded here:
    http://www.papaya.net/test/flex/1/Archive.zip
    My setup:
    Mac Power Book G4
    OSX 10.4.11
    Safari 3.1.2
    Flash player version 9,0,124,0 installed
    Flex Builder 3

    I changed the ball position as suggested, but still did not
    work in Safari... still works in Firefox.
    Here's that test:
    http://www.papaya.net/test/flex/2/firstAnimation.html
    I also checked with IE6/FlashPlayer9 and it works... what
    version IE did not work?
    The SWF plays ok in safari by itself, but not with the HTML
    page code... we removed the javascript and it worked... don't know
    if that's a real solution as the page code is being generated by
    Flex Builder 3.
    Here's the new AS code for the test linked above:
    package {
    import flash.display.Sprite;
    import flash.events.Event;
    public class firstAnimation extends Sprite {
    private var ball:Sprite;
    public function firstAnimation() {
    init();
    private function init():void {
    ball = new Sprite();
    addChild(ball);
    ball.graphics.beginFill(0xff0000);
    ball.graphics.drawCircle(0, 0, 40);
    ball.graphics.endFill();
    ball.x = 20;
    ball.y = 50;
    ball.addEventListener(Event.ENTER_FRAME, onEnterFrame);
    private function onEnterFrame(event:Event):void {
    ball.x++;

  • BlazeDs Flex application

    Hi guys,
                   I started working on blazeDS, tomcat , flex, setup is done and ran basic code which calls remote java method.
    The problem comes when i change the Flex code, the changes are not showing up, i cleaned the project, deleted the swf filed, but still it is picking the old UI
    code(not showing the new one's),  if i run just the html page it is showing changed ui, but if i run in tomcat its not picking the new swf file, seems like i need
    to know how to deploy the project.
    Can any one  know about it.
    Thanks
    gowtham.

    solved by setting the flex output folder to folder where  web-inf exists.

  • My apps dance open and close on their own in my IPad 2 what can be the prob? I have already restored

    I got the charger flex or pin changed and now the apps dance on the screen, photos open and zoom in, then out, the other apps open and close. I have already restored the device with Itunes and prob is still there. What can be the problem? Any suggestion will be welcome. Thank you

    THANKS for your prompt reply  Bluetooth is off in my laptop and IPhone.. and in fact the reset is the only thing that can make it back to normal. But for a lil while. I wonder if it is the touch, or the home botton... both things are very expensive to replace, so I wouldn't like to spend $$ and continue having the prob.....

  • Lenovo IdeaPad Flex15 WiFi not working

    IdeaPad Flex 15. Changed drivers to the latest from Intel. 17.1.0.19 from 7/21/2014 and the system always drop down in a few mins. I changed the power settings so fixed the issue with sleep mode. (when close laptop, and oipen, the card was not working anymore until manual disable/enable device).
    Now it works, but lost connection and need to be at least switched off and on to reconnect network.
    I want a quick solution please or take the laptop back and give me more mone. I'm not able to continuously work with that device and it is pain to have it. I just feel it was really bad investment into this device.. and to know that before, never will buy it.

    hi oxley
    Sorry to hear about your Wi-FI trouble.
    If you have the Intel® Wireless-N 7260 (Single Band, Wi-Fi + Bluetooth) combo card, can you try the following:
    1. Install Version: 17.0.6 (Latest) from the Intel site:
    File name: Wireless_17.0.6_De164.exe
    Version: 17.0.6 (Latest)
    Date: 08/11/2014
    Size: 21.35 MB
    Language: English
    Operating Systems: Windows 8.1, 64-bit*
    2. Disable the Bluetooth (see this guide)
    3. Set the power management settings of the Wireless Card and the PC to High Performance (see Method 2 and 3 of this guide)
    When done, do a continuous ping via the command prompt (eg. ping -t www.google.com) and observe. If you get continuous reply and no connection drop / request timed out then that means the Wi-Fi connection is stable.
    More info:
    Using Ping To Test An Internet Connection
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

Maybe you are looking for

  • Reprint Manual Check

    I crfated a manual check by FCH5 Now the cheque is stolen. I am trying to re-print the same with FCH7 But the error shown is: "Manual Cheques cannot be re-printed" Help me with the solution for re-printing the manually created cheque

  • Repeating the output in sales order

    Hi, When we create a sales order and save it , the output is issued through output type. We are now facing an issue. when we do some changes in the sales order (manually or batch job), the output is not re-triggred. how to re-trigger the output. It c

  • DST in B2B ?

    We are testing out the DST changes that will be occurring on 3/11 on our B2B development box. We have changed the Linux date to 3/11/07. B2B has been recycled. When I drop a document in B2B, however, it is still getting a date/timestamp for the actua

  • IE9 - ads not related to web site

    Hello, We have weird problems with a Windows 7 SP1 Enterprise machine. Installed is IE9 and latest Java application. If the user browse to a newspaper page suddenly some ads in a frame are displayed with girls wearing less clothes (not porn). Certain

  • OCP Exam

    Hi everyone, I want to write OCP exam and was looking forward to get details , if anyone can share. (Set of exams, Books to study etc) Any information will be appreciated. Thanks. Aarti