Cairngorm for  FlexSDK 4.5.1

Hi
Do Cairngorm 2.x (whatever latest is) swc's upward compatible with  FlexSDK 4.5.1 ?
Thanks

Same question. Is there a plan to update/maintain the Gairngorm plugin?
If not, where can we find the source code so we can keep it alive?

Similar Messages

  • What is cairngorm and is it currently used in companies?

    HI,
    I am new to flex technology and wants to know about the cairngorm framework.
    Is this something that is still used in companies and is worth learning?
    What is the current version of cairngorm?
    Please provide some important article links that uses cairngorm for building Flex applications.
    Thank you in advance.

    Dear Bashir,
    1.MRP is material requirements planning which plans the required quantity of depedent material's along with the required date.
    2.MRP procedure is sub divided into a normal MRP,Master Production Scheduling and Consumption Based Planning.
    3.Cosnumtion BAsed planning is further sub-divided into Time Phased Planning,Reorder Point Planning and Forecast based
    Planning.Reorder point planning can be automatic or Manual.
    4.MRP type is differentiated using the MRP type value assigned in the MRP1 view of the material master.
    5.Some of the MRP types are PD - MRP,M0,M1,M2,M3 - MAster Production Scheduling related,VB - Manual reorder point
    planning,VM-Automatic reorder point planning.
    6.It is possible to take the MRP for the whole plant/for a specific MRP area using the batch MRP job.
    7.MDBT is the T Code for scheduling the MRP job or it can be scheduled for the program RMMRP000 using the T Code SM36
    and the results can be checked using SM37.
    Regards
    Mangalraj.S

  • What does $(FlexSDK) mean with regard to file location?

    I'm reinstalling Flash Pro CC on a new machine after a crash, and setting up lib paths for my old projects.
    I'm about to reinstall the Flex sdk, and am wondering where it needs to go to suit the following location, which is what my projects have set up in the Paths window:
    $(FlexSDK)/frameworks/libs/flex.swc
    Specifically, what does $(FlexSDK) mean?
    Thanks guys.

    Documentation for FlexSDK
    Adobe Flex 4.6 * Compiling components with Flex SDK

  • Is Cairngorm something I would want to use?

    I've heard of Cairngorm for some time now and I know it's been around for a while.  I decided to look into exactly what it does today because I have no clue and I've been writing Flex apps since the release of Flex 2.  I can't find many good resources that don't state the obvious on Adobe's page.
    "Cairngorm is the lightweight micro-architecture for Rich Internet Applications built in Flex or AIR. A collaboration of recognized design patterns, Cairngorm exemplifies and encourages best-practices for RIA development advocated by Adobe Consulting, encourages best-practice leverage of the underlying Flex framework, while making it easier for medium to large teams of software engineers deliver medium to large scale, mission-critical Rich Internet Applications."
    This means very little to me aside from wanting to build RIA's in Flex and wanting to use best practices in doing so.
    So can anyone kindly break down what Cairngorm is or what it does?  Or can provide some links to a getting-started guide?  Anything that might help me understand what it is and whether it's something I'd like to use.  thanks!

    In my opinion:
    Cairngorm is a framework (collection of code) and a set of rules for how you should organize your code. I'm a big fan of frameworks in general, especially for web development, but Cairngorm wasn't right for me.  I do, however, see how it could help large teams develop by following the same set of rules.
    I found the following helpful in evaluating Cairngorm:
    http://www.adobe.com/devnet/flex/articles/introducing_cairngorm/introducing_cairngorm.pdf
    http://www.adobe.com/devnet/flex/articles/cairngorm_pt1.html (and the rest of the series)
    Hopefully they will help you out too.
    Ben Edwards

  • IRecruitment: how are postings handled in an multilingual environment

    We use the e-business-suite in two languages: German and English.
    In iRecruitment we have got the following problem:
    For some vacancies, when I update a vacancy then the english posting and also the german posting is updated in the same way.
    For other vacancies, when I update a vacancy in the english html-page then just the english posting is updated but not the german one.
    What is the logic behind this behavior?
    ### Steps to Reproduce ###
    <br>I create a new vacancy. The vacancy is approved.
    <br>
    <br>The english and the german posting are the same.
    <br>
    <br>I update the vacancy in english.
    <br>
    <br>Sometimes it happens that the english and german posting are updated.
    <br>Sometimes it happens that only the english posting is updated.
    <br>
    <br>
    <br>I have checked the database:
    <br>
    <br> 1 select name, language, posting_content_id, source_language, how_to_apply
    <br> 2 from IRC_POSTING_CONTENTS_TL
    <br> 3 where name in ('IRC445','IRC446','IRC450','IRC443','IRC447','IRC448')
    <br> 4* order by name, language
    <br>
    <br>NAME LANG POSTING_CONTENT_ID SOUR HOW_TO_APPLY
    <br>---------- ---- ------------------ ---- <br>------------------------------------------------------------
    <br>IRC443 D 15089 D <P>aaaaaaaaaaaaaaaaaaaaaaaaaaaa</P>
    <br> US 15089 US wwwwwwwwwwwwwwwwwwwwwwwwwwww
    <br>
    <br>IRC445 D 15091 US how to apply - version 2
    <br> US 15091 US how to apply - version 2
    <br>
    <br>IRC446 D 15092 D version 2
    <br> US 15092 US version 1
    <br>
    <br>IRC447 D 15093 D <P>aaaaaaaaaaaaaaaaaaaaaa</P>
    <br> US 15093 US zzzzzzzzzzzzzzzzzzzzzzz
    <br>
    <br>IRC448 D 15094 D <P>asaaaaaaaaaaaaaa</P>
    <br> US 15094 US zzzzzzzzzzzzzz
    <br>
    <br>IRC450 D 15096 US <P>aaaaaaaaaaaaa</P>
    <br> US 15096 US <P>aaaaaaaaaaaaa</P>
    <br>
    <br>
    For IRC445 and IRC450 it works fine. What I see is that the source language is US for both languages.
    <br><br>
    All other IRCs do not work as expected. What I see is that the source language is different.
    <br><br>
    What is the reason for that? How does the software determine the soruce language? Does it depend on default job postings?

    Flash is single threaded correct. Events work just like any
    other application... using an Observer Design Pattern, you can
    "Dispatch" events, and objects that are registered to "listen" to
    that object will hear the dispatched event. So if you use an object
    that is based off of InteractiveObject (such as a Sprite) - it can
    dispatchEvent(someScope.Const, functionRedirect); SomeScope stands
    for where and what kind of event is it. For instance a if you
    wanted to listen to a Mouse Event, you would import MouseEvent and
    do sprite.addEventListener(MouseEvent.ROLL_OVER, onSpriteRollOver);
    then bulid a function onSpriteRollOver.
    I advise setting up a global app event dispatcher object so
    their is a location that all objects can dispatch to and listen to
    :) (Use the singleton design pattern to do so... look into
    Cairngorm for more assistance on a good way to setup a flash
    app)

  • Locale Resource Bundle Best Practice

    Hi
    I have a Flex application that loads it's locale resource bundle from a service.
    So when the httpservice loads the bundle it populates an instance of a class "I18NBundle" that contains all the bundle properties. For instance you could do:
    i18nBundle.hello_message and it would return "Hello"
    I'm currently using Cairngorm for this project so this i18nBundle instance it's on the model locator.
    What I'm seeing and that I don't like is that for a component be able to get the bundle it must access to the model locator and then to the i18nBundle.
    Instead of that what I would like is that each component doesn't rely on this for getting the bundle.
    I guess I could create a "bundle" property on each component class and then pass it the reference to the bundle when it is instanciated. It seems it could be messy and a difficult task to initialize this property in some cases for instance on a datagrid cell renderer.
    Other could be transforming the I18NBundle class into a singleton and then when the service response it's recieved the singleton it's initialized. Since all application components should/must access the same locale bundle I guess this could be a better option.
    What do you think about this?
    Do you think there is some a better way to achieve this with Flex?
    Any opinion or recommendation would be appreciatted.
    (I don't wish to use the Adobe Flex proposal of having the properties file on the Flex project and the compiling them into swf.)
    thanks in advance.
    Polaco.
    ps: If you think I haven't expressed myself correctly please let me know and I will rewrite it.

    I have managed to extend IResourceBundle and added it to ResourceManager.
    The only problem now is that my bundle does not represent a language and it doesn't need a name either.
    Since the localization part is done on the webapplication and then the apporpiate bundle returned in the request's response.
    So it's locale attribute value is "".
    And it's name is "".
    I can display a property correctly if I use the following code:
    (resourceManager.getResourceBundle('','')).content.helloMessage
    but I doesn't work if I try to retrieve it like:
    resourceManager.getString("", "helloMessage");
    any ideas ?
    thanks

  • Can Flash remoting be used in 3 tier?

    I am seeking solutions that fits 3 tier application.
    In Wikipedia, I found
    1. "
    Action
    Message Format" is explained as "It is used primarily to
    exchange data between an Adobe Flash application and a database,
    using a Remote Procedure Call.", which reads like not a linear 3
    tier model.
    2. "
    Adobe
    Flex#Overview" mentioned "In a multi-tiered model, Flex
    applications serve as the presentation tier.", which reads like
    workable for a linear 3 tier model.
    These messages seem to be conflicting each other.
    If anyone knows these well, please give me a hand.
    Thanks.

    Hi,
    Action Message Format (AMF) is a binary data format that is
    used by servers to communicate with a flash application.
    What the data is or where the data comes from is decided by
    the server (which supports talking to flash apps via AMF like LCDS,
    BlazeDS, CF). It may be from a database or any other source.
    Flex does indeed serve as the presentation tier, but since it
    is a RIA, it also stores state internally. (That is, flex
    applications which is the overall presentation layer can have a
    microarchitecture in them which can be 3 tiered again).
    Take a look at
    Cairngorm
    for more details on the architecture on the flex side.

  • Does Caringorm and Flex4 go together?

    I installed the Flash Builder and used it over a week,
    Everything was ok till i tried to use the Cairngorm with my new code (getting lot of errors and wierd things).
    Can someone tell me if i missing anything? Is there a Cairngorm for Flash Builder?

    No that would not work. Muse is more for static brochure sites at the moment. I am sure they will add more cms type functions once it matures a little more.

  • Someone has the link for the sources of Cairngorm store?

    Someone has alink for the sources of Cairngorm store?
    All the links i have found don't wok.
    Thxs.
    If someone have some very simple examples for cairngorm like
    "hello word", it will be good and nice for the beginners.
    Sorry for my english, i'm french.

    You can find it here, scroll down to "Example Apps"
    There's a 2.0 and a 2.1 version of the Cairngorm Store source
    http://www.cairngormdocs.org/

  • Code samples for using HTTPServices in Cairngorm framework

    Hello there,
    Does anyone have any samples for retrieving data through
    HTTPServices using the cairngorm framework model. All samples on
    the web, as far as I have searched, lead only to remote services
    mode of communication only.
    Any help here would be greatly appreciated.
    Thanks,
    Arun B
    [email protected]

    I wrote a sample code modifiying the Remote Object examples
    .. I got this working now . Please ignore this message, just incase
    anyone needs my sample just email me..

  • Help for a cairngorm beginner!

    hi!
    I've looked for samples on Internet but I've found just the
    cairngorm store (src untraceables) and "Hello world" with SOAP.
    I understood just a minimum how Cairngorm works but i don't
    no what i've to put, where and how, to create a simple application.
    I'd like, for example, to add a evt using addCommand() of the
    Front Controller and implement the execute() method to do a work
    and put in place a Model Locator.
    Why not viewing a message on the screen when we click on a
    button?
    i think it will be a start point without calling a server nor
    services.
    I'll be very recognizing for your help.

    You should take a look at this
    http://www.cairngormdocs.org/tools/CairngormDiagramExplorer.swf

  • Help needed for cairngorm architecture

    Hi,
    I am new to caringorm architecture, please provide me the good tutorials and examples on cairngorm
    Thanks
    Ram

    Well I forgot the table-alias, here now with:
    SELECT C.COMB_ID
    , C.COMB_NAME
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID1) AS SUBJECT_NAME1
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID2) AS SUBJECT_NAME2
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID3) AS SUBJECT_NAME3
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID4) AS SUBJECT_NAME4
    FROM COMBINATION C;
    As you need exactly 4 subjects, the columns-solution is just fine I would say.

  • Cairngorm 3 - Best practice for component states

    Hi,
    I have here small question.
    I have some component states (eq: application state, some component states, atp.) in my Application.
    I'm not sure if is best practise to save component states in Presentation Models, they hold current state only. So, i create ApplicationState class, which holding all possible application states. And here is my problem, i'm not sure, where should be this "State" class stored. In application directory or create another "states" directory  name ?
    Well, i'm not sure.
    Thx.

    Hi,
    I have here small question.
    I have some component states (eq: application state, some component states, atp.) in my Application.
    I'm not sure if is best practise to save component states in Presentation Models, they hold current state only. So, i create ApplicationState class, which holding all possible application states. And here is my problem, i'm not sure, where should be this "State" class stored. In application directory or create another "states" directory  name ?
    Well, i'm not sure.
    Thx.

  • Potential bug when using Parsley 2.4.1 and Cairngorm's module 0.17 in Flex 4.5.1

    Hi
    I have an issue when using cairngorm's ModuleViewLoader along with ParsleyModuleDescriptor to load a simple module consistig mainly of HBoxes, VBoxes and Datagrids.
    The module consists of one child (let's call it ViewA) and that child consists of several children as its components.
    When I use cairngorm's ModuleViewLoader along with the ParsleyModuleDescriptor and Parlsey to inject the modulemanager in my main app, the module loads, as well as ViewA but some nearly all of ViewA's children are not loaded (in fact they're initialized but creationComplete is not invoked).
    When I use Flex's mx:ModuleLoader all ViewA's chikldren are initialized and creation complete is also invoked.
    I will attach the source as a zip file  later on....
    but for now...this is all I can give http://dpaste.com/713503/
    Thanks
    Andreas

    Did you ever find an answer to this?  I am running into the same issue with needing to upgrade parsley to 2.4.x, but with parts of application heavily relying on cairngorm module, upgrading it from module-0.11 to 0.17 seems to break compile! 

  • How can I have my app create components for all states on startup?

    Hi All,
    I've got an application with 8 different states.  When the user moves from one state to the next for the first time, there's a brief (but perceptible) delay while the Flash Player sets up everything on the next view (state).  I would like to see what the increased load time looked like--it may be preferable to have slightly longer load time in order to get "snappier" performance once inside the app.
    I initially thought I could set creationPolicy to "all" and then everything would get created immediately, when the app first loads.  But that's not working--no change in behavior, and when I inspect objects that on any view besides the first one, they are all null. I have to first change to the state where that component is hosted, and then component is initialized and available.
    I read elsewhere that I could use itemCreationPolicy, but that is not a property on the application object... do I need to apply that somewhere else?
    I'm on Flex 4.0.
      -Josh

    Oops I might have replied to the wrong post in http://forums.adobe.com/thread/767099
    I think you'll want to look at setting the itemCreationPolicy to immediate.
    Check out "Custom Creation and Destruction Policies" section of this spec for more details:
    http://opensource.adobe.com/wiki/display/flexsdk/Enhanced+States+Synta x

Maybe you are looking for

  • Issue in setting password for existing in JDBC Access Workgroup (MDW) Java

    Here is my Scenario I have MS Access DB (MDB file), and work group security file. I have credentials which have all the permit (Administrator user). This DB and MDW file is created on some other computer and i am using it on my computer now. What I a

  • Do i need a 'wireless router' to share ISP w/ adjacent computers?

    How to share my ISP connection with 2 other computers belonging to family in adjacent rooms. Do I understand correctly that I must getting a 'Wireless router'? Is that the onlyest &/or bestest way to do so? And how to insure privacy of all? Do I unde

  • Print:Panel To PostScript Method

    I´m using labview 2011 and I want to use the method "Print : Panel To PostScript Method" and I can´t find it, I can only the others print methods. Can someone upload an example with this method, so I can copy it? I really need it. Thank you guys!

  • Embedded images in Hotmail Live become little grey squares

    When I embed images within the text in an email it looks fine. Then my recipient tells me the image didn't get thru, just a little grey square. I check the Sent Folder, it too is a little grey square. I can receive embedded images from others.

  • LR import order is incorrect

    Hello, I notice that LR imports photos not in chronological order. This happens to me if I shoot at higher speeds (e.g. 5 frames/s). The camera names the pictures exactly in chronological order, so I want that lightroom import the pictures based on t