[svn:fx-trunk] 7120: Switched to using "use namespace mx_internal" rather than using explicit namespace scoping (e.g.,  mx_internal::foo) in RichEditableText and its related classes.

Revision: 7120
Author:   [email protected]
Date:     2009-05-19 23:46:06 -0700 (Tue, 19 May 2009)
Log Message:
Switched to using "use namespace mx_internal" rather than using explicit namespace scoping (e.g.,  mx_internal::foo) in RichEditableText and its related classes.
Removed stale import statements.
QE Notes: None
Doc Notes: None
Bugs: None
Reviewer: Carol
Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/TextArea.as
    flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/TextBase.as
    flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/RichEditableText.as
    flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/supportClasses/RichEditable TextContainerManager.as

I'm more of a 1.3 chick myself, but the words are the same just in a different language.
1. Is Tomcat running?
2. Have you configured the ajp13 connector on 8009 in Tomcat? (Should it be ajp13 for Apache 2.0? - I really must upgrade)

Similar Messages

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • Why does my iphone 4s gets really hot even though im not using it, battery drain's 2% every 5 minutes.. and its just in my pocket,. what will i do?

    why does my iphone 4s gets really hot even though im not using it, battery drain's 2% every 5 minutes.. and its just in my pocket,. what will i do?

    some thing is runnng in the back ground. Or your email is struck. Deleted all emails and reboot phone and add them one by one. Or your sim cards has problem. Replace sim card. If nothing works drain battery then recharge battery to 100% full charge.

  • [svn:bz-trunk] 18053: BLZ-571: Use of wrong operator in string comparison in flex.messaging.VersionInfo. java

    Revision: 18053
    Revision: 18053
    Author:   [email protected]
    Date:     2010-10-07 03:27:37 -0700 (Thu, 07 Oct 2010)
    Log Message:
    BLZ-571: Use of wrong operator in string comparison in flex.messaging.VersionInfo.java
    Updated the code to use the right operator.
    Check-in Tests: PASS
    QA: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-571
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/VersionInfo.java

  • [svn:fx-trunk] 10211: Fix measurement using TLFTextField in RSLs

    Revision: 10211
    Author:   [email protected]
    Date:     2009-09-12 17:56:04 -0700 (Sat, 12 Sep 2009)
    Log Message:
    Fix measurement using TLFTextField in RSLs
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-22653
    Reviewer: Gordon
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/modules/fonts was run, but all tests seem to be excluded
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22653
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/TextFieldFactory.as

    This bug figures out also when creating a custom spark ComboBox, then trying to programatically update the userProposedSelectedIndex property. The proposed selected index is selected, but does not apply the same skin as when mouse is on rollover or item is selected due to up and down keys.
    The issue seems like updating the status of the item renderer to rollover or selected to get the same skin applied.
    Please could you attach DropDow nList.as that you edited ?
    Thank you so much.

  • [svn:bz-trunk] 18087: Update to use player 10.2

    Revision: 18087
    Revision: 18087
    Author:   [email protected]
    Date:     2010-10-08 08:52:13 -0700 (Fri, 08 Oct 2010)
    Log Message:
    Update to use player 10.2
    Modified Paths:
        blazeds/trunk/build.properties

    For those running into problems with Internet Explorer 9 and Flash Player 10.3, we have just released a test version that we're hoping resolves the problems you're encountering.
    "A pre-release Flash Player to address this issue is now available for testing. We are very interested in hearing you feedback concerning this possible fix. If you should encounter any new issues please report these through our Adobe Flash Player Bug Management System. Please review the instructions on this page for details on generating the information we’ll need for further investigation.
    Download Flash Player 10.3.181.15 Update
    Important: Please note that this build is for testing and feedback purposes only and is not a full Flash Player release. By installing this binary you accept the terms of the Adobe Software License Agreement."
    After installing the new version, please re-enable your hardware acceleration in IE9 if you had previously disabled it.  We'd like to know if this solves the problem for you, after trying it out please let us know.
    Thanks,
    Chris

  • [svn:fx-trunk] 11851: Halo label using FTETextField was incorrectly truncating because the textWidth incorrectly included the 2 pixels of PADDING_LEFT .

    Revision: 11851
    Revision: 11851
    Author:   [email protected]
    Date:     2009-11-16 10:19:38 -0800 (Mon, 16 Nov 2009)
    Log Message:
    Halo label using FTETextField was incorrectly truncating because the textWidth incorrectly included the 2 pixels of PADDING_LEFT.  Correct textWidth which should be the max textLine.textWidth.  Also need to maintain the width to use to clip the text which is max x + textWidth since the text could be indented and/or aligned and all has left padding of 2 pixels.
    QE notes: 80 FTETextField failures.  bitmaps need updating.  Peter knows this is coming
    Doc notes:
    Bugs: SDK-24176
    Reviewer: Gordon
    Tests run: checkintests, FTETextField
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24176
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/mx/core/FTETextField.as

    You have used elements like header, footer, footer1 and nav without using the correct DOCTYPE declaration. Replace the first line of your code with
    <!doctype html>
    Also have a look here for other problems http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fhome.surewest.net%2Fstorytales%2F test%2Fforposting.html
    After the above has been fixed, please come back here to fix the remaining problem(s)
    Gramps

  • [svn:fx-trunk] 6201: Introduces a new method to the IItemRendererOwner contract, updateRendererInformation(), which handles the setting of a renderer' s data and data-dependant properties.

    Revision: 6201
    Author:   [email protected]
    Date:     2009-04-22 14:15:50 -0700 (Wed, 22 Apr 2009)
    Log Message:

    Well the answer depends on whether you want to use the DefaultTableModel or a custom TableModel. The key point to either solution is that you want to store all the data in the table model.
    1) Using the DefaultTableModel
    All the data from your Person object is added to the model. By default the table will create a column for each column of data added to the model. However, this doesn't mean that you need to display every column in the table. After creating the JTable you can simply do:
    table.getColumnModel().removeColumn(...);to remove the columns you don't have room to display. You can still access the values in the model by using:
    table.getModel().getValueAt(...);2) Create a custom TableModel
    You can keep all the data in your Person object and then write a custom model to access the data. Something like this example:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=610618
    Note: the example isn't complete as you still need methods to add each Person object or the entire List of Persons to the model.
    Again, you would need to remove the columns you don't want displayed.
    In either case you can then handle the tooltip by overriding the getTooltipText(...) method. Something like:
    public String getToolTipText( MouseEvent e )
         int row = rowAtPoint( e.getPoint() );
         int column = columnAtPoint( e.getPoint() );
         Object value = getValueAt(row, column);
         return value == null ? null : value.toString();
    }

  • [svn:fx-trunk] 5564: New mustella.swc with namespace changes.

    Revision: 5564
    Author: [email protected]
    Date: 2009-03-25 20:24:48 -0700 (Wed, 25 Mar 2009)
    Log Message:
    New mustella.swc with namespace changes.
    Modified Paths:
    flex/sdk/trunk/mustella/mustella.swc

  • [svn:fx-trunk] 5909: Examples updated to latest namespaces+Spark ( where applicable)

    Revision: 5909
    Author: [email protected]
    Date: 2009-04-03 07:53:58 -0700 (Fri, 03 Apr 2009)
    Log Message:
    Examples updated to latest namespaces+Spark (where applicable)
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/Accordion Example.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/DividedBo xExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/FormExamp le.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/GridLayou tExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/HBoxExamp le.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/HDividedB oxExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/SimpleApp licationControlBarExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/SimpleBox Example.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/SimpleCan vasExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/SimpleCon trolBarExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/SimplePan elExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/SimpleTit leWindowExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/TabNaviga torExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/TileLayou tExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/TitleWind owApp.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/VBoxExamp le.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/VDividedB oxExample.mxml
    flex/sdk/trunk/frameworks/projects/framework/asdoc/en_US/mx/containers/examples/ViewStack Example.mxml

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

  • Photoshop CS6 pentool reaction rate was slower than the first use of Photoshop CS6 pentool. I wonder the fundamental cause and solution rather than optimization.

    Photoshop CS6 pentool reaction rate was slower than the first use of Photoshop CS6 pentool. I wonder the fundamental cause and solution rather than optimization.

    I have no problem with CS6 Pen tool performance. Its instantaneous.  I'm using Windows 7 Pro and CS6 version 13.1.2. on a Dell workstation PC.
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • [svn:bz-trunk] 21394: bug fix for watson 2887837 Not getting duplicate session detected error when same flex client id is used from two different HTTP sessions in CRX .

    Revision: 21394
    Revision: 21394
    Author:   [email protected]
    Date:     2011-06-16 12:34:13 -0700 (Thu, 16 Jun 2011)
    Log Message:
    bug fix for watson 2887837 Not getting duplicate session detected error when same flex client id is used from two different HTTP sessions in CRX.
    get the sessions id before we invalidate the duplicate session.
    Checkintests pass
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/BaseHTTPEndpoint.java

    For our profect I think this issue was caused as follows:
    Believing that remoting was full asynchronous we fired a 2 or 3 remote calls to the server at the same time ( within the same function ) - usually when the users goes to a new section of the app.
    This seemed to trigger the duplicate http session error since according to http://blogs.adobe.com/lin/2011/05/duplication-session-error.html  two remote calls arriving before a session is created will cause 2 sessions to be created.
    Our current solution ( too early to say it works ) is to daisy chain the multiple calls together .
    Also there seemed to be an issue where mobile apps that never quit ( thanks Apple! )  caused the error when activated after a few hours.
    I guess the session expires on the server and the error above occurs on activation.
    So the mobile apps now ping the server with a remote call when activated after sleeping for more than one hour.
    All duplicate http errors are silently caught and reported.
    Fingers crossed we won't get any more!

  • [svn:fx-trunk] 13076: It turns out that embedded fonts don' t clip when you shrink the height of a TextField so we' ll use masks in that case

    Revision: 13076
    Revision: 13076
    Author:   [email protected]
    Date:     2009-12-17 14:12:18 -0800 (Thu, 17 Dec 2009)
    Log Message:
    It turns out that embedded fonts don't clip when you shrink the height of a TextField so we'll use masks in that case
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-24561
    Reviewer: Corey
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/components/DataGrid
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24561
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridBase .as

    Many of your points are totally legitimate.
    This one, however, is not:
    …To put it another way, the design of the site seems to be geared much more towards its regular users than those the site is supposedly trying to "help"…
    The design and management of the forums for more than five years have driven literally dozens of the most valuable contributors and "regulars" away from the forums—permanently.
    The only conclusion a prudent, reasonable person can draw from this state of affairs is that Adobe consciously and deliberately want to kill these forums by attrition—without a the PR hit they would otherwise take if they suddenly just shut them down.

  • [svn:fx-trunk] 10889: Add FTETextTests which check that a Label and NumericStepper configured to use FTEText have a textField and textInput , respectively, of type UIFTETextField and MXFTETextInput.

    Revision: 10889
    Author:   [email protected]
    Date:     2009-10-06 09:29:53 -0700 (Tue, 06 Oct 2009)
    Log Message:
    Add FTETextTests which check that a Label and NumericStepper configured to use FTEText have a textField and textInput, respectively, of type UIFTETextField and MXFTETextInput.  The components are configured via style properties rather than by theme which would require another version/compile of the BasicTests.swf.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Alex
    Tests run: basictests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/tests/basicTests/BasicTests-config.xml
        flex/sdk/trunk/frameworks/tests/basicTests/BasicTests.mxml
    Added Paths:
        flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/FTETextTestScript.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/halo/views/FTETextTests.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?

Maybe you are looking for

  • Problem with multiple threads accessing the same Image

    I'm trying to draw into one Image from multiple threads. It works fine for a while, but then suddenly, the image stops updating. Threads are still running but the image won't update. I'm using doublebuffering and threads are simply drawing counters i

  • User Exit: Saving data in Production Order Header Long Text

    Hi PP Gurus, Can any one let me know which user exit can be used to save some data in the Long Text of Production Order Header. We try PPCO0007, it works well on ECC, but my client's system version is 4.7, it does not work. In 4.7 version, is there a

  • Why does AE CS4 consume all my memory when running a preview?

    I have Windows Vista x64 with 4Gb of RAM but everytime i want to make a RAM PREVIEW the program does not release the memory in use. For example: I start with AE CS4 using 2gb of ram, then i make a preview and it reaches to 3gb of ram. If I continue m

  • Xp sp2 and clntrust

    Hi, we just got some new pc's with xp/sp2 on them and seem to be having lock-up problems with clntrust. Even if you disable the firewall, clntrust still hangs up. We are using client 4.9 with sp2 applied, nw5.1 sp7, bm3.5. Any ideas??? thanks, Bill

  • Help with how to convert a string to a number ??

    Hi All, I am having problem converting a string to number. Looks like my to_number function is not working. Help is very much appreciated. My query is below, and I know my problem is in my inner query. I am getting the following error: what am I doin