Cfc's and flex

I've been nose down in numerous Flex resources and due to the
abundance of "options" hope those more experienced can provide
clarity (thanks in advance for all responses btw).
1.) Flex can connect in various ways to various data
providers -- but presumably should be most efficient to a CF8
server(?) due to non-XML conversions (via RDS?/AMF?/ec4x???).
2.) Per the above is Flex able to call cfc's (presumably the
best format) ONLY via:
<mx:RemoteObject id="helloWorld" destination="Coldfusion"
source="NewCFComponent">
<mx:method name="GetHello"
result="GetHello_handler(event)" />
</mx:RemoteObject>
and moreover, is this resulting error indicative of a problem
in the Flex application properties or in the Remote Object:
[RPC Fault faultString="[MessagingError message='Destination
'Coldfusion' either does not exist or the destination has no
channels defined (and the application does not define any default
channels.)']" faultCode="InvokeFailed" faultDetail="Couldn't
establish a connection to 'Coldfusion'"]
3.) Following up on Q2, when defining a new flex project with
ColdFusion, can someone please explain the
"Use remote object access service" checkbox and LiveCycle
DataServices/ColdFusion Flash Remoting choices? Livedocs is worse
than useless, every demo app seems based on using localhost rather
than a network devServer so this and the next (configure cf server)
page might as well be hieroglyphics IMHO (ie. difference between CF
root folder, Web root and Root URL ???????)
4) I understand(?) that LiveCycle Data Services provides
extra features like Instant messaging, however requires a
(separate?) installation with "an application server" (though I've
also recall reading that LCDS is built in CF8)??? If my current
DevServer is IIS and Coldfusion, is this either/or to installing
"an application server" on the same machine? And is the LCDS
installation supplementary to the CF server or does it replace it?
Again, thanks in advance, I realize I may be waaay out in
left field on some of these -- but that is why I'm posting after
all :)

Oh also, I'm somewhat comfortable with DW CS3 (both HTML and
to create cfc's) and am just starting with Flex (Eclipse with FB3
and CF plugins installed) but would love suggestions on how to work
end to end so to speak.
Specifically, creating cfc's in DW, then presumably having to
import them into my Flex project seems less useful than say
incorporating the eclipse CF perspective but I cant seem to google
any results for such incorporating or even for using the cf-eclipse
perspective. Am I missing something ?

Similar Messages

  • Bad news if I can't debug cfcs in a flex project

    I'm trying to debug a cfc in a flex project Coldfusion builder installed as a plugin is Flash builder 4
    But I'm getting a message saying:
    File does not belong to a coldfusion project. Apply Coldfusion nature to the project to which the file belongs.
    This is bad news if I can't debug cfcs in a flex project

    Here are the targets (simplified) that are specific to the cfml export.  The real build.xml reads a build.properties file for the variables, and main runs the flex build first:
    <!-- Refresh CFML -->
    <property name="SVN.USERNAME" value="MY SVN USERNAME"/><!-- change to your svn username -->
    <property name="SVN.PASSWORD" value="MY SVN PASSWORD"/><!-- change to your svn password -->
    <property name="SVN.PROJECT_URL" value="http://mysvnproject.com/trunk"/><!-- change to your svn url -->
    <property name="BUILD.EXPORT_DIR" value="c:/CFML/project/export/path"/><!-- change to your CFML project path -->
    <property name="DEPLOY_DIR" value="c:/flex/project/deploy/path"/><!-- change to your Flex project path -->
    <!-- runs the targets -->
    <target name="main" depends="export-cfml, copy-cfml"/>
    <target name="export-cfml" depends="find_revision, check-svn-build" unless="build.exists">
         <echo>Lates SVN build did not exist, export it</echo>
         <!-- export from svn -->
         <exec executable="svn">
              <arg line="export &quot;${SVN.PROJECT_URL}&quot; ${build.dir} -r ${revision.number} --username ${SVN.USERNAME} --password ${SVN.PASSWORD}"/>
         </exec>          
    </target>
    <!-- Get the latest revision number -->
    <target name="find_revision" description="Sets property 'revision.number' to the head svn revision">
         <!-- Use SVN to learn the latest revision number -->
         <exec executable="svn" outputproperty="revision.number">
              <arg line="info &quot;${SVN.PROJECT_URL}&quot;"/>
              <redirector>
                   <outputfilterchain>
                        <linecontainsregexp>
                             <regexp pattern='^Last Changed Rev' />
                        </linecontainsregexp>
                        <tokenfilter>
                             <replaceregex pattern='[\D]+([\d]+)' replace="\1" />
                        </tokenfilter>
                   </outputfilterchain>
              </redirector>
         </exec>
         <echo message="Current SVN Revision: ${revision.number}"/>
    </target>
    <!-- we only export from svn if we haven't already for current revision.number -->
    <target name="check-svn-build">
         <!-- setup the build dir name based on the latest revision number -->
         <property name="build.dir" value="${BUILD.EXPORT_DIR}/${revision.number}" />
         <available file="${build.dir}" property="build.exists" value="true" type="dir" />
         <echo>SVN build exists: ${build.exists}</echo>
    </target>
    <!-- we always copy from the latest svn export dir to the flex project -->
    <target name="copy-cfml">
         <echo>Copy CFML to Flex Project</echo>
         <!-- copy cfml to flex project -->
         <copy todir="${DEPLOY_DIR}/www">
              <fileset dir="${build.dir}"/>
         </copy>
    </target>
    Note: I quickly stripped out all "extra" stuff we do for our project, so this is untested and may contain typos.

  • Coldfusion cfcs point to flex

    I am working on a project where coldfusion(backend) and Flex(front end). I need to point Coldfusion CFCs to Flex application.
    Can anybody please guide me how to do this.
    Thanks in advance.
    Best Regards
    Anil

    Hi Anil,
    If you are using Flash Builder 4 or later, you can go to Data/Services view to configure ColdFusion CFCs in Flex applications.
    Please follow the below url for configuring a CFC.
    Adobe Flex 4 * Connecting to data services
    Regards,
    Hari

  • ValueObjects and Flex 3 or 4 Wizards

    I think I have many of the VO concepts down but still am not quite getting it to work so if I could get some quick feedback it would be much appreciated.
    So I have a RemoteObject which calls a cfc that then calls a MySql Stored Procedure and ultimately returns to flex a (I guess) structure/object/query/Array/ArrayCollection??? in the sense that I don't have any data typing in the cfc (ie I can display the returned results in a Datagrid where the headers are the database field names).
    Now, various tutorials SEEM to suggest datatyping the results in the cfc and then via the alias attribute I think mapping said cfc to a similarly defined flex vo (which the Flex 3 cfc wizard purports to do automatically).  I again think this step also includes essentially stripping off the database fieldnames and thereby benefiting from reduced data transmission and flex receipt computation requirements -- but to me it seems an imposition of logic on the CF "layer" (whereas I've thought that the app would be best with logic at mainly the dbase but secondly at the flex client layer).  Am I correct in this/these deduction(s) -- fwiw I have yet to find a tutorial which spells such a process out without assuming a better knowledge of CF than I have -- and what are opinions on the performance implications???
    Secondly (and regardless of whether cfc typing occurs) I think I have been missing the step in the vo process in which the vo is stored in a "model" layer. Cairngorm/Mate/etc aside, if say in my main app I import the CustomVO.as then the next steps are to "populate an instance" of the vo -- but then to further save said instance in a "model" (the step I've been missing) -- and then bind my app components to the model (ie NOT to the instance), right?
    Obviously such a process is not necessary in every application but fwiw my app detects visitor location (based on ip) and then returns a look&feel specific for say each state.  Moreover, members who then log in are shown the look&feel they may have previously customized.  Now, the backend dbase to do this works fine but on the flex/client side I'm thinking (derived from tutorials) to:
    A.) Include in the main app a <mx:Model> with default look&feel values (not much data and good insurance for if say dbase goes down)
    B.) have a initialize=". . . "  call a <mx:RemoteObject> which returns the state specific values which then overwrite the values in the model above
    C.) Upon successful signin return member specific values  (I THINK that before overwriting the model here I want to write the (B) values to a SharedObject such that upon signout there is not the need for another call to the server.
    Anyway, thanks for reading this novel, let me know if I am on the right track (or continuing the trainwreck )
    Edit:  Not to further impose but relatedly what are best practices for say search results (ie paginated lists) -- should/need they be valueObjects (seems like a great deal of computing to me) and/or typed on the CF server side?

    bump

  • How to display rich content with URL in adobe flash builder and flex for mobile apps?

    Hi,
      In Apple IOS SDK, I used the WebView control to display the rich text with Bullets, different font style, images within the text and the URLs also within the text as HTML content.
    Clicking on the URLs automatically opens the respective webpage in Safari.
    In Adobe Flash Builder, I don't see any control straight away equivalent to Apple WebView control.
    How to implement the same using adobe and flex?

    Thanks for your reply, its nice to know its not just me.
    the error i got when submitting to the App store where due to native support for IPHONE 5 which is now mandatory (from May 1st), looking around the internet the common soloution seemed to be upgrading to Air 3.7.
    The strange erorrs on 3.7 revolve around compiling a standard / production build (fast build works fine)
    the error is always the same (snippet shown below):
    Error occurred while packaging the application:
    Undefined symbols for architecture armv7:
      "__ZN7avmplus8Debugger9debugLineEi", referenced from:
          __ZN7avmplus9MethodEnv9debugExitEPNS_13CallStackNodeE in AOTBuildOutput-4.o
          __ZN7avmplus11BaseExecMgr22debugEnterExitWrapperNEPNS_9MethodEnvEiPj in AOTBuildOutput-4.o
    I have completly failed to work out why, but my gut feeling is its something to do with how the mac is compiling the code in standard build and unable to find a library it needs.
    cheers
    Toby

  • 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.

  • How to display html content with image in Adobe Flash and Flex mobile project?

    Hi,
      I have a html content with image in it. How to display it in Adobe Flash Builder and Flex mobile project? Which control needs to be used for this?

    Hello,
    The only current way is to use an iFrame, or if you only need some html tags you could use the Text Layout Framework.
    Here this is the iFrame approach:
    http://code.google.com/p/flex-iframe/
    If the swc do not work in Flex4 just use its ource code which works...
    ...it is basically based on this:
    http://www.deitte.com/archives/2008/07/dont_use_iframe.htm
    see also and vote, please:
    http://bugs.adobe.com/jira/browse/SDK-12291
    http://bugs.adobe.com/jira/browse/SDK-13740
    Regards
    Marc

  • Flash and Flex Help

    I have a flash movie I created in Flash that has a couple
    buttons in the clip. Is there a way to make the flash buttons
    change the currentstate in Flex?
    I know in Flex state changes are as easy as
    currentState='STATENAME';
    Flex uses actionscript and so does flash, that is why I am
    hoping this is possible.
    PLEASE HELP, I appreciate your anticipated response.
    Thanks
    Todd

    Is Flash movie created using ActionScript 3? If so, you
    button click can dispatch an event and Flex application can
    register a listener to this event and whenever the event is
    dispatched, change the state.

  • Flex Builder 3.1 Standard and Flex SDK 4.1 build 16076

    Hi I have a problem I have downloaded Flex SDK 4.1 16076 and added to my sdk list in Flex Builder. I can compile my program fine except when I change files the flash imports are removed and the code hints don't have any knowledge of flash.display and other base classes such as Movieclip and Sprite. As soon as a manually paste the imports into my class files it compiles again but can't be doing with copying imports back in every time I change a class file.
    It didn't do this on version 4.0.0 - I have added   -static-link-runtime-shared-libraries=true to compiler arguments as I did have a problem with it firstly compiling about FontAsset.
    Does anyone know why? Do I have to add another swc in?

    You should always have separate workspaces for separate versions of Flash Builder.
    Flex 3 and Flex 4 have some large differences.  You will probably want to spend some time reading about migrating by searching on Google.  Here is a good place to start: http://www.adobe.com/devnet/flex/articles/flex3and4_differences.html

  • What is the official AIR SDK and FLEX version to release for iOS6 ?

    Hi,
    Wanted to know which AIR SDK and FLEX version is fully suporting the iOS6 to submit to Apple.
    I found that AIR SDK 3.4 is supporting iOS6, though the code created for iOS 6 is not working correctly when build from Flash Builder 4.7 AIR SDK 3.4 FLEX SDK 4.6 .
    Thanks
    Regards

    19th...

  • Flex compiler in FlexBuilder and Flex SDK

    I have downloaded Flex Builder 3.0.2 and Flex SDK 3.2. Are
    they using the same version of Flex compiler?
    Is there a way to check the version of Flex compiler?

    quote:
    Originally posted by:
    mab_bond
    And regarding the Advanced datagrid you must copy the
    dataVisualization.swc.from sdk 3.1
    It sounds like the SDK3.2 download is incomplete. I'm not
    sure if upgrade FB with this download is a good idea.

  • LCCS and Flex 4.5

    Hello,
    I'm about to start a new project, that will make use of LCCS, and I'm deciding which SDK should I use between Flex 4.1 and Flex 4.5. Provided I pick the LCCS for Flash Player 10.1 library (the lastest stable), is there any know problem or incompatibilty if I use the newer Flex 4.5, or is it better to use the older but more stable Flex 4.1?
    Thank you very much for you help!

    well, that is good news!
    Im really glad to hear the spark component set is in dev.
    If you need any testers, I'd totally love to help out.
    we have a large flex 45 project with lccs under development
    is there any kind of prerelease for this or anything?
    cheers
    glenn
    tinylion uk

  • [svn:cairngorm3:] 14674: Migration to Parsley 2.2 and Flex SDK 3.5.

    Revision: 14674
    Revision: 14674
    Author:   [email protected]
    Date:     2010-03-10 10:47:07 -0800 (Wed, 10 Mar 2010)
    Log Message:
    Migration to Parsley 2.2 and Flex SDK 3.5. Removed Command implementation of Integration library in favor of Asynchronous Commands of Parsley 2.2.
    Modified Paths:
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/presentation/ContactsNavigator.mx ml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/ContactsModule.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/ContactsModuleRig.mxm l
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/Conta ctsContext.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/appli cation/RefreshSearchAfterSaveController.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/appli cation/RemoveContactCommand.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/appli cation/SaveContactCommand.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/appli cation/SearchContactsCommand.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/prese ntation/ContactFormPM.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/prese ntation/ContactList.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/prese ntation/ContactsNavigator.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/test/insync/contacts/appl ication/RefreshSearchAfterSaveControllerTest.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/test/insync/contacts/appl ication/RemoveContactCommandTest.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/test/insync/contacts/appl ication/SaveContactCommandTest.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/test/insync/contacts/appl ication/SearchContactsCommandTest.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/src/ExpensesModule.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/src/ExpensesModuleRig.mxm l
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/src/ComposeMessageModule .mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/src/ComposeMessageModule Rig.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/InsyncModularExtendedShe ll.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/insync/presentation/Cont entViewStack.mxml

    I can't help you with your problem, but maybe this is a good start:
    http://kb2.adobe.com/cps/905/cpsid_90508.html#main_Flash_Builder
    ..... About that... have you encountered any other issue when using FB 4.5.1 with OS X 10.7.0?

  • [svn:cairngorm3:] 14658: Migration to Parsley 2.2 and Flex SDK 3.5.

    Revision: 14658
    Revision: 14658
    Author:   [email protected]
    Date:     2010-03-10 02:08:29 -0800 (Wed, 10 Mar 2010)
    Log Message:
    Migration to Parsley 2.2 and Flex SDK 3.5. Removed Command implementation of Integration library in favor of Asynchronous Commands of Parsley 2.2.
    Modified Paths:
        cairngorm3/trunk/libraries/Integration/.actionScriptProperties
        cairngorm3/trunk/libraries/Integration/.flexLibProperties
        cairngorm3/trunk/libraries/IntegrationDMS/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationDMS/src/com/adobe/cairngorm/CairngormIntegrationDMS Lib.as
        cairngorm3/trunk/libraries/IntegrationRPC/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationRPC/src/com/adobe/cairngorm/CairngormIntegrationRPC Lib.as
        cairngorm3/trunk/libraries/IntegrationTest/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationTest/html-template/history/history.js
        cairngorm3/trunk/libraries/IntegrationTest/html-template/index.template.html
        cairngorm3/trunk/libraries/IntegrationTest/src/IntegrationTests.mxml
        cairngorm3/trunk/libraries/IntegrationTest/src/LocalConnectionConsumer.mxml
        cairngorm3/trunk/libraries/IntegrationTest/src/LocalConnectionProducer.mxml
        cairngorm3/trunk/libraries/Module/.actionScriptProperties
        cairngorm3/trunk/libraries/Module/pom.xml
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ParsleyFlexModuleFactory .as
        cairngorm3/trunk/libraries/ModuleTest/.actionScriptProperties
        cairngorm3/trunk/libraries/ModuleTest/html-template/AC_OETags.js
        cairngorm3/trunk/libraries/ModuleTest/html-template/history/history.css
        cairngorm3/trunk/libraries/ModuleTest/html-template/history/history.js
        cairngorm3/trunk/libraries/ModuleTest/html-template/history/historyFrame.html
        cairngorm3/trunk/libraries/Navigation/.actionScriptProperties
        cairngorm3/trunk/libraries/Navigation/pom.xml
        cairngorm3/trunk/libraries/Observer/.actionScriptProperties
        cairngorm3/trunk/libraries/ObserverParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/ObserverParsley/pom.xml
        cairngorm3/trunk/libraries/ObserverTest/.actionScriptProperties
        cairngorm3/trunk/libraries/ObserverTest/html-template/AC_OETags.js
        cairngorm3/trunk/libraries/Popup/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupTest/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupTest/html-template/AC_OETags.js
        cairngorm3/trunk/libraries/Task/.actionScriptProperties
        cairngorm3/trunk/libraries/Validation/.actionScriptProperties
        cairngorm3/trunk/libraries/Validation/.flexLibProperties
        cairngorm3/trunk/libraries/Validation/.settings/org.eclipse.core.resources.prefs
        cairngorm3/trunk/libraries/ValidationTest/.actionScriptProperties
        cairngorm3/trunk/libraries/ValidationTest/html-template/AC_OETags.js
        cairngorm3/trunk/samples/insync/insync-basic/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-basic/html-template/AC_OETags.js
        cairngorm3/trunk/samples/insync/insync-basic/html-template/history/history.css
        cairngorm3/trunk/samples/insync/insync-basic/html-template/history/history.js
        cairngorm3/trunk/samples/insync/insync-basic/html-template/history/historyFrame.html
        cairngorm3/trunk/samples/insync/insync-basic/src/InsyncBasic.mxml
        cairngorm3/trunk/samples/insync/insync-basic/src/InsyncContext.mxml
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/application/RefreshSearchAfterSav eController.as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/application/RemoveContactCommand. as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/application/SaveContactCommand.as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/application/SearchContactsCommand .as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/infrastructure/AlertHandler.as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/presentation/ContactFormPM.as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/presentation/ContactsNavigatorPM. as
        cairngorm3/trunk/samples/insync/insync-basic/test/insync/application/RefreshSearchAfterSa veControllerTest.as
        cairngorm3/trunk/samples/insync/insync-basic/test/insync/application/RemoveContactCommand Test.as
        cairngorm3/trunk/samples/insync/insync-basic/test/insync/application/SaveContactCommandTe st.as
        cairngorm3/trunk/samples/insync/insync-basic/test/insync/application/SearchContactsComman dTest.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-api/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/AC_OETags.j s
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/AC_OETags.j s
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/AC_OETags. js
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/AC_OETags.js
    Added Paths:
        cairngorm3/trunk/libraries/Integration/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/Integration/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationDMS/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationDMS/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationRPC/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationRPC/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationTest/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationTest/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/Module/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/Module/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/ModuleTest/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/ModuleTest/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/ObserverParsley/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/ObserverParsley/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/history.css
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/history.js
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/historyFrame.html
        cairngorm3/trunk/libraries/ObserverTest/html-template/index.template.html
        cairngorm3/trunk/libraries/ObserverTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/libraries/PopupParsley/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/PopupParsley/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/PopupTest/html-template/history/
        cairngorm3/trunk/libraries/PopupTest/html-template/history/history.css
        cairngorm3/trunk/libraries/PopupTest/html-template/history/history.js
        cairngorm3/trunk/libraries/PopupTest/html-template/history/historyFrame.html
        cairngorm3/trunk/libraries/PopupTest/html-template/index.template.html
        cairngorm3/trunk/libraries/PopupTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/libraries/ValidationTest/html-template/history/
        cairngorm3/trunk/libraries/ValidationTest/html-template/history/history.css
        cairngorm3/trunk/libraries/ValidationTest/html-template/history/history.js
        cairngorm3/trunk/libraries/ValidationTest/html-template/history/historyFrame.html
        cairngorm3/trunk/libraries/ValidationTest/html-template/index.template.html
        cairngorm3/trunk/libraries/ValidationTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/samples/insync/insync-basic/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/samples/insync/insync-basic/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/history/
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/history/his tory.css
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/history/his tory.js
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/history/his toryFrame.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/index.templ ate.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/playerProdu ctInstall.swf
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/libs/parsley-flex3-2.2.0. swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/libs/spicelib-flex-2.2.0. swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/history/
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/history/his tory.css
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/history/his tory.js
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/history/his toryFrame.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/index.templ ate.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/playerProdu ctInstall.swf
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/libs/parsley-flex3-2.2.0. swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/libs/spicelib-flex-2.2.0. swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/history/
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/history/hi story.css
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/history/hi story.js
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/history/hi storyFrame.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/index.temp late.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/playerProd uctInstall.swf
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/libs/parsley-flex3-2.2.0 .swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/libs/spicelib-flex-2.2.0 .swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/history/
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/history/histor y.css
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/history/histor y.js
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/history/histor yFrame.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/index.template .html
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/playerProductI nstall.swf
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/libs/spicelib-flex-2.2.0.swc
    Removed Paths:
        cairngorm3/trunk/libraries/Integration/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/Integration/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/Integration/src/com/adobe/cairngorm/CairngormIntegrationLib.as
        cairngorm3/trunk/libraries/Integration/src/com/adobe/cairngorm/integration/command/
        cairngorm3/trunk/libraries/Integration/test/com/
        cairngorm3/trunk/libraries/IntegrationDMS/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/IntegrationDMS/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/IntegrationRPC/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/IntegrationRPC/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/IntegrationTest/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/IntegrationTest/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/Module/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/Module/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/ModuleTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/libraries/ModuleTest/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/ModuleTest/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/ObserverParsley/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/ObserverParsley/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/PopupParsley/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/PopupParsley/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/TaskTest/html-template/history/
        cairngorm3/trunk/libraries/TaskTest/html-template/index.template.html
        cairngorm3/trunk/libraries/TaskTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/samples/insync/insync-basic/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-basic/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/libs/parsley-complete-fle x3-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/libs/spicelib-complete-fl ex-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/libs/parsley-complete-fle x3-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/libs/spicelib-complete-fl ex-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/libs/parsley-complete-fl ex3-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/libs/spicelib-complete-f lex-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/libs/parsley-complete-flex3- 2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/libs/spicelib-complete-flex- 2.1.0.swc

    I can't help you with your problem, but maybe this is a good start:
    http://kb2.adobe.com/cps/905/cpsid_90508.html#main_Flash_Builder
    ..... About that... have you encountered any other issue when using FB 4.5.1 with OS X 10.7.0?

  • 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

Maybe you are looking for