[svn] 4308: Now that ASdoc processes MXML files, add comments to RichTextEditor.mxml, DefaultListEffect.mxml, and DefaultTileListEffect.mxml files.

Revision: 4308
Author: [email protected]
Date: 2008-12-15 12:25:20 -0800 (Mon, 15 Dec 2008)
Log Message:
Now that ASdoc processes MXML files, add comments to RichTextEditor.mxml, DefaultListEffect.mxml, and DefaultTileListEffect.mxml files.
QE Notes: None
Doc Notes: None
Bugs: -
Modified Paths:
flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/RichTextEditor.mxml
flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/DefaultListEffect.mxml
flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/DefaultTileListEffect.mxml

I'm also having this problem. I'm using Flash Builder 4.6, AIR 3.4 and I've made a DLL (e.g. ExtensionDll.dll) which needs to call functions in another DLL (e.g. DllUsedByExtensionDll.dll) . I've made sure my ANE is working with the ExtensionDll.dll already, so there are no issues with my actionscript code or my ANE packaging or my DLL compilation. However, once I start calling functions from the other DLL, it starts throwing me Error #3500. Even if I call this function (e.g. abc()) in ExtensionDll.dll, but I never actually use the function from actionscript, and I call another function (e.g. def()) from actionscript, the Error #3500 still appears, so it does not seem to depened on the whether the code is used or not.
It's similar to this problem.
http://stackoverflow.com/questions/9823504/how-to-use-external-dll-in-air-native-extension
Does anyone have a solution or at least a way to debug this?

Similar Messages

  • HT1386 I originally added music to my iphone under someone elses itunes account, now that I am trying to add under my own id, it is not showing on my phone...how can I fix this?

    What do I need to do to get my music from my itunes library onto my phone? I originally added music from a diffnerent itues account, and now that I am trying to add from my own it will not transfer...however, in the bar on the bottom of itunes it shows that it is on my phone...but it does not display anywhere else and I cannot find it in my phone. Do I need to connect to the original itunes account and delete that music in order for my library to show?

    As you connect your ipod to iTunes, an option in the upper right of the screen will appear. When you click this, it will show the different menu for your ipod.

  • Firefox keeps crashing now that I have Windows 8. I have updatd my Adobe Flash and am not sure what the problem is. Very frustrating.

    Firefox keeps crashing now that I have Windows 8. I have updatd my Adobe Flash and am not sure what the problem is. Very frustrating.

    Hi may you please ask a new question, sclutterd, it gives us troubleshooting info. Nightly is pretty unstable anyways.
    * https://support.mozilla.org/en-US/questions/new

  • HT4623 I have never had a passcode to lock  my iPad. Now that I have updated it with IOS7 it is asking for one and is locked. How do I unlock this without having to reset the whole thing through iTunes????

    I have never had a passcode to lock  my iPad. Now that I have updated it with IOS7 it is asking for one and is locked. How do I unlock this without having to reset the whole thing through iTunes????

    Unfortunately, if the iPad is insisting that you use a passcode, there is no way around it other than to restore the device using iTunes on a computer, or by erasing it in iCloud.com via Find My iPhone.
    You could try resetting the iPad and cross your fingers and hope this is just a blip on the radar....hold down on the sleep and home buttons at the same time for about 10 seconds until the Apple logo appears on the screen.

  • I plugged my phone into my friends MacBook over the summer and now that I try to download an app his apple Id shows up and asks for his password. How do I change this?

    I plugged my phone into my friends MacBook over the summer and now that I try to download an app his apple Id shows up and asks for his password. How do I change this?

    Go to settings >> iTunes and app stores. Tap on the appleid and change it yours. If you had downloaded any apps using your friend's id then you will need his/her password to update those apps. But you should be able to download any new apps using your id once you've have the change in settings.

  • I have lost all of my keynote templates now that I have upgraded to yosemite.  How can I use Keynotes and pages etc on my computer and not on the cloud.

    I have lost all of my previously created keynote templates now that I have upgraded to yosemite. How can I use Keynotes and pages etc on my computer and not on the cloud.

    Welcome to Apple Support Communities
    All iWork apps allow you to save your documents on your computer. You will be able to choose the destination when you want to save a document.
    You can also disable iCloud for some apps. To do that, go to System Preferences -> iCloud, press "Options" next to "iCloud Drive" and disable the apps you want to.
    If you have lost your old documents, you should have a backup that you made before upgrading to OS X Yosemite, so you only have to restore it.

  • [svn] 4222: Now that Shader is a first class Embed, we' ve modified the interface for ShaderFilter to accept a Shader instance directly (or Class representing a Shader Embed).

    Revision: 4222
    Author: [email protected]
    Date: 2008-12-03 10:37:15 -0800 (Wed, 03 Dec 2008)
    Log Message:
    Now that Shader is a first class Embed, we've modified the interface for ShaderFilter to accept a Shader instance directly (or Class representing a Shader Embed).
    Reviewer: Pete Farland
    QE Notes: Mustella tests require updating.
    Doc Notes: ASDocs have been update, just sanity check.
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/effectClasses/FxAnimateFilterInst ance.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/ShaderFilter.as

    So this may be a kludge, but eventually I got it. In this case the appDelegate is waking up NIB's and subsequently causes the 'viewDidLoad' method to be called in the Object that manages the NIB.
    The problem was how to get 2 objects that had each been woken by the appDelegate to be aware of each other and be able to use methods in the other.
    In the appDelegate
    @class AViewControllerObject;
    @class A2ndVCObject;
    @interface AppDelegate
    AViewControllerObject * aViewControllerObject
    A2ndVCObject * a2ndVCObject;
    @property (
    @property (
    @end
    @implementation AppDelegate
    @synthesize aViewControllerObject;
    @synthesize a2ndVCObject;
    //instantiate the NIB's and place in the 'controllers' array
    aViewControllerObject = [[AViewControllerObject alloc]
    initWithNibName:@"aViewControllerNIB" bundle: nil];
    [controllers addObject: aViewControllerObject];
    a2ndVCObject = [[A2ndVCObject alloc]
    initWithNibName:@"a2ndVCNIB" bundle: nil];
    [controllers addObject: a2ndVCObject];
    So to make the 1st ViewControl Object aware of the 2nd viewControl Object, make the following method call from the appDelegate:
    [aViewControllerObject assignA2ndVCPointer: (A2ndVCObject *) a2ndVCObject];
    ....and in aViewControllerObject:
    @class A2ndVCObject;
    @interface AViewControllerObject
    A2ndVCObject * a2ndVCObject;
    @property (
    @end
    @implementation AViewControllerObject
    @synthesize a2ndVCObject;
    - (void) assignA2ndVCPointer: (A2ndVCObject *) pointer{
    self.a2ndVCObject = pointer;
    So this may seem bogus to 'old hands' but its the only way I could figure it out.
    If anyone has a better way, I'd love to hear it!!
    -- thanks for listening

  • Now that flashplayer is not compatible with Mac how do I access video and TV etc

    Is there an alternative to flash player now that it cannot be used with Mac - I am unable to access live TV or any moving images eg video clips. iOS 10.6.8

    Who told you that? Adobe has older versions of Flash for your computer. Or you can try upgrading your computer's version of OS X in order to use a more recent version of Flash.
    Adobe Flash Player - Downloads

  • [svn:fx-trunk] 12625: asdoc updates for l10n; add examples

    Revision: 12625
    Revision: 12625
    Author:   [email protected]
    Date:     2009-12-07 13:50:25 -0800 (Mon, 07 Dec 2009)
    Log Message:
    asdoc updates for l10n; add examples
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/filters/BevelFilter.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/filters/BlurFilter.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/filters/ColorMatrixFilter.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/filters/ConvolutionFilter.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/filters/DropShadowFilter.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/filters/GlowFilter.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/filters/GradientBevelFilter.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/filters/GradientFilter.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/filters/GradientGlowFilter.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/filters/ShaderFilter.as

  • Now that I'm a paid up supporter Maybe you will fix Firefox and return "Close File" to File on the menu toolbar.

    I just degraded from Firefox 3.6 to 9.0.1 and found that one of the most useful tools is missing. On the Menu toolbar under File, "Close File" has been eliminated. Why? Why do I have to close the site I was looking at and go back to my Firefox home page and start all over? Why was "Close File" eliminated? It was one of the most useful tools in Firefox. I'm hoping I haven't gotten rid of the CD that has 3.6 install on it so I can upgrade to a great version of Firefox.
    Bob -
    ''[Personal information removed by moderator. Please read [[Forum and chat rules and guidelines]], thanks.]''

    Some menu entries in the main menu bar are hidden if you use the mouse and only appear if you use the keyboard to open the menu (Bug 626825).
    You can see the difference if you use Alt+F to open the File menu or other menus like the Edit menu (Alt+E) and Bookmarks menu (Alt+B) and compare that to what you see if you use the mouse to open the menu after you have made the menu bar visible by tapping Alt or by pressing F10.
    Add code to userChrome.css below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    /* Always show menu entries with class="show-only-for-keyboard" */
    #navigator-toolbox menuitem[class="show-only-for-keyboard"]:not([hidden="true"]){ display:-moz-box !important; }
    </nowiki></pre>

  • I'm trying to merge (unify) my Aperture library with my iphoto library and have doen the merge and consolidate functions in Aperture.  I have found that this process increased my Aperture library form 30 to 39 gigs and duplicated many photos in the proces

    I've just merged my Aperture and iphoto libraries and have found that my combined new Aperture library has grown from about 30 gigs (the total size of the Aperture and iphoto libbraries prior to merging) to 40 gigs.  Also, in reviewing photos in the Aperture browser I find that photos appaer as duplicated, one photo with no tag (the original) followed by the same photo with a small tag (suggesting edits).  HAs the merge process caused an unintended increase in library size? My initial reason do consolidate the libraries was to eliminate the "referenced" portion fo the Aperture library that refernced the iphoto originals. Any thoughts as to how I can get one consolidated non-referenced combined libray inside Aperture with no duplicates.  I run a Time Capsule and can access backups of the original Aperture and Iphoto libraries if I need to repeat the process. Thanks for any help.  Jim.

    My initial reason do consolidate the libraries was to eliminate the "referenced" portion fo the Aperture library that refernced the iphoto originals
    One for the Consolidate Masters command.
    By importing the Library you brought over everything, lock stock and barrell, and your Aperture library still points to those referenced masters in the iPhoto Library.
    Regards
    TD

  • I created a project using iMovie and now that I am trying to make changes it is only play music and not video. How can this be fixed?

    I created a new project using iMovie. I was trying to make changes and when I went to play it back I only get music and no pictures/video. What can be done to fix this? I don't want to loose the whole project.

    There are various causes for this error, see [[Firefox is already running but is not responding]] for details.

  • Time machine: now that I've upgraded to Lion, do I keep the backups or trash them?

    Hi,
    I wanted to get a sense on what to do with Time Machine now that I've upgrated to Lion.  I just opened Time Machine and while the bar on the right seems to know there is data older from the date the back ups started with Lion, it doesn't seem to be able to open them.  Is there a reason to keep the old back ups?  Are you all deleing them or keeping the Time Machine backups from Snow Leopard and Leopard? 
    Thanks,

    you would want to keep them because if something happens where you need to install snow leopard back onto your computer all your files backed up in lion will not be savageable so i would keep it unless you desperately need the space, although hard drives are dirt cheap nowadays, you can find a tb for around 60-80 bucks.

  • HT1212 okay so I had got my iphone taken away by my parents so i put a new passcode on it and now that i have it back i cant remember it and i have disabled it and now that im trying to erase the data i cant because my iphone is offline how do i fix this?

    So a while back i had got my iphone taken away and now that i have it back i cant remember the passcode and have disabled it now that im trying to sync with itunes for the first time ever and im trying to erase the iphone i am not able to because my iphone is off line and there no way for me to get in turn the wifi on because im locked out.PLEASE HELP ME

    Ok, so just put into DFU Mode and connect it to your computer. Open Itunes an it will say that you need to restore. Click ok then follow the instructions.

  • I can't get search now that i've upgraded software

    i can't get search now that i've upgraded software for my n95 does anyone know why and /or what i can do to rectify it?
    thanks eebbee

    Call your service provider and tell them you updated the phone's software. They will send an service message which has your connection settings and you will prompted to save.
    Or you can go to Tools > wizard > Start. It will configure your phone saying defining "operator settings" wait for it to finish
    and exit
    If my post has helped you please click the white star on the right

Maybe you are looking for