Missing BitmapData class in code completion - Flex(FP10)

I’ve setup my Flex Builder for Flex 3.3 SDK and Flash Player 10 as described in this article. I noticed that BitmapData class doesn’t show anymore. Is this a bug?
I took a snapshot of my flex builder code completion.
Any thoughts on this?
Thanks for your help.
Mariush T.

Thanks Michael, it works now.
For anybody who has the same problem:
1. Download Flex SDK zip file.
2. Uninstall current Flash Player.
3. Install Flash Player from /runtimes/player/10/win/
Mariush T.

Similar Messages

  • Missing base class Events (flash.events) | Flex 4.1 SDK | Flex Builder 3

    Hello,
    I am experience the following problem, I am not able locate or find base class Events when I do "import flash.events;" - autocomplete does not work as well. in import flash. only available - flash.errors and flash.text
    However if I switch from Flex 4.1 SDK to Flex 3.2 SDK then no problem and I can add flash.events
    Flex 4.1 SDK version is 4.1.0.65265, I also tried Flex 4.0 SDK, the same problem not able to find events.
    Require flash player version I tried both: 10.0.0 and 10.1.0 nothing helped.
    Could you please suggest what might be wrong. Unfortunately not able to find this info in the forum or google
    Thank you
    Regards,
    Marakame

    Did you try
        import flash.events.*;
    Or
        import flash.events.Event;

  • Code completion

    Hello,
    Since upgrading to java 1.4 where JCE has been included in the SDK I'm missing codecompletion in for the JCE classes. The sunjce.jar is in my classpath, and my java files compiles just fine. The compiler also finds javax.crypto.*
    What am I missing to get the code completion work. I'm using JCreator 3.10
    Code completion works in any other case. It is only JCE classes that is making the problem.

    If I choose properties for my project I see the path to the sunjce.jar Shouldn't that be it.

  • Missing flash.utils.* in code complete upgrade from 3.3 to 3.5 framework

    Hi All,
    I upgraded my 3.3 framework to 3.5 today, and for some strange and inexplicable reason, I've lost all code completion in Flex Builder 3 for flash.utils.* classes. I am thus missing Dictionary Timer and a few other important classes.
    I'm hoping that someone out there might have come across this before, or be able to give me a bit of a clue as to how to fix this issue. This is a tooling problem with Flex Builder rather than the code itself, so anyone with any insight, I would really greatly appreciate the help.
    Bayani

    Hi Sudheer,
    Its a Unicode problem.. Check this..
    unicode problem: the data object cannot be converted to character type
    cheers,
    Prashanth
    P.S Please mark helpful answers

  • Flex 4 - Code Completion Broken

    ...with code completion not working for legacy Halo
    components. Code completion for the new Gumbo/Fx#### components
    work fine.

    Have you run the Flex Builder 3.0.2 updater?
    http://www.adobe.com/support/flex/downloads_updaters.html

  • BitmapData class - displaying and resizing

    Hi Forum,
    I'm trying to teach myself flex by working through the tutorial videos on here and searching the net, however i have become a bit stuck with image manipulation.
    I want to make a Flash solution that loads in an image and with let the user zoom in and out and pan around.  I'm having problems quite early on particularly with displaying the resized image correctly and was wondering someone could provide some advice....some simple advice.  I have development experience but very little knowledge with flash/flex components.
    So far i have loaded the image, and i've been playing around with the bitmapdata class and managed to resize it.  But when i output it the image is smaller but has a background that takes up the original size.  I Think this may be solved somehow with the rec property?  But i can't get it to work. 
    I wanted to load the image at its original size and then resize it smaller to fit a view area, then when someone wants to zoom increase the size of the displayed image with the overflow not showing.
    So far my output looks like this:
    As you can see the image is smaller but it must still be taking up the same size or something because the canvas has scoll bars on it.  Whats happening.  Also when the image is bigger than the canvas how can i not have scroll bars and hide the overflow.  Here is my code:
    mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
         layout="absolute"
         backgroundGradientAlphas="[1.0, 1.0]"
         backgroundGradientColors="[#FBF8F8, #FBF8F8]"
         applicationComplete="Init()">
         <mx:Script>
              <![CDATA[
                   private var imgLoader:Loader;
                   private function Init():void{
                        imgLoader = new Loader();
                        //Image location string
                        var imageURL:String = "http://www.miravit.cz/australia/new-zealand_panoramic/new-zealand_panoramic_01.jpg"
                        //Instantiate URL request
                        var imageURLReq:URLRequest = new URLRequest(imageURL);  
                        imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imgLoadCompleted);
                        imgLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, progressListener);
                        //Begin image load
                        imgLoader.load(imageURLReq);
                   private function imgLoadCompleted(event:Event):void{
                   //On completion of image load     
                        progressBar.visible = false;
                        var scale:Number = .1;
                        //Set matrix size
                        var m:Matrix = new Matrix();
                        m.scale (scale,scale);
                        var bmd:BitmapData = new BitmapData(this.width, this.height);
                        bmd.draw(this.imgLoader,m);
                        var bm:Bitmap = new Bitmap(bmd);
                        auctionImageContainer.source = bm;
                   private function progressListener(event:ProgressEvent):void {
                    //Update progress indicator.
                         progressBar.setProgress(Math.floor(event.bytesLoaded / 1024),Math.floor(event.bytesTotal / 1024));
              ]]>
         </mx:Script>
         <mx:Canvas height="583" width="674">
              <mx:Canvas id="cvsImage"
                   borderColor="#BABEC0" borderStyle="solid" left="152" right="151" top="177" bottom="121">
                   <mx:Image id="auctionImageContainer" />
                   <mx:ProgressBar id="progressBar"
                             mode="manual" 
                               x="84.5" y="129"
                               labelPlacement="center"
                               themeColor="#6CCDFA" color="#808485" />
              </mx:Canvas>
         </mx:Canvas>
    </mx:Application>
    Thanks for any help
         LDB

    MediaTracker isn't about the number of images. I've been bitten in the ass by this before -- images seem to magically refuse to appear, or only appear on reloads, and it's because paint() got called before the image was loaded. MediaTracker fixed it.
    I don't know what you mean about images not working in constructors though. You can do that.
    Here's some code that works to display an image (for me anyway):
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    public class Test {
      public static void main(String[] argv) {
        Image i = Toolkit.getDefaultToolkit().createImage("image.jpg");
        Frame f = new Frame("Test");
        MediaTracker mt = new MediaTracker(f);
        mt.addImage(i, 1);
        try {
          mt.waitForAll();
        } catch (InterruptedException e) {
          e.printStackTrace();
        f.addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
        f.add(new Displayer(i));
        f.pack();
        f.setVisible(true);
      private static class Displayer extends Canvas {
        private Image i;
        Displayer(Image i) { this.i = i; }
        public void paint(Graphics g) {
          g.drawImage(i, 0, 0, null);
        public Dimension getPreferredSize() {
          return new Dimension(i.getWidth(null), i.getHeight(null));
        public Dimension getMinimumSize() { return getPreferredSize(); }
    }

  • LCCS rtc Code Completion

    Hi,
    I have downloaded version 1.2.5 of the LCCS SDK. I am using Flash Builder 4 (4.1 SDK) and attempting to create a spark LCCS application.
    I have copied script into the project and can get the tutorial web app to run okay. However I am not getting code generation when I type rtc specific components.
    I have added the Flash Player 10 swc and source in the project library.
    I am using the new xmlns:rtc="http://ns.adobe.com/rtc".
    I am missing something obvious, but can't see it.
    Anyone got any ideas why code completion is not working?
    Thanks,
    Niall

    Thanks Hironmay,
    Code hinting works fine for all Flex components (Halo and Spark). So starting off with any of the following worked before loading the LCCS swc and continue to work after loading the LCCS swc:
    <fx:
    <s:
    <vg(roup)
    <lab(el)
    In addition code hinting continues to work fine for other swc libraries that I use: Flexicious, AlivePDF, Yahoo Astra, etc.
    So, hinting is working for all other components, just not LCCS components. The following do not give hinting:
    <rtc
    <conn(ectSessionContainer)
    <aut(henticator)
    I don't think it is a FB4 issue, but I will post to the forum in case anyone has a similar issue.
    Thanks,
    Niall

  • Code completion user commands helplink

    Hello
    I am currently working on code completion for user commands in version 2012.  I have an XML file in which I have the descriptions for all the hover text and associated help links.  Everything is working correctly except for the help links.  They seem to be always looking to go to the diadem.chm help file.  I was wondering if there was any way to redirect where they point or am I missing something?  Thanks. 
    Ben

    Hi Carmen
    Actually I'm really not using an external program per se.  I guess I need to clarify what I am doing better.  Sorry about that.    
    Look at the help file for ScriptCmdRegister here for an example.  A shorter version without an example is spelled out below if you wish.  
    I am creating a VBS user command script containing classes of objects that I add using scriptcmdadd.  I am then registering the TLB file using scriptcmdregister resulting from compiling an ODL file.  After compilation, the ODL file is no longer needed.  I have a third/fourth file to go along with these which is an XML file that I got from a coworker.  The XML file contains the descriptions, helplinks, and datatypes that appear when code completion comes up, just as there is in DIAdem when you type View.ActiveSheet.etc.  
    However, you notice in DIAdem that there is a help link, which is what I cannot get working because when I insert anything into the xml file where the help link would go, it throws an error because it is trying to point to the DIAdem.chm help file no matter what.  This is what I wish to redirect so it can go to my own chm/html help file, if it is possible or supported that is.  Thanks
    Ben

  • Problem calling AS3 class's methods from Flex Project

    Sorry if this is a stupid question, but after 2 days of Web
    searching and 2 books give up; I am a Java and c# programmer and am
    having problems calling AS3 classes (in packages) from Flex Builder
    2 Flex Projects; the AS3 classes work great as Flex Builder "AS3
    Projects", but when I try to use the classes in a Flex Builder
    "Flex Project" I am able to see and set their properties, but
    cannot see (through "code completion") their methods (unless the
    class extends another AS3 class; and in that case I can see the
    base class's methods). Here is the code:
    AS3 Example Class:
    package asText {
    public class CheckWord {
    public var strData:String;
    public var strAProperty:String;
    public var intAProperty:int;
    // Constructor
    public function CheckWord() {
    public function TestMethod():void {
    trace("test...");
    public function WordLength():int {
    var intLength:int = 0;
    trace(strData);
    intLength = strData.length;
    return intLength;
    } // From Method WordLength
    } // From Class CheckWord
    } // From Package asText
    The MXML code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute"
    width="442" height="488" horizontalAlign="center"
    verticalAlign="middle"
    backgroundGradientColors="[#c0c0c0, #c0c0c0]"
    xmlns:asTheText="asText.*"
    >
    <asTheText:CheckWord strData="Test words" />
    <mx:Panel title="Welcome to ........" width="337"
    height="393" horizontalAlign="center" verticalAlign="middle"
    layout="absolute" y="15" x="50">
    <mx:Text text="First Name" enabled="true" width="68"
    fontWeight="bold" x="27.25" y="36"/>
    <mx:TextInput id="txtFName" x="112.25" y="34"/>
    <mx:Text text="Last Name" enabled="true" width="68"
    fontWeight="bold" x="27.25" y="66"/>
    <mx:TextInput x="112.25" y="64" id="txtLName"/>
    <mx:Text text="email address" enabled="true" width="87"
    fontWeight="bold" x="17.25" y="96"/>
    <mx:TextInput width="189" id="txtEmail" left="112.25"
    top="94"/>
    <mx:Button id="butSubmit" label="Submit" x="95" y="194"
    click="asTheText:TestMethod();"/>
    ..............and so on ............
    All this does is give me an 1180 error:
    1180: Call to a possibly undefined method TestMethod.
    flexConveyMovie1.mxml

    Thanks, I have it working; I was not assigning an "ID" to the
    "MXML use of the class" (whatever the formal name for that is;
    like: <asTheText:CheckWord id="MyText" strData="The Data" />
    ) and then I was not referencing that ID in what I am refering to
    as calling methods for the Class; like:
    <mx:Button id="butTest" label="Test Function" x="39"
    y="208" click="MyText.TestMethod();"/>
    Also, I did some tests on this, and I am shocked that
    apparently neither of these two "uses"(?) of a custom AS3 class
    actually "call" the Class's constructor. Does that make sense or is
    that the result of how I am structuring this?
    Phil

  • Code completion particular not working

    Hello,
    in my program there are serveral internal classes. Each class has its own include file. Code completion seems not working for internal classes in other include files.
    example:
    lcl_class1 in includec01   (first included)
         class-methods static1_1
         methods method1_1
    lcl_class2 in includec02   (second included)
         class-methods static1_1
         methods method1_1
    problem:
    While development in lcl_class2 there are no code completion for lcl_class1.
    No code completation for lcl_class1=>static1_1
    but if you declarate "data lo_myclass type ref to lcl_class1." code completion is working fine for public member methods and attributes in the same file.
    In Functiongroups all working fine.
    Best Regards
    Markus Bauernschmitt
    Und da hier eh die meisten deutschsprachig sind und mein Englisch grausam ist, nachfolgend die Erklärung nochmal auf deutsch.... ;-)
    In meinen Programmen findet die Codevervollständigung keine interne Klassen aus vorangegangenen include Dateien. Dadurch werden weder die Klassen selbst noch die statischen Methoden angezeigt. Gebe ich eine statische Methode ein und möchte die Hilfe anzeigen (F2) erscheint die Fehlermeldung "Codeinformationen sind nicht verfügbar".
    Dieses Problem tritt nicht auf, falls die Deklaration einer Variablen in der gleichen Include Datei erfolgt.
    Deklaration einer Variablen in der aktuellen Include Datei -> Dokumentation der öffentlichen (nicht statische) Methoden und Attribute funktioniert
    Zugriff auf öffentliche (statische oder nicht statische) Methoden und Attribute von globalen Variablen (deklariert in einer anderen Datei) funktioniert dagegen nicht.
    Es sind nur anscheinend nur Programme betroffen. Bei Funktionsgruppen (getestet am Beispiel "ldemo_cr_car_rental_screen") trat der Fehler nicht auf.

    Hi Dominik,
    thank you for your answer. The internal classes are already simple and lightweight. In my understanding of OO I keep classes private as possible and so I create this specific "one program helper classes" in the smallest reasonable scope.
    However, this is a architektur decission. But the pivotal question is: Why working this kind of code completion in function groups but not in programs.
    Some additional information.
    - Code completion working in "START-OF-SELECTION."
    - In Functiongroup includes (Testcase lcl_class1 show as public type and lcl_class2 show as local public class.
    Best regards
    Markus

  • Kdevelop and code completion

    hi all, i'm trying to resolve a trouble... i use kdevelop for write c++ code and i cannot use code completion... in kdevelop faq there's wrote that i can activate code completion in the projects options' section named "Specific c++", i ativate it but i cannot use always the code completion. i've read that i must disable the abbreviation part, and i disable it, (in plugin settings) and i try to add the persistent class store on my projects dir, but i cannot use code completion. so, what can i do? anyone can help me?
    thanks

    i'm sorry, now i can use code completion, i must activate the c++ parser.
    thanks

  • Flash builder 4.5 code completion doesn't show public function

    Hi,
    I am migrating from flex3 to flash builder 4.5 and it shows a question mark at one of my lines.
    No errors, and the code works fine when i run it.. only there is no code completion in flash builder.
    My code:
    //i use a custom component like this:
    <generalmenu:menu x="59" y="58" id="mymenu"/>
    //this component loads its functions from a separate as(no class just simple as code) file (so i don't have all code in the file with visual components)
    <fx:Script source="menusource.as"/>
    //inside menusource.as there is a function that takes care of closing my app.
    public function closeprogram():void
         //closing window goes here
    my problem..
    when i type inside my function at application level:
    mymenu.closeprogram();
    i get a question mark in front of it: Call to a possibly undefined method closeprogram
    code completion doesn't recognize my public functions inside the mymenu component, it does see mymenu but when i hit .(dot) it doesn't give me a list of functions.
    How can i get code completion to work? Are there changes in the way you call as files in flash builder 4.5? Please some help.. code completion makes life much better.

    I found why the nasty behavior above was happening ::- D.
    I usually design my classes in Enterprise Architect. Since this is a rather large project, started from of about 30 classes, I did the entire architecture in EA, then, generated the code.
    But, EA has poor AS3 support. And as a consequence, it has a few issues, such as the way it generates CONSTRUCTORS:
    public function G3Widget (name: String, parent: IG3Parent = null): void
    Spot the mistake ::- D.

  • [svn:fx-trunk] 14139: Fix for Player classes not code hinting  to framework FB projects.

    Revision: 14139
    Revision: 14139
    Author:   [email protected]
    Date:     2010-02-11 16:36:39 -0800 (Thu, 11 Feb 2010)
    Log Message:
    Fix for Player classes not code hinting  to framework FB projects. Changed all the $ tokens to use $ instead. While the compiler understands $, Flash Builder's code model does not.
    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/airspark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/flex/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/osmf/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/rpc/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/spark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.actionScriptProperties

  • 30EA4 : Code Completion issues

    1.
    Code Completion got better in 30EA4, still I need to do 3 retries with 5 second gap in between. (both explicit and implicit)
    See log below.
    And where is preference for code completion log and deadline thresholds, Vadim promised
    30EA2 : Code Completion not working . Are they in 30EA4 ?
    2.
    Another issue in Code Completion is when I continue typing code completion list just get cleared then get repopulated with filtered value. We need to see new list with filtered value, but I wish the list not get cleared completely, instead just hide those items in the list not matching new filter.
    3.
    I want the Code Completion to fill in at lower case, do I have option to do that?
    (or you can also automatically decide case of Code Completion, if I started typing with lowercase fill in with lower case)
    Vadim asked for output log, here is the one I got, first one explicit call using ctrl+space, second on implicit call
    Exception in thread "InsightThread" java.lang.NullPointerException
    at oracle.dbtools.raptor.insight.CompletionInsight.colNamesMatch(CompletionInsight.java:1189)
    at oracle.dbtools.raptor.insight.CompletionInsight.joinConditions(CompletionInsight.java:1170)
    at oracle.dbtools.raptor.insight.CompletionInsight.complete(CompletionInsight.java:809)
    at oracle.dbtools.raptor.insight.CompletionInsight$InsightThread.run(CompletionInsight.java:399)
    Exception in thread "InsightThread" java.lang.NullPointerException
    at oracle.dbtools.raptor.insight.CompletionInsight.colNamesMatch(CompletionInsight.java:1189)
    at oracle.dbtools.raptor.insight.CompletionInsight.joinConditions(CompletionInsight.java:1170)
    at oracle.dbtools.raptor.insight.CompletionInsight.complete(CompletionInsight.java:809)
    at oracle.dbtools.raptor.insight.CompletionInsight$InsightThread.run(CompletionInsight.java:399)

    Hi,
    When I press ctrl+space after typing partial name of table (while doing select * from X___) the context menu appears, and when I select select the table name (by hitting Enter key) it doesnt replace what I had typed with what I have selected form list.
    e.g.
    If table name is customer
    select * from cust (hit ctrl+space here and select 'customer' from list)
    Now the statement appears like this
    select * from custcustomer
    Where I expect is code completion should replace what I have typed once I select the right name from list.
    Am I missing some basic settings here
    My SQL Developer version is 3.0.04
    Regards,
    Bhupendra

  • Code completion for fl.*  group?

    hey,
    i'm not getting code completion for tweens or anything like
    that. when i type 'import fl.' i also don't get any completion.
    what am i missing? how do i fix it?
    thnx for the help.
    lou

    quote:
    Originally posted by:
    Greg Lafrance
    See this post for some possible insight:
    http://www.kirupa.com/forum/archive/index.php/t-268080.html
    this was helpful, thanks!
    lou

Maybe you are looking for

  • Systems no longer exist on Report A Product Error page

    When I go to SAP Support Portal and click "Report a Product Error" I am prompted to choose the system I am submitting a request ticket for.  When I use either search feature, my system (SBOP formerly known as EPM-PLA in the SAP universe) is not avail

  • Problem Playing AVI Files From Adobe Classroom In A Book

    Hiya, I just bought the Adobe Classroom In A Book for Premiere Pro CS4.  However, when I try to run Lesson 1, Premiere Pro appears to be having a cow with the AVI file needed for the project.  It tells me that the codec is missing or unavailable.  I'

  • Java mapping help please

    Hi all, I need help with java code please. My source is a csv file and target is multiple idocs. Source file structure is as follows: Header (field 1, field 2, ........ field 10) Item 1a (field 1, field 2, field 3, .........    field 180) Item 1b (fi

  • No AVIVO in 10.1 in XP with Radeon 4670

    Dual booting XP sp3 and Win 7. Flash 10.1 in both. Radeon 4670. When playing a site such as HULU in Win 7 I can adjust the picture using the Video section of my ATI Catalyst controls. I can use dynamic contrast, sharpening, etc. But in XP nothing wor

  • Item line data not flowing into SAP Adobe form layout

    Hello Gurus, I am currently working on adobe form layout for a sales document in SAP, i have created a master page as well as a couple of pages in the design view. Data at the header level are working properly, but the item data are not flowing into