Cairngorm 3 in Flex4

Hello

I'm new in flex4 and want to use an architectural setting. But there is confusion in using the framework.

Can U please suggest me that I can use Cairngorm 3 in flex4. Is there no problem to use it.

Or else should I have to go with parsley 2.2 only in flex4.

Or parsley 2.3.1 and Cairngorm 3 (combination)

What is the best...

Thanks and greetings

Hello

Please click the link: http://rushmeflex.blogspot.com/2010/09/cairngorm-3-example.html

Hope this helps

Rush me

Tags: Flex

Similar Questions

  • Cairngorm - ModuleViewLoader question?

    Hello

    Don't know if it's really a mistake...

    I use the following to insert a module into a MXML file

    < module: ModuleViewLoader width = "100%" height = "21".

    moduleManager = "{counterpartySearchModule}".

    skinClass = "com.adobe.cairngorm.module.ModuleViewLoaderSkin" > "

    < module: loadPolicy >

    < module: BasicLoadPolicy / >

    < / module: loadPolicy >

    < / module: ModuleViewLoader >

    While it works well... at first when the module is about to load... I get a text saying 'Landing' and then 'Loading'... "and I can not understand why.

    The module is basically a module of AutoComplete using AutoComplete of Hillel Coren library.

    It is a behavior of Cairngorm Modules or is it something I need to study with AutoComplete of Hillel Coren library?

    Thank you

    I solved my problem

    Landing and loading channels come from the ModuleViewLoaderSkin. If you do not want these you need to create your own.

  • How to write Save function based on the drop-down list box selection data in app mxml flex4 with as3

    Hi all

    I'm working on the application web flex4 with as3.

    I have a doubt, I've created a mxml it has two text boxes, except the button and a combo box that is has two option as a percentage and the amount.

    my needs are I gave here.

    need 1: when I choose option amount that two text boxes does not have to be editable.when I select text tat box two percentage option will be editable.

    need 2: when I select the percentage in combox option and two text boxes are empty, and then click the button Save-> I want to display warning msg

    need 3: when I select the option amount combox and the two boxes are emptu click the button Save-> I don't want any warning messages.

    How to validate it and how to write backup for this function.

    This is my sample code:

    list box ID = baseAmtPer

    ID TextBox1 = maxCommAmt.text

    ID = baseAmtPer.text text box

    If (((baseAmtPer.editable!=true) & & (maxCommAmt.editable! = true)) & & ((baseAmtPer.text=="") & &(ma xCommAmt.text=="")) |) (baseAmtPer.text == "") | (maxCommAmt.Text=="")) -> This condition not allowing while I'm selecing amount in combo box. How the TWO TEXT BOX WILL BE EMPTY for this problem

    {

    Alert.Show ("enter in all areas", "Information");

    }

    on the other

    {

    some encodings

    }

    Hello

    Please go through the following Code:

    http://ns.Adobe.com/MXML/2009.

    xmlns:s = "library://ns.adobe.com/flex/spark".

    xmlns:MX = "library://ns.adobe.com/flex/mx" minWidth = "955" = "600" minHeight >

    Import mx.collections.ArrayCollection;

    Import mx.controls.Alert;

    Import spark.events.IndexChangeEvent;

    protected function button1_clickHandler(event:MouseEvent):void

    {

    If (comboBox.selectedItem == "Percentage" & textBox1.text == "" & textBox2.text == "") {}

    Alert.Show ("enter the values");

    }

    }

    protected function comboBox_changeHandler(event:IndexChangeEvent):void

    {

    {if(ComboBox.SelectedItem=="Amount")}

    textBox1.editable = false;

    textBox2.editable = false;

    }

    else {if(comboBox.selectedItem=="Percentage")

    textBox1.editable = true;

    textBox2.editable = true;

    }

    }

    ]]>

    Amount

    Percentage

    Thank you and best regards,

    ------------------------------------------------------------------------------------------ --

    Vibhuti Gosavi . [email protected] | www.infocepts.com

    ------------------------------------------------------------------------------------------ --

  • How to validate and save the values to a combo box and two text boxes in flex4 mxml application with as3

    helllo all,.

    I'm working on the application web flex4 with as3.

    I have a doubt, I've created a mxml it has two text boxes, except the button and a combo box that is has two option as a percentage and the amount.

    my needs are I gave here.

    need 1: when I choose option amount that two text boxes does not have to be editable.when I select text tat box two percentage option will be editable.

    need 2: when I select the percentage in combox option and two text boxes are empty, and then click the button Save-> I want to display warning msg

    need 3: when I select the option amount combox and the two boxes are emptu click the button Save-> I don't want any warning messages.

    How to validate it and how to write backup for this function.

    any suggession or extract code is welcome.

    Thanks in advance,

    B.Venkatesan

    Looks like you are trying to do too much at once. Try to hang the events correctly

    The close event of the comboBox can do something like this

    protected function toggleTextEditing(event:DropDownEvent):void

    {

    If (this.optionCmb.selectedItem.label is "Percentage")

    {

    This.Text1.editable = true;

    This.Text2.editable = true;

    }

    Else if (this.optionCmb.selectedItem.label == "Number")

    {

    This.Text1.editable = false;

    This.Text2.editable = false;

    }

    }

    The button's click event can do something like

    protected function save(event:MouseEvent):void

    {

    If (this.optionCmb.selectedItem.label is "Percentage")

    {

    If (this.text1.text == "" & this.text2.text == "")

    {

    Alert.Show ("text is empty");

    return;

    }

    on the other

    {

    }

    }

    Else if (this.optionCmb.selectedItem.label == "Number")

    {

    }

    }

    If you can put in your entire code, maybe I can have a look to see if I can find something wrong with that.

    -Pramod

    http://www.flexmycode.com

  • Cairngorm 3 with FlexSDK 4.5.1 lib compatibility

    What versions of library of parsley/Cairngorm 3 are compartible with FlexSDK 4.5.1?
    Parsley/Spicelib cares as much as I would like to ask the question on Spicefactory

    Forum, but it's stop in the last week or so. Someone knows why?

    Thank you

    All this should be compatible.

  • How to make a button turn on the 'real' property while I'm clicking on a row of datagrid mxml App flex4

    Hi friends,

    I'm new to flex, I application web flex4 with mxml tags.

    I hit this place, please give an idea.

    I have a DataGrid with 5 lines and 4columns, and also I have a button (enable property is set to false).

    while I click on a particular line of datagrid then the property enbale button should be change to true.

    where I write the code.

    any suggession or the code snippet.

    Thanks in advance.

    B.Venkatesan.

    Hello

    You can take the help of the following code:

    http://ns.Adobe.com/MXML/2009.

    xmlns:s = "library://ns.adobe.com/flex/spark".

    xmlns:MX = "library://ns.adobe.com/flex/mx" minWidth = "955" = "600" minHeight >

    Import mx.collections.ArrayCollection;

    [Bindable]

    public var Arr:ArrayCollection = new collection ArrayCollection ([{a: "AAA", "BBB" b:}, {a: "111", b: "222"}]);

    public void Activate (): void {}

    BTN. Enabled = True;

    }

    ]]>

    Thank you and best regards,
    ------------------------------------------------------------------------------------------ --
    Vibhuti Gosavi . [email protected] | www.infocepts.com
    ------------------------------------------------------------------------------------------ --
  • How to delete a selected line using a button located outside the datagrid in flex4 mxml application

    Hi friends,

    I'm new to flex, I use flex4 mxml application, I have my doubts... Help, please.

    My requirement is that I use a grid.i of data data should this datagrid from another window contextual and recorded the details datagrid now, too, I want to remove a record from a data grid

    I use a datagrid. a save button and remove the two buttons are placed outside the grid of data. so once I click on a row of the data grid and click on remove the medium button this record should delete data grid.


    All codes suggession and extract are welcome.

    Thanks in advance,

    B.Venkatesan

    Hello

    This code can help you:

    http://www.Adobe.com/2006/mxml"layout ="absolute"viewSourceURL =" srcview/index.html">"

    Import mx.controls.CheckBox;

    Import mx.collections.ArrayCollection;

    Import mx.controls.Alert;

    public var dp:ArrayCollection = new ArrayCollection();

    public void addRow (): void

    {

    var tmp:Object = new Object();

    tmp ["amount"] = 100;

    dp.addItem (tmp);

    }

    public function delRow (): void

    {

    If (dgFee.selectedIndex! = - 1).

    dp.removeItemAt (dgFee.selectedIndex);

    }

    ]]>

    Thank you and best regards,

    -----------------------------------------------------------------------------------------

    Vibhuti Gosavi . [email protected] | www.infocepts.com

    -----------------------------------------------------------------------------------------

  • problem during build source cairngorm

    Hello

    I checked cairngorm SVN and try to build using Maven 3.0.3. But I have encountered these problems:

    1, mvn complaints that brought 'external' is not recognized. (see annex 1)

    cairngorm_1.png

    2, perhaps because point 1 above, the generation cannot resolve the dependencies and failed (see attachment 2)

    cairngorm_2.png

    3, in the libraries/pom.xml, the version of the flex sdk is still 4.1. How can I make it work with flexsdk 4.5.1?

    Can you help me understand how to compile the cairngorm3 correctly?

    Thank you!

    York

    you're referncing trunk? Trunk is here earlier:

    http://sourceforge.NET/Adobe/Cairngorm/code/827/tree/cairngorm3/trunk/

    You can use the web based SVN via the 'Code' button in the menu bar on SF or http://sourceforge.net/adobe/cairngorm/code/

    I don't see Flex 4.5 in the pom of high-level in the trunk.

    Popup library is available in different versions. Popup itself does not contain a reference to the parsley, but there is also a PopupParlsey version. This is really useful in the old version of parsley which are provided via the wiki because that in later versions of parsley, parsley added the tag PopUp that makes this obsolute.

    The distribution of parsley only made reference to Popup library non - parsley.

  • How to change the background color of the Textinput in flex4

    Hi friends

    Let me know if there is a property in the class textinput that change its background color from white to another thing.

    I use flex4(flash_builder_4).in flex 3, there is a backgroundColor property which sets its color but in flex 4, there is no everything well so don't let me know all substitute property for this.



    Thanks and greetings

    Vineet Osho

    I don't know which is the problem, but you set a skin for TextInput and used for a TextArea component...

  • Best use of a model in cairngorm

    I'm a bit confused about the use of a model, ModelLocator in cairngorm

    I created it and everything works fine but what is the best way to access it, currently I have many forms that all do something like

    < fx:Script >
    <! [CDATA]

    import com.model.ModelLocator;

    [Bindable] private var model: ModelLocator = ModelLocator.getInstance ();

    and then later on

    private void fun1(evt:Event):void
    {

    Model.something = 'blah '.

    var s1:String = model.anotherSomething;

    }

    or something else

    Is it OK to have varibles across the mxml files different all creating a model private var, made this last resouces or is it ok because than its static

    I have also several arrayCollections 11 + other stuff in the model, is this ok

    Hi JockMahon,

    Its ok fine, you can go with this...

    However do not forget something you will be declaring variables in the ModelLocator class if you use them in your application. I mean more of an mxml page, or in the form of files. However if you need to a property or variable in a single file, then you can declare it locally in the file instead of inside decalring

    ModelLocator.

    ModelLocator in cairngorm framework is a class singleton in how many files, you have a model variable, it will actually return or return only single instance of the ModelLocator class static.

    [Bindable] private var model: ModelLocator = ModelLocator.getInstance ();

    How many times, you have a variable using the style above decalring then you will get only a single static reference to the instance of the ModelLocator class. No no instances are created. It's like you get a pointer to the model variable.

    I hope it is clear now.

    Thank you

    Jean Claude

  • HTTPService to localhost does not work in Flex4... Even with crossdomain.xml

    So, it worked before I recompiled with Flex4, (in Flex 3.5) and now I can't get the following to work...

    History:

    I use httpservice in flex as:

    "" < mx:HTTPService id = "methods" url = "http://localhost/parser.php"method = "POST" showBusyCursor = "true" resultFormat = "e4x" result ="xmlresultHandler (event)" fault = "faultHandler (event)" / > "

    Everything is in my directory on my web server. When run in debugging or directly from flashbuilder, the call works fine. If I ran a release build, FTP in/var/www rejection (my roots) and try to access the server, the site pulls upward, and the series of swf files, but I always get a

    Fault: Channel .Security .error

    FaultString: 'error of security to access the url.

    faultDetail: ' Destination: DefaultHTTP.

    When it tries to read the httpservice.

    I have a crossdomain.xml file in my folder/var/www (webroot) with what I see as a permissive super settings... Below:

    <? XML version = "1.0"? >
    <! DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd" > ""
    < cross-domain-policy >
    "< allow-access-from domain =" "*" ports = "*" / >
    < site permitted-cross-domain-policies of control = 'all' / >
    "< allow-http-request-headers-from domain =" "*" headers = "*" / >
    < / cross-domain-policy >

    Any help would be GREATLY appreciated.

    You may need to set the - use-network = false compiler option.

    Project - Properties - Flex Compiler

    Add the option - use-network = false for the ' additional compiler arguments: "section.

    When deploying on a live server, you probably need to recompile it with the option - use-network = true.

    Who knows, maybe in your situation, it must be set to true.

    If this post answers your question or assistance, please mark it as such.

    Greg Lafrance - Flex 2 and 3 certified ACE

    www.ChikaraDev.com

    Training Flex and Support Services

  • Help me complete my first Login of Cairngorm example.

    Hello

    I'm still fearing to make an application using Cairngorm. Help, please

    This will be my sketch of my Caringorm request.

    This will is a LoginExample where on a successful connection is displayed as WELCOME or INVALID CONNECTION in the case of a bad connection.

    Please go through my code:

    It's my hand mxml file


    <? XML version = "1.0" encoding = "utf-8"? >
    < mx:Application xmlns:controller = "uk.co.clockobj.cairngormdemo.controller. *" >
    < controller: AppController / >
    < mx:Script >

    user: UserDTO var = new UserDTO();
    public function login (): void
    {
    User.UserName = UNAMETI.text;
    User.Password = PASSTI.text;
    systemManager.dispatchEvent (LoginEvent.LOG_USER_IN, user);

    }
    < / mx:Script >
    < / mx:Application >

    It's my UserDTO object:

    package dto
    {
    [Bindable]
    [RemoteClass(alias="namespace.to.some.server.dto")]
    public class UserDTO
    {
    public var username: String;
    password public var: String;

    public void UserDTO()
    {
    }
    }
    }

    This is my controller class:

    controller package
    {
    SerializableAttribute public class AppController extends FrontController
    {
    public void AppController()
    {
    Super();
    initialiseCommands();
    }

    private void initialiseCommands(): void
    {
    addCommand (LOG_USER_IN, LogUserInCommand);
    }
    }
    }

    This is my class of the event:

    package events
    {
    import com.adobe.cairngorm.control.CairngormEvent;

    SerializableAttribute public class LoginEvent extends CairngormEvent
    {

    public static const var LOG_USER_IN:String = "LOG_USER_IN";

    the user public var: UserDTO

    public void LoginEvent (type: String, user: UserDTO, bubbles: Boolean = false, cancelable: Boolean = false)
    {
    Super (type, bubbles, cancelable);

    This.User = UserDTO;
    }

    }
    }

    This is my command class:

    package controls
    {
    public class LogUserInCommand implements ICommand, IResponder
    {

    Service myremoteservice;
    public void LogUserInCommand()
    {
    }

    override public function execute(event:CairngormEvent):void
    {

    myRemoteService = ServiceLocator.getInstance () .getRemoteObject ("docsServices");
    }

    public void result(data:Object):void
    {

    ModelLocator.getInstance (.welcome = property ResultEvent (data));

    }

    public void fault(info:Object):void
    {

    ModelLocator.getInstance (.invalid = property ResultEvent (data));


    }

    }
    }

    This is my ModelLocator class:

    package template
    {[Bindable]
    / public class ModelLocator implements IModelLocator
    {
    private static var _instance:ModelLocator;

    Public Shared function getInstance (): {ModelLocator}
    If (_instance == null) {}
    _instance = new ModelLocator();
    }
    return _instance;
    }

    public void ModelLocator()
    {
    If (_instance! = null)
    {
    throw (new Error ("class Singleton has already been instantiated"));
    } else
    {
    session = new SessionModel();
    }
    }

    the user public var: UserDTO

    public var welcome: String;
    public var invalid: String;

    }
    }


    I have my file services.mxml defined in connection with my java file:


    < mx:RemoteObject
    ID = "docsServices".
    destination = "ToRemote.

    source = "cairngormcf.com.cf.CairngormJava" > "
    < / mx:RemoteObject >

    my questions to what is above the code are:

    1. How can I call the FrontController of my connection function of the main Application under the container form.

    2. after sending my logon function event, who should listen to this event. (How to do here)

    3.
    3. after obtaining the DTO user details in my Java layer, I validate the data and I sends a string either valid or invalid connection Login as String, here's how my main Application gets it data?

    Please help me in all these things, really, it will be a great help.

    While waiting for the responses from the experts

    Thanks a lot for reading long code.

    Hi Kiran, this is your class in place of the stuff as mentioned in the classes below that it's

    or if you can change it yourself here I use the custom component and I import this component custom demand... so use custom component to send event cairngorm...

    the best practice is to create a display component, and then import this view in your application and which will reduce the file size of your application and file size of download... so if you have any problem using this code let me know

    company
    ------------
    1 MyServices
    ------------

    http://www.Adobe.com/2006/mxml '.
       
    xmlns:Cairngorm = "" com.adobe.Cairngorm.Business. * ">"
       
       
        <>
    destination = "user".
    ID = "userRO" >
           
       
       

    2 UserDelegate
    --------------
    business package
    {
    import com.adobe.cairngorm.business.ServiceLocator;
       
    Import mx.rpc.AsyncToken;
    Import mx.rpc.IResponder;
    Import mx.rpc.remoting.RemoteObject;
       
    import Vos. UserVO;
       
    public class UserDelegate
    {
           
    public var myServices:ServiceLocator;
           
    public void UserDelegate()
    {
    TODO: to implement the function
    myServices = ServiceLocator.getInstance ();
               
    }
           
    Create a function to communicate with the server here

    public void validateUser(userObj:UserVO,responder:IResponder):void {}
               
    Check out the service you want
    communicate the servicelocator
               
    var userRO:RemoteObject = myServices.getRemoteObject ("userRO");
    var resMsg:AsyncToken = userRO.validateUser (userObj);
               
    join the answering machine
               
    resMsg.addResponder (responder);
               
               
    }

    }
    }

    LoginCommand
    ------------
    package controls
    {
    import business. UserDelegate;
       
    import com.adobe.cairngorm.commands.ICommand;
    import com.adobe.cairngorm.control.CairngormEvent;
       
    How to import events. LoginEvent;
       
    Import model. MyModelLocator;
       
    Import mx.controls.Alert;
    Import mx.rpc.IResponder;
    Import mx.rpc.events.ResultEvent;
       
    import Vos. UserVO;

    public class LoginCommand implements ICommand, IResponder
    {
    public var myModel:MyModelLocator;
    public var userDelegate:UserDelegate;
           
    public void LoginCommand()
    {
    TODO: to implement the function
    This allows to manipulate data in the
    model
               
    myModel = MyModelLocator.getInstace ();
    }

    public void execute(event:CairngormEvent):void
    {
    TODO: to implement the function
    We will do our logic here
               
    var loginEvent:LoginEvent = event as LoginEvent;
    var userObj:UserVO = loginEvent.userDtl;
               
    / * If (userObj.userName == "[email protected]" &)
    {userObj.password == "naresh") "}
    do something
    myModel.userDtl = userObj;
    myModel.APP_STATE = "login";
                   
    } else {}
    do something else
    Alert.Show ("connection failed");
    }*/
               
    create the delegate user instance
               
    userDelegate = new UserDelegate();
    userDelegate.validateUser (userObj, this);
                
    }
           
    public void result(event:Object):void {}
               
    var resultEvent:ResultEvent = event as ResultEvent;
               
    {if(resultEvent.Result!=null)}

    myModel.userDtl = resultEvent.result as UserVO;
    myModel.APP_STATE = "login";
                
    } else {}
                   
    Alert.Show ("connection failed");
    }
               
    }
           
    public void fault(event:Object):void {}
               
    }
           
           
    }
    }

    LoginPanel
    ----------

    <>
    "xmlns:MX ="http://www.adobe.com/2006/mxml"
    title = "Login here" >
       
       
            How to import events. LoginEvent;
    import Vos. UserVO;
    Import model. MyModelLocator;
    Import mx.events.ValidationResultEvent;
               
    public void loginUser(event:MouseEvent):void {}
                   
    var emailValEvnt:ValidationResultEvent
    = emailVal.validate ();
    var pswdValEvnt:ValidationResultEvent
    = pswdVal.validate ();
                               
    If (emailValEvnt.type is ValidationResultEvent.VALID
    (& pswdValEvnt.type == ValidationResultEvent.VALID) {}
                       
    as the validation is made
    communicate the data on the server
                       
    the failure of the value object
    var userObj:UserVO = new UserVO();
    userObj.userName = userNameTI.text;
    userObj.password = passwordTI.text;
                       
    var loginEvent:LoginEvent =
    new LoginEvent (LoginEvent.LOGIN_EVENT, userObj);
    dispatches the event
    loginEvent.dispatch ();

    CairngormEventDispatcher.getInstance.dispatch (loginEvent);  //Import com.adobe.cairgorm.CairngormEventDispatcher CairngormEventDispathcer
    } else {}
    display error message
    this.errorString = 'Pleae enter valid details';
    }
                   
    }
               
    ]]>
       
       
    <>
    source = "{userNameTI}".
    property = "text".
    ID = "emailVal".
    required = "true".
    triggerEvent =""
    />

    <>
    source = "{passwordTI}".
    ID = "pswdVal".
    maxLength = "16".
    minLength = "6".
    property = "text".
    triggerEvent =""
    />


           

               
           
           
               
           

           
       
           
       

       

    MyFrontController
    -----------------
    controller package
    {
    import com.adobe.cairngorm.control.FrontController;
       
    How to import events. LoginEvent;
    import controls. LoginCommand;

    SerializableAttribute public class MyFrontController extends FrontController
    {
    public void MyFrontController()
    {
    Super();
    addCommand (LoginEvent.LOGIN_EVENT, LoginCommand);
               
    }
           
    }
    }

    LoginEvent
    -----------
    package events
    {
    import com.adobe.cairngorm.control.CairngormEvent;
       
    import flash.events.Event;
       
    import Vos. UserVO;

    SerializableAttribute public class LoginEvent extends CairngormEvent
    {
    public static const = "loginEvent"; LOGIN_EVENT:String
            
    public var userDtl:UserVO;
           
    public void LoginEvent (type: String, userObj:UserVO)
    {
    TODO: to implement the function
    Super (type);
    this.userDtl = userObj;
    }
           
    override public function clone (): Event {}
               
    return of new LoginEvent (type, userDtl);
    }
    }
    }

    MyModelLocator
    --------------
    package template
    {
    import com.adobe.cairngorm.CairngormError;
    import com.adobe.cairngorm.model.IModelLocator;
       
    import Vos. UserVO;
       
    [Bindable]
    / public class MyModelLocator implements IModelLocator
    {
    public static var instance: MyModelLocator;
           
    public void MyModelLocator(enforcer:SingletonEnforcer)
    {
    TODO: to implement the function
    {if(Enforcer==null)}
                   
    trace ("you cannot create more than one instance of ModelLocator");
    throw new CairngormError ("initializing Multiple");
                                   
    }
               
    }
           
    public static function getInstace (): {MyModelLocator}
               
    {if(instance==null)}
    create a new instance
    Return it
    instance = new MyModelLocator (new SingletonEnforcer());
    return instance;

    } else {}
    return the existing instance
    return instance;
    }
               
    }
           
    Declare the Variables here
    Don't forget to initialize them
           
    contains the user data
    public var userDtl:UserVO = new UserVO();
    check the status of the application
    public var APP_STATE:String ="";
           
    }
    }
    Class SingletonEnforcer {}

    UserVO
    -------
    package vo
    {
    [Bindable]
    [RemoteClass(alias="com.test.lcds.vo.UserVO")]
    public class UserVO
    {
    public var userName:String;
    password public var: String;
           
    public void UserVO()
    {
    }

    }
    }

    Cairngorm2
    -----------

    <>
    "xmlns:MX ="http://www.adobe.com/2006/mxml"
    layout = "absolute".
    xmlns:comp = "comp.*.
    xmlns:control = "controller.*".
    xmlns:vo = "vo.*".
    xmlns:business = "mentoring."
    Initialize = "initApp () '"
    currentState = "{myModel.APP_STATE}" > "
       
       
       
       
       
       
       
       
       
       
            Import model. MyModelLocator;
               
    [Bindable]
    public var myModel:MyModelLocator;
               
    public function initApp (): void {}
                   
    myModel = MyModelLocator.getInstace ();
                   
                   
    }
               
    ]]>
       

       
           
               
               
                   
    text = fontWeight "Congratulation {myModel.userDtl.userName}" = "bold" fontSize = "18" / >
               

           

       

       
        <>
    horizontalCenter = "0".
    Red = "0" id = "loginpanel1" >
           
       
       

    Place these classes in relavent ane packages try it... you must implement service locator in the pakage delegate as well as the UserDelegate class

  • Are there separate Forums to post Cairngorm related questions

    Hello

    I'm practicing Flex with Java using Cairngorm, I'm some queries in Cairngorm, please let me know if I can post cairngorm questions here or is it all Forum planned for it?

    Thank you.

    Hi, here is the link for the cairngorm forums.

    http://forums.Adobe.com/community/opensource/Cairngorm

  • Examples of applications Cairngorm 3 - lack of libraries

    I checked the sample applications of http://opensource.Adobe.com/svn/opensource/cairngorm3/trunk/samples/InSync/ repository, but these reference samples of Cairngorm libraries, that are missing. What version should I use to be able to build these samples?

    best regards Zdenek

    Insync samples work with the latest versions of trunk snapshot. But for now with versions release in our repository Maven. We are migrating to SourceForge and have just started to put the latest SWC in the SF herewiki. Of course, you can always get the latest version of the Maven repositorySWCs.

  • Module and Navigation for Cairngorm 3.0.13

    Hello

    do you have a calendar on the release of Module and Navigation/NavigationParsley to the repository maven for Cairngorm 3.0.13?

    I am currently getting errors using the 3.0.12 version, which I think is due to the different version of the compiler flex for 3.0.12 (i.e. 4.0.0.x), while the version of the compiler flex 3.0.13 is 4.1.0.x, which is the version that we use for the construction of our project, too.

    Don't want to get on your nerves, just trying to get a feel for speed and to plan ahead for our integration of it / hudson , great job on the transition to maven makes life a lot easier! If we could help you on that front (I don't really have what is now missing out the Module/Navigation/NavigationParsley for 3.0.13, maybe I could help?)

    best Jonas

    Good news: we've just released new libraries as 3.0.14. The library of navigation left RC to 1.0.

    We don't have not updated the wiki still however, which could take a few more days.

    Best,

    Alex

Maybe you are looking for

  • WiFi calling on Verizon

    9.3 IOS allows Verizon wifi calling on iPhone 6. If I put in wifi calling in the settings, the phone automatically happens between Verizon and wifi according to the intensity of the signal or what I need to move from a regular appeal and appeal of wi

  • R6200 caps than ethernet wired 200 Mbps of download speed

    I recently updated my home ISP service in the service of Time Warner 300mbps. If I make a wired connection to the modem cable from the ISP, I can reach the speed of 300mbps advertised, so I get what I pay for my provider. However, when I connect the

  • KB973917 w / error code 800f080d

    Help! I've tried everything. My question is this: this update is required for a 32-bit system? I have the home premium WV. I have auto update and this seems to be the only flaw. I hesitate to do a clean install, because I am very "low-tech" and I am

  • can not update three last update?

    "so far are ready," I had 3 update that I can't download.   Whenever I have my digs off the computer power it try to put up-to-date but do not. ?  What can I do to solve this problem.

  • Have used Windows Movie Maker very well for months and now it stops just to work

    OK, so I had a recent problem with Movie Maker. How original is that? For months and months I used it with only minor headaches. But I can't understand it and I spent hours to friction on this problem and the search for something. All Google tell me