Modify BCC Flex editor

Hello,
I'd like to know if there's any possibility of using a text area as the Big String editor in the flex part of BCC, or if it is possible to create a new type (data-type) in which the editor is only a text area.
The way it is today, the default Big String editor on flex is an HTML editor. I need to use this model, but I also need a model for text area only.
Thanks,
Renã

               The issue came when the flex builder installed with sdk 3 and later upgraded the sdk to higher version. To solve this, please uninstall the flex builder and install flex builder with 3.2 sdk (it will automatically install 2.0.1 hotfix 3) (download from http://www.adobe.com/support/documentation/en/flex/3/releasenotes_flex3_fb.html). Then upgrade the sdk to 3.5
It works now.

Similar Messages

  • Motion crashing each time I modify keyframes in editor

    Every time I try to modify one of the parameters of keyframing in Motion's editor, it crashes and I need to reboot. Everything else seems to function normally, with this only specific exception.
    I was wondering if anyone was experiencing the same or had some fix. I'm on 2 Gig RAM.
    Thank you!

    So - one day on the Pro Video support line, two trips to the Apple Store and one replacement machine later, I have an answer that may help if you have an ATI graphics card.
    There seems to be an issue between Motion and ATI video cards when it comes to the Keyframe Editor. I have the ATI Radeon X1900 card, but this Keyframe Editor problem was replicable in a Macbook Pro with an ATI card as well. We tested it across several machines in the store and it was just the ones with ATI in the video slot that had this problem.
    There is not a solution for this at this time, but there is a fairly simple workaround rule:
    Always start keyframing on any object with the Record button - you will then be able to use the Keyframe Editor to modify the keyframes of that object. You can even add keyframes to the object and modify those - however, if you do this and then start to modify another object that hasn't been started off with keyframes from the Record button, you will have the same hard freeze issue. Seemingly, it is as simple as that.
    I have Motion working fine on my machine and have yet to have the problem repeat if I follow this rule.
    I have not, however, tried this in modifying behaviors or particles with keyframes, but I suspect if you hit Record and modify the values in the Inspector, you should get the same result.
    Keep posting any problems that persist, as Apple is being made aware of the issue by the techs at the SF store. Gotta say they were pretty persistent in getting to the bottom of this and finding a workaround, especially Michael in the Business unit - thanks to all!
    2 x 3GHz Dual-core Intel Xeon, 4GB RAM   Mac OS X (10.4.8)  

  • Modifying a Flex application to an AIR application

    Hi,
        I am currently developing a prototype application which runs locally and not all functionality need be working, especially the file uploading/downloading and file browsing capabilities, due to  time constraints. In working I setup a flex application, and now realize that same functionality could be handled in a  more gracious fashion by AIR.
         My question is how much more work is it modifying my prototype into a full AIR app when the time comes?  I have a feeling it is not as easy as just including some AIR classes into my current prototype, right? And would I be better off, creating a new flex 3 project altogether, and repurposing what code needs to be re-purposed? 
        For example, I might need the ability to import custom artwork to be displayed in the application, which comes from the local filesystem, but can be saved or sent to a remote server. Initially, I used the FileReference class, but now am pondering if using adobe AIR would cut my development time, now and in the future.
    Any enlightenment would be helpful, since from reading the documentation on Adobe AIR, I'm not quite sure of where the line in the sand is drawn between its framework and flex's framework is drawn.
    vErGo_O

    It could be as easy as changing the Application tag to WindowedApplication and creating an application descriptor file.
    I'm not sure if you can change a Flex web project into a desktop project, so you might have to create a new project in the F. Builder IDE. (If you are using the command line tools, that's not an issue.)
    As to the "line in the sand," AIR is at the same level as Flash Player (in the browser or standalone). The Flex framework runs in either. There are a handful of features in Flex that work in AIR , but not in Flash Player (because they use AIR-only APIs).

  • Replacing photo in the Modified folder with one modified in another editor

    First I'd like to thank Terence and Old Toad for getting me this far with my problem. So here are the gory details: I shoot my pictures in the RAW format with a Pentax K-X and then manage & edit them in iPhoto. When iPhoto converts many of the indoor (no flash) pictures, the jpgs are much darker than the .dng pictures from which they were created. In another discussion, I discovered that a camera setting was to blame for the darker jpegs but now I have to go back and fix the pictures I already imported.
    If I send the jpeg to Photoshop Elements or another editor, it's still nearly impossible to get the color right. If I send the RAW image, however, I can create a proper jpeg, but then I'm stuck with saving it as a new file and reimporting it. For each picture I fix, I'll have 1 RAW image and the jpeg that iPhoto creates and 2 new jpegs from editing the RAW image in the external editor.
    I've read enough discussions to know that as tempting as it is to do, thou shalt not touch the iPhoto Library. That said, is there any way to have iPhoto associate the externally created jpeg with the original RAW file?
    Message was edited by: pfgroff

    Thanks TD for the suggestion. I made the switch but iPhoto wouldn't pick up the changes. I rebuilt the thumbnails by holding cmd+alt at start-up and that seemed to work until I double-clicked the image. Then I'd see the old darker image I thought I replaced. Even when I look in the finder at the image, the new one is in the Modified folder, but iPhoto is really committed to showing the old one. As there is no clean way to achieve what I'm trying to do, I've resorted to hiding the original so I can keep the raw image. I still have 4 copies for 1 image, but the library at least looks a little cleaner.
    Thanks again for your reply.
    Message was edited by: pfgroff

  • Modifying a flex column chart

    Hi there,
    I'm trying to change the x axis to have four bars that measure categories. My bars show up, and track data, but are so thin and only in the far left quadrent.
    Chart
            <mx:ColumnChart id="categoryChart" height="137" color="0x323232"
                showDataTips="true" width="272" y="213">
                <mx:horizontalAxis>
                    <mx:CategoryAxis categoryField="category"/>
                </mx:horizontalAxis>
                <mx:series>
                    <mx:ColumnSeries yField="Health" name="Health" width="100"/>
                    <mx:ColumnSeries yField="Industrial"/>
                    <mx:ColumnSeries yField="Emerging"/>
                    <mx:ColumnSeries yField="Food"/>
                </mx:series>
            </mx:ColumnChart>
            <mx:Legend id="categoryLegend" color="0x323232" y="358" x="10" width="280" direction="horizontal"/>
    Vars
             private var health:int = 0;
             private var industrial:int = 0;
             private var emerging:int = 0;
             private var food:int = 0;
    ArrayCollection
                  var categoryAC:ArrayCollection = new ArrayCollection([
                  {Health: health, Industrial: industrial, Emerging: emerging, Food: food}
    Also, how would I animate the data when it changes?

    Hi,
    to adjust width of the columns set columnWidthRatio property of series.
    For animating changes use showDataEffect and hideDataEffect
    http://livedocs.adobe.com/flex/3/langref/mx/charts/chartClasses/Series.html#effect:hideDat aEffect

  • How to modify the current editor contents from a JDev extension

    Hi there,
    I am creating an extension for JDev 11.1.1.3.0 and I am stuck... To simply things, let's say that I want to create an extension that converts the selected text in a editor to UPPERCASE.
    So far, I was able to get the selected text using *((CodeEditor)getContext().getView()).getSelectedText()* inside the doit() method.
    However I don't know how to update the text in the editor... I am pretty sure that it is more complicated than simply calling a setText() method but I could not find any documentation or examples in the web. Any tips?
    Thanks
    Luis

    Hi Luis,
    u can change the selected Text by the below command...
    *((CodeEditor)getContext().getView()).replaceSelection(text.toUpperCase());*
    And also u can find some samples and docimentation in the below link
    http://www.oracle.com/technetwork/developer-tools/jdev/downloads/index-091862.html
    Regards,
    Suganth.G

  • IWeb site modified by other editors

    I am having great fortune using iWeb so far for several different sites. My question may be obvious to some, but I would like other input.
    If I build a site for someone and 'hand it over' to them - not my domain file, but the published folder - could they make updates and changes to this from a PC with something like FrontPage? They don't have Macs and I am not using anything but my Mac. Thanks in advance for options!

    There is a program called snippetmaster I am implementing on my sites and allows my clients to edit the images and content you specify. You can restrict access to certain areas too, so they can't screw up the site. It will take time to implement them on your pages, but it is worth it when its done.
    www.snippetmaster.com

  • [svn] 3120: When you point Flex Builder at a local sandbox trunk build, it couldn' t generate the html-templates folder correctly for new projects so we moved all the html templates up one level and removed the html-templates directory and adjusted build

    Revision: 3120
    Author: [email protected]
    Date: 2008-09-05 10:44:10 -0700 (Fri, 05 Sep 2008)
    Log Message:
    When you point Flex Builder at a local sandbox trunk build, it couldn't generate the html-templates folder correctly for new projects so we moved all the html templates up one level and removed the html-templates directory and adjusted build.xml's to accommodate the directory change
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/webapps/webtier/build.xml
    Added Paths:
    flex/sdk/trunk/templates/client-side-detection/
    flex/sdk/trunk/templates/client-side-detection/AC_OETags.js
    flex/sdk/trunk/templates/client-side-detection/index.template.html
    flex/sdk/trunk/templates/client-side-detection-with-history/
    flex/sdk/trunk/templates/client-side-detection-with-history/AC_OETags.js
    flex/sdk/trunk/templates/client-side-detection-with-history/history/
    flex/sdk/trunk/templates/client-side-detection-with-history/history/history.css
    flex/sdk/trunk/templates/client-side-detection-with-history/history/history.js
    flex/sdk/trunk/templates/client-side-detection-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/client-side-detection-with-history/index.template.html
    flex/sdk/trunk/templates/express-installation/
    flex/sdk/trunk/templates/express-installation/AC_OETags.js
    flex/sdk/trunk/templates/express-installation/index.template.html
    flex/sdk/trunk/templates/express-installation/playerProductInstall.swf
    flex/sdk/trunk/templates/express-installation-with-history/
    flex/sdk/trunk/templates/express-installation-with-history/AC_OETags.js
    flex/sdk/trunk/templates/express-installation-with-history/history/
    flex/sdk/trunk/templates/express-installation-with-history/history/history.css
    flex/sdk/trunk/templates/express-installation-with-history/history/history.js
    flex/sdk/trunk/templates/express-installation-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/express-installation-with-history/index.template.html
    flex/sdk/trunk/templates/express-installation-with-history/playerProductInstall.swf
    flex/sdk/trunk/templates/metadata/
    flex/sdk/trunk/templates/metadata/AC_OETags.js
    flex/sdk/trunk/templates/metadata/readme.txt
    flex/sdk/trunk/templates/no-player-detection/
    flex/sdk/trunk/templates/no-player-detection/AC_OETags.js
    flex/sdk/trunk/templates/no-player-detection/index.template.html
    flex/sdk/trunk/templates/no-player-detection-with-history/
    flex/sdk/trunk/templates/no-player-detection-with-history/AC_OETags.js
    flex/sdk/trunk/templates/no-player-detection-with-history/history/
    flex/sdk/trunk/templates/no-player-detection-with-history/history/history.css
    flex/sdk/trunk/templates/no-player-detection-with-history/history/history.js
    flex/sdk/trunk/templates/no-player-detection-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/no-player-detection-with-history/index.template.html
    Removed Paths:
    flex/sdk/trunk/templates/html-templates/

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Unable to open photo editor in photoshop elements 11

      After initial install on my windows 7 64 bit system , all aspects of the software worked for about a month and then I could not open the photo editor. All other aspects of this product opens and works fine . Unfotunatly I cannot use the editor or open photos previously modified in the editor. I can open the editor if I log in in safe mode but no other way. I have done 2-3 clean installs as described in previous articles, there are no errors just won't open. Any ideas>?

      Went through verified firewall disabled and turned off defender ,previously removed antivirus that I was using. Uninstalled  and reinsatalled now recieving error  "
    PhotoshopElementsEditor.exe - Application Error
    The application was unable to start correctly (0xc0000142). Click OK to close the application.
    OK 
      Still not opening., Every other aspect seems to be working fine , just not the editor.

  • Flex Builder 4.5 Premium license not working for automation - anything else to try?

    So I'm getting the message when I try to record/run a test that the "License not present.  With the trial verison only limited replays are allowed."  I have a valid license key for Flash Builder 4.5 premium edition.  I have read many forums on this subject but none of them help me.  I compile my project either using Flash Builder 4.5 or an ant script invoking mxmlc.  I have modified my flex-config.xml to include "flashbuilder45", and my given serial number with and without dashes (and other combinations).  I do not have a license.properties file.  I'm not sure what else I can do.  I have already reinstalled Flash Builder 4.5.  I am now trying Flash Builder 4.6 with the same results.  This serial number is a group one good for 5 boxes.  My next step is to request a replacement serial number from Adobe, since I can't think of anything else that could be wrong with my setup.

    1.  It is a premium which I can see when I view "My Products" on this adobe site.  I can enable Network monitor and when I do my application hangs (I've read a bit on how to get this working properly, but I don't need it)
    2. It is an FB serial number.  Here is what it is under My Products:
    Serial Number: XXXX-XXXX-XXXX-XXXX-XXXX-XXXX
    Application or font: Flash Builder Prem
    Version: 4.5
    Platform: Multiple Platforms
    Date: June 7, 2011
    3. Yes I have.  I have uncommented
    <licenses>
          <license>
             <product>product</product>
             <serial-number>serial-num</serial-number>
          </license>
       </licenses>
    which sits one level down within <flex-config/>
    Under product I have tried "flashbuilder45", "flashbuilder4", "flashbuilder46", and even "flexbuilderXX" a few times.  Under my serial number I have entered the serial number as shown in My Products - I have tried tried it with dashes, and without.
    I found this post
    http://stackoverflow.com/questions/6993096/how-to-properly-define-the-flashbuilder-4-5-pre mium-license-for-a-maven-flexmojo
    which says "the serial-number element is NOT the license number that we got from Adobe (and that we use when installing the Flash Builder tooling) but it is a derived form of that license number that can be found for example in the license.properties file of a developer that has Flash Builder installed".  However I have read conflicting reports about this.  At any rate I do not have a license.properties file, which I assume was discounted after flex builder 3.x.
    4. Yes, using FlashBuilder and my ant script.  I have also cleaned my browser's cache.  The problem persists.

  • [svn] 4612: Flex SDK Bug Fix - Added scaleGrid support to BitmapGraphic

    Revision: 4612
    Author: [email protected]
    Date: 2009-01-21 16:58:51 -0800 (Wed, 21 Jan 2009)
    Log Message:
    Flex SDK Bug Fix - Added scaleGrid support to BitmapGraphic
    SDK-17289 - BitmapGraphic source embed does not respect scale9 grid when scaling
    BitmapGraphic will use the scaleGrid properties defined on its embedded source. Since the Player doesn't support scaleGrid on bitmaps, we have to slice the bitmap into nine sections and then scale/translate each section. We create two arrays of points along the grid. These are used to define the topLeft and bottomRight corners of the section. Based on the internal scaleFactor and which section we are in, we draw a scaled and translated section according to the scaleGrid rules.
    More details:
    - Changed BitmapGraphic to no longer use the BitmapFill to draw. Instead, BitmapGraphic performs the drawing code itself.
    - When the source is set, check if it has scaleGrid properties and store these in internal variable
    - Cache the creation of the 16 grid points array. Flush the cache if the source or dimensions have changed
    - To see this behavior in action, set width/height to different values than the source's natural dimensions and set resizeMode = "scale"
    QE Notes: Add tests for BitmapGraphic with embedded assets using scaleGrid
    Doc Notes: Add docs for this functionality
    Bugs: SDK-17289
    Reviewer: Glenn
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17289
    http://bugs.adobe.com/jira/browse/SDK-17289
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/BitmapGraphic.as

  • [svn:fx-trunk] 16929: Add a [Mixin] class that will register the required class aliases in the event the mxml compiler generation   [RemoteClass(alias="")] code is not called because an application does not use the Flex UI framework .

    Revision: 16929
    Revision: 16929
    Author:   [email protected]
    Date:     2010-07-15 07:38:44 -0700 (Thu, 15 Jul 2010)
    Log Message:
    Add a class that will register the required class aliases in the event the mxml compiler generation  [RemoteClass(alias="")] code is not called because an application does not use the Flex UI framework.
    Add a reference to this class in the RPCClasses file so it always gets loaded.
    QE notes: Need a remoting and messaging regression test that doesn't use Flex UI.
    Bugs: Watson bug 2638788
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/RPCClasses.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/RpcClassAliasInitializer.as

    Great exercise to document the problem like this.  It got me thinking about how an app with modules would be different from an app that does not use modules.  Solution: I moved the dummy reference of PersonPhotoView out to the main application file (as opposed to being inside the module) and it worked.  I've probably been lucky not to have experienced this problem earlier, because for most other entities I have an instance attached to my model which is linked / compiled with the main application.

  • [svn:fx-trunk] 12087: Dev only. Checking in Flash Builder 4 " Library Projects" for building Flex SDK SWCs in trunk.

    Revision: 12087
    Revision: 12087
    Author:   [email protected]
    Date:     2009-11-21 20:56:09 -0800 (Sat, 21 Nov 2009)
    Log Message:
    Dev only. Checking in Flash Builder 4 "Library Projects" for building Flex SDK SWCs in trunk. These projects are easier to import and do not require linked resource variables to be specified.
    Note: although the trunk does not build textLayout.swc, there appears to be a legitimate compiler error in FlowGroupElement.as as a cast is missing. I'll follow up with TLF.
    QE notes: N/A
    Doc notes: N/A
    Bugs: N/A
    Reviewer: N/A
    Tests run: N/A
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/build.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/airframework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airframework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airframework/.project
        flex/sdk/trunk/frameworks/projects/airframework/.settings/
        flex/sdk/trunk/frameworks/projects/airframework/.settings/org.eclipse.core.resources.pref s
        flex/sdk/trunk/frameworks/projects/airspark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airspark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airspark/.project
        flex/sdk/trunk/frameworks/projects/airspark/.settings/
        flex/sdk/trunk/frameworks/projects/airspark/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/flex/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/flex/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/flex/.project
        flex/sdk/trunk/frameworks/projects/flex/.settings/
        flex/sdk/trunk/frameworks/projects/flex/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/framework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/framework/.project
        flex/sdk/trunk/frameworks/projects/framework/.settings/
        flex/sdk/trunk/frameworks/projects/framework/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/halo/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/halo/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/halo/.project
        flex/sdk/trunk/frameworks/projects/halo/.settings/
        flex/sdk/trunk/frameworks/projects/halo/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/osmf/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/osmf/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/osmf/.project
        flex/sdk/trunk/frameworks/projects/osmf/.settings/
        flex/sdk/trunk/frameworks/projects/osmf/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/rpc/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/rpc/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/rpc/.project
        flex/sdk/trunk/frameworks/projects/rpc/.settings/
        flex/sdk/trunk/frameworks/projects/rpc/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/spark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/spark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/spark/.project
        flex/sdk/trunk/frameworks/projects/spark/.settings/
        flex/sdk/trunk/frameworks/projects/spark/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/sparkskins/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.project
        flex/sdk/trunk/frameworks/projects/sparkskins/.settings/
        flex/sdk/trunk/frameworks/projects/sparkskins/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/textLayout/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.project
        flex/sdk/trunk/frameworks/projects/textLayout/.settings/
        flex/sdk/trunk/frameworks/projects/textLayout/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/wireframe/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.project
        flex/sdk/trunk/frameworks/projects/wireframe/.settings/
        flex/sdk/trunk/frameworks/projects/wireframe/.settings/org.eclipse.core.resources.prefs

    Status Update - don't know if this is a bug, design flaw, install problem or my misunderstanding.
    I got it to work by first changing my Flex library to 4.5.0 - still didn't work with current
    app and update mxml files using "2.6" for their namespace versions. But I did at least
    get the popup error number 16815 - indicating an error in the update version namespace.
    By leaving my application namespace version at "2.6" and changing the update version to "2.5" ... bingo!
    I got my new update installed autiomatically.
    Is this how it's supposed to work - or are my runtimes mixed up?
    Will this work the same using the Flex 4.5.1 SDK? I'll find out shortly
    Hope this helps others.

  • [svn:fx-trunk] 12077: Although Spark RichText does not support link formats , modifying compiled FXG to not generate ActionScript code that will cause compile time exceptions .

    Revision: 12077
    Revision: 12077
    Author:   [email protected]
    Date:     2009-11-20 18:16:32 -0800 (Fri, 20 Nov 2009)
    Log Message:
    Although Spark RichText does not support link formats, modifying compiled FXG to not generate ActionScript code that will cause compile time exceptions.
    Removing references to Flex Builder 3 in RPC.
    QE notes: N/A
    Doc notes: N/A
    Bugs:
    SDK-24305 - Link format property nodes cause errors on RichText in FXG 2.0
    SDK-24322 - A couple references to Flex Builder 3 in Flex 4 LangRef (and code comments)
    Reviewer: Deepa
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24305
        http://bugs.adobe.com/jira/browse/SDK-24322
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/XMLDecoder.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/FlexFXG2SWFTranscoder.java

  • [svn:fx-trunk] 14047: Modifying framework projects to not depend on the FLEX_SDK linked resource .

    Revision: 14047
    Revision: 14047
    Author:   [email protected]
    Date:     2010-02-08 14:58:51 -0800 (Mon, 08 Feb 2010)
    Log Message:
    Modifying framework projects to not depend on the FLEX_SDK linked resource. Instead, we use the $ token (relative path to frameworks/) to point directly to the required swcs in the libs folder. This greatly simplifies the files, since there is now no need to exclude swcs from the SDK.
    Also, modified the projects such that the spark and framework projects may be imported together to FB without any other projects by having them depend on the swcs in the libs folder rather than the projects. However, other projects that depend on spark and framework will depend on the projects still. Thus, you must import spark and framework projects before importing the others.
    A developer working on the textlayout and osmf projects will have to replace the swcs on the build path in the spark/framework projects with their respective projects.
    No code changes.
    QE notes: N/A
    Doc notes: N/A
    Bugs: None
    Reviewer: Pete
    Tests run: checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airframework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airspark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airspark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/flex/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/flex/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/framework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/osmf/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/osmf/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/rpc/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/rpc/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/spark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/spark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.flexLibProperties

Maybe you are looking for

  • How to make the backlight stay on when charging? N...

    Hi How to make the backlight stay on when charging?  or it is not possible? Thanks  

  • Oracle update 10.2.0.2. up to 10.2.0.4 on microsoft windows 2003 R2 64 bit

    Hi all Soon I must perform an upgrade of Oracle 10.2.0.2. up to 10.2.0.4 on microsoft windows 2003 R2 64 bit. Befor this I only installed single oracla servers. This cluster server has also the Oracl failsafe monitor installed. What I see is that the

  • ERRORS 4450 & 4250

    I was able to burn CD's & DVD's with no problem, until recently. About 95% of the time I receive either error #'s 4450 or 4250. What do they mean and why do I keep receiving them?? I have searched the forum and did what other's have advised: slow dow

  • CompiledWsdl jws argument does not work

    Hi I am following the "Use Cases and Examples" documentation for WebLogic 10.3 and I cannot get the "Creating a Web Service from a WSDL File" section to work. When I use the contents of the pasted wsdl and build.xml file, included in the documentatio

  • List/Menu Help

    Hello Everyone I am trying to create a webpage that has a List/Menu type dropdown and what I want it to do is that when I select an item in the drop down I want it to play a specific SWF file right below the drop down. Is this possible and if it is c