Updated to stable build and won't compile.

So I updated to flex 4.0.0.7219 and now getting these errors? Are they depreicated?
Description    Resource    Path    Location    Type
1017: The definition of base class DataTip was not found.    LineChartDataTip.as    com/mysite/components/chartingcomponents    line 9    Flex Problem
1020: Method marked override must override another method.    LineChartDataTip.as   com/mysite/components/chartingcomponents    line 16    Flex Problem
1020: Method marked override must override another method.    LineChartDataTip.as    com/mysite/components/chartingcomponents    line 20    Flex Problem
1046: Type was not found or was not a compile-time constant: CategoryAxis.    NodeBarChart.mxml    com/mysite/components    line 144    Flex Problem
1046: Type was not found or was not a compile-time constant: HitData.    NodeBarChart.mxml    com/mysite/components    line 94    Flex Problem
1046: Type was not found or was not a compile-time constant: IAxis.    NodeBarChart.mxml    com/mysite/components    line 119    Flex Problem

I am guessing they are misisng because they are in Flash Builder Professional, which we have to wait for.  Can I pay you what for another license and get them turned on?

Similar Messages

  • HT204053 How do I remove my credit card from my account? Right now I have debit or credit card and when I try to download a free app like Facebook, it tells me to update my billing info and won't accept it blank. It says I owe for a previous purchase.

    How do I remove my credit card from my account? Right now I have debit or credit card and when I try to download a free app like Facebook, it tells me to update my billing info and won't accept it blank. It says I owe for a previous purchase.

    Sorry- edited:
    How do I remove my credit card from my account? Right now I have no* debit or credit card and when I try to download a free app like Facebook, it tells me to update my billing info and won't accept it blank. It says I owe for a previous purchase. So take it back and unlock my ability to DL free apps.

  • IPhone 4 crashed during ios update (5.0.1) and won't restore. anyone know how i can get my iPhone working again?

    iPhone 4 crashed during ios update (5.0.1) and won't restore. anyone know how i can get my iPhone working again?

    Try to force your phone into recovery mode. Disconnect it from the computer's USB cord. Turn it off if you can by holding the sleep/wake switch until you see the red slide to off. If you can't turn it off, please continue. Press and hold the home button while plugging it into the computer's USB cord. Continue holding the Home button while iPhone starts up. While starting up, you will see the Apple logo. When you see "Connect to iTunes" on the screen, you can release the Home button and iTunes will display the recovery mode message. See http://support.apple.com/kb/HT1808 for details.
    Then you can restore your phone: http://support.apple.com/kb/HT1414

  • After the update iTunes keeps crashing and won't play any of my music and keeps restarting my phone.

    After the update iTunes keeps crashing and won't play any of my music and keeps restarting my phone.
    Anyone else have this problem and resolved it?
    Thank you!

    Well, I hadn't rebooted after the 7.1.1 upgrade, but obviously I had to restart iTunes. After I rebooted my iBook iTunes worked... Maybe the 7.1.1 update should be marked with a must reboot?

  • I'm now showing I have 9 updates in the App Store but when I click on updates it is blank and won't load. Tried to reset but didn't help. What now?

    I'm now showing I have 9 updates in the App Store but when I click on updates it is blank and won't load. Tried to reset but didn't help. What now?

    Try again later today or tomorrow. Other users are posting the same issue >  Apps update not working. Was before but...: Apple Support Communities
    The problem has been reported to Apple.

  • Embedded CFF font not working in TLF in latest stable build and higher (4.0.0.13875)

    Hi there,
    We are using embedded fonts with the TLF framework and since upgrading to the latest nightly build or the stable build, it stopped working. Here is a short example:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="1024" minHeight="768" xmlns:mx1="library://ns.adobe.com/flex/halo">
         <fx:Style>
              @font-face {
                   embedAsCFF: true;
                   fontFamily: "Courier";
                   src: url("COURIER.otf");
                   advancedAntiAliasing: true;
                   fontStyle: normal;
                   fontWeight: normal;
         </fx:Style>
         <fx:Declarations>
              <s:TextFlow id="tf" fontSize="20">
                   <s:p fontFamily="Courier" fontLookup="embeddedCFF">hallo is dit courier?</s:p>
                   <s:p>hallo is dit courier?</s:p>
              </s:TextFlow>
         </fx:Declarations>
         <s:VGroup>
              <s:RichEditableText textFlow="{tf}" />
         </s:VGroup>
    </s:Application>
    Any idea why it doesn't work anymore. The same example works fine compiling with build; 4.0.0.11686.
    Thanks,
    marcel panse

    Hi Guys,
    I sort of figured out a figured out a solution/workaround:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="1024" minHeight="768" xmlns:mx1="library://ns.adobe.com/flex/halo"
                      creationComplete="onCreationComplete()">
         <fx:Style>
              @font-face {
                   embedAsCFF: true;
                   fontFamily: CourierCFF;
                   src: url(c:/windows/fonts/COUR.ttf);
                   fontStyle: normal;
                   fontWeight: normal;
         </fx:Style>
         <fx:Script>
              <![CDATA[
                   import flashx.textLayout.compose.ISWFContext;
                   import flashx.textLayout.formats.ITextLayoutFormat;
                   import flashx.textLayout.elements.GlobalSettings;
                   import flash.text.engine.FontLookup;
                   import flash.text.engine.RenderingMode;
                   import flashx.textLayout.elements.TextFlow;
                   import flashx.textLayout.elements.SpanElement;
                   import flashx.textLayout.elements.ParagraphElement;
                   import flashx.textLayout.container.ContainerController;
                   import flashx.textLayout.formats.TextLayoutFormat;
                   import flashx.textLayout.elements.Configuration;
                   import flashx.textLayout.compose.IFlowComposer;
                   import flash.text.engine.FontLookup;
                   use namespace mx_internal;
                   private function onCreationComplete():void {
                        createTextFlow();
                   private function createTextFlow():TextFlow {
                        var config:Configuration = new Configuration();
                        var textLayoutFormat:TextLayoutFormat = new TextLayoutFormat();
                        textLayoutFormat.fontFamily = "CourierCFF";
                        textLayoutFormat.fontLookup = FontLookup.EMBEDDED_CFF;
                        textLayoutFormat.renderingMode = RenderingMode.CFF;
                        config.textFlowInitialFormat = textLayoutFormat;
                        var textFlow:TextFlow = new TextFlow(config);
                        var p:ParagraphElement = new ParagraphElement();
                        var span:SpanElement = new SpanElement();
                        span.text = "Is dit courier?";
                        p.addChild(span);
                        textFlow.addChild(p);
                        var flowComposer:IFlowComposer = textFlow.flowComposer;
                        //option 1: This fixes the problem, but i'm not sure why it works without a fontLookupFunction? Does it default to embedded?
                        //you could also specify your own function always returning embedded, but that would just resolve to the same behaviour..
                        GlobalSettings.resolveFontLookupFunction = null;
                        //option 2: I guess this is the more proper solution, specifying the swfContext. Only what context to choose?
                        //every font has its own css/swf and thus context. A paragraph can select a font (and the bold/italic options),
                        //which font to choose here if there are multiple fonts used in the textflow?
                        textFlow.flowComposer.swfContext = ISWFContext(this.getFontContext("CourierCFF", false, false, FontLookup.EMBEDDED_CFF));
                        var cc:ContainerController = new ContainerController( mainText, 200, 200 );
                        flowComposer.addController( cc );
                        flowComposer.updateAllControllers();
                        return textFlow;
              ]]>
         </fx:Script>
         <s:VGroup>
              <s:NumericStepper /> <!-- remove this stepper and the embedded font will work without option 1 or 2 -->
              <mx:UIComponent id="mainText"/>
         </s:VGroup>
    </s:Application>
    Option 1, setting GlobalSettings.resolveFontLookupFunction to null. Fixes the problem, but i'm not sure why it works without a fontLookupFunction? Does it default to embedded? You could also specify your own function always returning embedded, but that would just resolve to the same behaviour..
    Option 2, specify the context: I guess this is the more proper solution, specifying the swfContext. Only what context to choose? Every font has its own css/swf and thus context. A paragraph can select a font (and the bold/italic options), which font to choose here if there are multiple fonts used in the textflow?

  • RoboHelp  for Word 7 is not saving the rtf and won't compile .hlp

    I use RoboHelp for Word 7 to produce WinHelp files. It's been working fine for several months on this computer.
    Just in the past week, I had an issue with my Word 2007 when trying to open a .doc file. I got the message that the converter nswrd632.wpc wasn't found. After searching on the Microsoft forums, I edited the registry and registered that converter.
    But now (and this may be unconnected to the Word converter message) RH won't save the .docx or .rtf file. Whenever I click Save All, nothing happens. When I click Exit Project, the message comes up about needing to save the files, and I click Yes to All. Nothing happens except the message closing. No files are saved and RH does not exit. The only way I can exit RH is to click No, which of course means my changes aren't saved. I can't save the .docx file through the Word menu, either.
    I also cannot compile the file. Again, no error message, just doesn't compile.
    I have searched the forums for RH for Word, with the result that I've reinstalled RH, made sure the RH add-ins are enabled, and deleted all the .dot files. Nothing is working. I went to Peter Grainge's Snippet 112 and followed the directions there--no change.
    I have found that after making my edits in the Word document, if I manually save the RTF file by going to the Word Save As directory, the edits will be saved and RH will compile the .hlp file - one time.
    Any ideas?

    Hi, I have a nearly identical problem, except my project uses .doc files instead of .rtf files. I was able to solve the "cannot save" problem by following the information below. I still have not resolved the "cannot compile" problem.
    I'm using Windows XP, RH7 Build 100, Office 2007. My project was created using Office 2003 and I did not experience any of these issues until I recently upgraded to Office 2007.
    This fix was sent to me by my group's "tech" guy.
    A number of Adobe RoboHelp for Word 7 users have reported that they cannot save changes or generate an output. The cause has been isolated to the RHComAdd.DLL being disabled.
    Check for that in Word:
    For versions up to 2003 go to Help | About | Disabled Items. If RHComAdd.DLL appears, re-enable it.
    For Word 2007, go to the Office Button | Word Options | Add-ins. Under "Manage" select Disabled Items and click Go. If RHComAdd.DLL appears, highlight it and re-enable it. (THIS IS WHAT I DID)
    Alternatively, you can re-register the DLL. Go to Start | Run and type in the following line, assuming you have installed RoboHelp to the default location.
    regsvr32 "C:\Program Files\Adobe\Adobe RoboHelp 7\RoboHELP\RHComAdd.dll"
    How does this DLL get disabled? The cause has been identified as a Word document being opened in Internet Explorer rather than in Word.
    This problem was fixed in Build 7.0.2.
    Hope this helps you. I'm still working on the compile error.
    -Shannon Mooney

  • Flash builder 3 won't compile

    I have a flash builder 3 project  but I done something but it won't compile now. How can I resolve this. Tried clean project and no luck

    what are the compile errors u r getting ?

  • Bridge won't update past 6.01 and won't recognize Canon 6d

    I purchased a canon 6d and it was not recognized by Bridge 5.
    I signed up for CC two days ago.  I had all programs updated yet Bridge still does not recognize camera.  The version of Bridge still shows as 6.01.  I am getting frustrated.
    Please help/ 

    Check Photoshop / about Plug ins / Camera Raw
    inhere it should show one version of ACR and at least 7.3 (but when updated possibly 8.2) because 7.3 is the first version to support your camera.
    Bridge is at version 6.0.1 at this moment so also check PS updates for having the correct ACR plug in active.
    But there seems something else bothering you because ACR 7.3 is already available in CS6 that has Bridge version 5. This combination should also be able to provide you the correct previews.
    Like Curt stated, can you provide more details about your computer (RAM, VRAM, total- and free disk space) OS system version and how do you try to view the files (card reader, cable to camera)

  • Itunes update 10.6 quits and won't relaunch

    I just updated iTunes 10 to 10.6 and now it will launch but shut down immediately.  I did a restart and shut down and still have the same problem. Ugh!!

    "Hi, I have the same problem since I updated iTunes 10.6. I wonder if it's because I'm still using Snow Leopard 10.6.8 and the solution is to change to Lyon"

  • What shall I do about the app updates on my iPhones App Store don't come up. It says I have 11 updates but the update page stays blank and won't load?

    On my iphone 5, I can't see any apps that require updating, but it shows a notification badge on the App Store saying that I have 11 to update? Does anyone know how I can get around this?

    Did you tried to remove the App Store app from multitasking bar?
    Double click the home button and hold down an icon. Then tap the little x to remove the app. Click home button ones and try again to use the App Store to update your apps.

  • Update has missing files and won't start fixed

    not a question, but noticed quite a few people were having trouble with itunes after updating. continuously being told file did not install properly and cites window error 127.
    i followed an idea from from the microsoft community and now it works and doesnt crash when i plug in iphone to system as well.
    unistall everything by apple.inc so itunes, bonjour the update service, everything listed in the change/remove program database as apple
    once done install quicktime player then reinstall itunes, this seems to get rid of the bug
    hope this helps

    not a question, but noticed quite a few people were having trouble with itunes after updating. continuously being told file did not install properly and cites window error 127.
    i followed an idea from from the microsoft community and now it works and doesnt crash when i plug in iphone to system as well.
    unistall everything by apple.inc so itunes, bonjour the update service, everything listed in the change/remove program database as apple
    once done install quicktime player then reinstall itunes, this seems to get rid of the bug
    hope this helps

  • I updated the folio builder and now my indesign just hangs when i start it

    what am i supposed to do?

    Try clearing the local folio cache:
    On Mac /Users/user name/Library/Preferences/ StageManager.<long_guid>/Local Store/
    Please delete following cache file/folders:
    *    #SharedObjects
    *    Dmp folder
    On PC, C:\Users\user name\AppData\Roaming\StageManager.BD092818F67280F4B42B04877600987F011 1B594.1\Local Store is the path and delete those two folders.
    You'll wind up losing any local folios you created, but it may help with your issue with the panel not opening.
    Neil

  • Install Software Updates Step fails during Build and Capture

    I have run into a problem while attempting to use the Install Software Update task during a build and capture task sequence.  I have MDT 2012U1 integrated into SCCM 2012.
    The Install Software steps find and use the Deployment Points fine and the Use Toolkit steps similarly are able to download their source files from the distribution points using the Network Access account.  The Install Software Updates step, however
    fails with an access denied error in the CAS.log.
    I have found that I can work around this problem by setting the DP to allow anonymous access.  After checking this box, the software updates install during the build and capture task sequence.  Unchecking the Allow anoymous makes the problem recur.
    I would like to not have to have the "allow anonymous access" enabled on the DPs for obvious reasons.  Other packages download correctly from the DP with anonymous access disabled - they use the network access account.  Install Software Updates
    is the only step that seems unable to use that account to talk with the DP.
    Is this a known issue?  Is there a work around?

    Thanks for the information. I will give that a try.  I do have the SMSMP & SMSSLP (not sure I need this one in 2012) filled in in the Configmgr client install settings.  Before I did that, it couldn't even find the SUP.
    I am a little skeptical that the hotfix will fix my problem since most packages are downloading from the DP fine - it is only Software Updates that are failing to download.  On the other hand, it is clearly a permissions issue since allowing anonymous
    on the DP resolves the issue, all be it in a way I am uncomfortable maintaining in the long run.
    That KB replaces a lot of key Windows system files.  Hopefully, it won't cause more problems than it solves.
    ---additional thought
    I wonder, could it be that Packages that work without this KB have package share settings with "Copy the content in this package to a packages share on Distribution Points" cleared/unchecked?  This setting is not available for patch packages
    - so I wonder if it is enabled by default behind the scenes.  That could explain why the patch packages are affected and not the other regular application packages I have are not.  All my regular packages so far do not have the
    "Copy the content" box checked. Clients would be accessing the packages differently I suppose based on whether it was through a packages share or through the new SCCM 2012 package storage thing with the hashing.

  • I downloaded the latest update for my ipad and now it won't open.  the screen shows the itunes icon and a pic of the usb cable

    I downloaded the latest update for my ipad and now it won't open.  the screen shows the itunes icon and a pic of the usb cable

    That message means that you have to restore the iOS software because something went wrong. Follow the instructions here. I hope that you have a backup.
    iTunes: Restoring iOS software - Support - Apple

Maybe you are looking for

  • How can I view what is on my iPod from iTunes

    I have an iPod Nano 5th gen (click wheel) - 16gb. Apparently, there is no way to view what is/is not on the iPod from iTunes. When I click on music, I can see what playlists/artists/songs are checked for syncing - but not what is currently on the dev

  • My itunes account is locked.

    I was trying to create a new iTunes ID password, but I could not which of my cars was the most favorite.  I assumed one of my BMW's??  Tried them all.  Please help!

  • Drag and Drop symbol action issue! Help!

    Hi, I am constructing a risk radar and am looking for an object to change state when put on the middle of a target. And once removed from the middle of the target, to change back to its original state, I so far have this code: // insert code to be ru

  • Jumpy, erratic trackpad on MBA (Is there a firmware update?)

    There have been complaints about jumpy/erratic/random cursor behavior with Macbook Air's trackpad. I have the same problem, and it's driving me nuts. However, I noticed that, from users who were complaining about similar behavior on their MBP mention

  • What's the best Mac app to copy movies from a DVD to the iPod Touch?

    So let's say i have a DVD and i want to make a copy of it and use an app to transfer it to my iPod Touch, what's the best way of doing this? I heard of Handbrake and Videora, are they any good? EDIT: I am using a Mac (OS X)