[svn:bz-4.0.0_fixes] 20651: Some MBean tests needed flex.management. jmx stuff in the allow classes list for the class deserialization validator so adding it in on BlazeDS 4 .0.0_fixes.

Revision: 20651
Revision: 20651
Author:   [email protected]
Date:     2011-03-07 12:21:11 -0800 (Mon, 07 Mar 2011)
Log Message:
Some MBean tests needed flex.management.jmx stuff in the allow classes list for the class deserialization validator so adding it in on BlazeDS 4.0.0_fixes.
Modified Paths:
    blazeds/branches/4.0.0_fixes/qa/apps/qa-regress/WEB-INF/flex/services-config.mods.validat ors.xml

Thank you very much!
I cant believe this little comment has been so helpful!
But yes it is:
I explain, despite my efforts to find, googled it, forums, faqs, etc...
no where it mentionned the manifest.fm file is... INSIDE the .jar!
Your comment "a zip" made me attempt to open it with winrar, and I found a manifest.fm file inside!
So far I was editing the one at the "source" of my project and rebuilding it with netbeans.
I am going to try that now.
Actually.... :( no its mentionning my main class!
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.7.0
Created-By: 10.0-b19 (Sun Microsystems Inc.)
Main-class: courseworkjava3d.Simple3D
Class-Path:
X-COMMENT: Main-Class will be added automatically by buildWell I have no problems uploading you the .jar, it is for a coursework it is not a private project or whatever:
http://www.uploading.com/files/CM2LKWYU/BetaCourseworkJava3d_Final.jar.html
Oh and I felt on your comment "dont ask us" as if I was suppose to know... i'm a beginner, I did not know that! And I tried to give you so many infos so you dont lose your time if you want to help, especially as after my own research I found many, many results for this "main class" and I tried a few solutions!
Edited by: CupofTea on Apr 13, 2008 3:28 AM

Similar Messages

  • [svn:bz-trunk] 20650: Some MBean tests needed flex.management. jmx stuff in the allow classes list for the class deserialization validator so adding it in on BlazeDS trunk .

    Revision: 20650
    Revision: 20650
    Author:   [email protected]
    Date:     2011-03-07 12:20:03 -0800 (Mon, 07 Mar 2011)
    Log Message:
    Some MBean tests needed flex.management.jmx stuff in the allow classes list for the class deserialization validator so adding it in on BlazeDS trunk.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/WEB-INF/flex/services-config.mods.validators.xml

    Thank you very much!
    I cant believe this little comment has been so helpful!
    But yes it is:
    I explain, despite my efforts to find, googled it, forums, faqs, etc...
    no where it mentionned the manifest.fm file is... INSIDE the .jar!
    Your comment "a zip" made me attempt to open it with winrar, and I found a manifest.fm file inside!
    So far I was editing the one at the "source" of my project and rebuilding it with netbeans.
    I am going to try that now.
    Actually.... :( no its mentionning my main class!
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 10.0-b19 (Sun Microsystems Inc.)
    Main-class: courseworkjava3d.Simple3D
    Class-Path:
    X-COMMENT: Main-Class will be added automatically by buildWell I have no problems uploading you the .jar, it is for a coursework it is not a private project or whatever:
    http://www.uploading.com/files/CM2LKWYU/BetaCourseworkJava3d_Final.jar.html
    Oh and I felt on your comment "dont ask us" as if I was suppose to know... i'm a beginner, I did not know that! And I tried to give you so many infos so you dont lose your time if you want to help, especially as after my own research I found many, many results for this "main class" and I tried a few solutions!
    Edited by: CupofTea on Apr 13, 2008 3:28 AM

  • [svn] 3048: Always map urls through the rootURL property, even for the non-proxy case.

    Revision: 3048
    Author: [email protected]
    Date: 2008-08-29 15:40:17 -0700 (Fri, 29 Aug 2008)
    Log Message:
    Always map urls through the rootURL property, even for the non-proxy case. This might
    change the behavior slightly if you set rootURL on HTTPService for the non-proxy case
    as that would have been ignored in the current code path but it seem less consistent.
    If rootURL is not set, it defaults to the swf's URL which should give the same relative
    URL semantics we get today by default when rootURL is not set.
    blazeDS checkintests pass
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/AbstractOperation.as

    Of the second and third scripts, the latter could perhaps be deemed the "most secure"; however, it might block more than you want. If you really want to use one of those, then I'd suggest using the second script. Otherwise, I'd recommend that you take a look here. (I only slightly examined the first script.... I do not understand the language of the comments, and I'm no iptables whiz. )
    Also, note that you don't have to use an actual script to set up the rules; rather, you can save the rules you want to a file that will be read by iptables automatically (/etc/iptables/iptables.rules). Here's a modified version of mine:
    # /etc/iptables/iptables.rules
    # These rules (and the commented instructions) derived from:
    # http://ubuntuforums.org/showthread.php?t=159661
    *nat
    :PREROUTING ACCEPT [163:50538]
    :POSTROUTING ACCEPT [40:2451]
    :OUTPUT ACCEPT [40:2451]
    COMMIT
    *filter
    :INPUT ACCEPT [0:0]
    :FORWARD ACCEPT [0:0]
    :OUTPUT ACCEPT [0:0]
    :FIREWALL - [0:0]
    :TRUSTED - [0:0]
    -A INPUT -j FIREWALL
    -A FORWARD -j DROP
    -A FIREWALL -m state --state RELATED,ESTABLISHED -j ACCEPT
    -A FIREWALL -i lo -j ACCEPT
    -A FIREWALL -j TRUSTED
    -A FIREWALL -j DROP
    # put your own exceptions here, like so (replacing <tcp/udp> with either "tcp" or
    # "udp" -- minus the quotes -- and <port number> with the port you'd like to open):
    # -A TRUSTED -p <tcp/udp> -m <tcp/udp> --dport <port number> -j ACCEPT
    COMMIT
    Of course, there are benefits to keeping the rules in a script. For instance, you could then easily set the default iptables rules, allow all traffic, etc. Plus, some firewall-related things (such as the various echo commands in the scripts you provided) cannot (to my knowledge) be done by iptables alone.
    If you already have a script that sets up the rules you would like to use, you can save yourself the hassle of creating a rules file by following the directions outlined here.
    Last edited by ssjlegendx (2008-08-06 20:17:00)

  • [svn] 1053: Basic and custom security-constraint samples were added to the team app mainly for the doc team to have a reference .

    Revision: 1053
    Author: [email protected]
    Date: 2008-04-01 11:35:28 -0700 (Tue, 01 Apr 2008)
    Log Message:
    Basic and custom security-constraint samples were added to the team app mainly for the doc team to have a reference. The custom authentication sample uses the new ChannelSet.login and ChannelSet.logout methods.
    Modified Paths:
    blazeds/branches/3.0.x/apps/team/WEB-INF/flex/remoting-config.xml
    blazeds/branches/3.0.x/apps/team/WEB-INF/flex/services-config.xml
    Added Paths:
    blazeds/branches/3.0.x/apps/team/features/security-constraints/
    blazeds/branches/3.0.x/apps/team/features/security-constraints/README.txt
    blazeds/branches/3.0.x/apps/team/features/security-constraints/securityConstraint_Basic.m xml
    blazeds/branches/3.0.x/apps/team/features/security-constraints/securityConstraint_Custom. mxml
    Removed Paths:
    blazeds/branches/3.0.x/apps/team/features/remoting/remoting_AMF_SecurityConstraint_Basic. mxml

    Congrats to Carmelo!
     Windows Phone and Windows Store Apps Technical Guru - February 2015  
    Carmelo La Monica
    Windows Phone 8: control Nokia Maps (Part 3)
    JH: "Part 3 of the series how to work with the Nokia maps control. As the previous articles this one contains a lot of code snippets and some pictures. Good work!"
    Ed Price: "A great topic, a fantastic breakdown of sections with clear descriptions, and a nice mix of code formatting and helpful images! Another stellar article from Carmelo! Great job including the link back at the end to the portal
    article!"
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Hi, I have recently done some online updates and now I have to restart my mac each time for the stupid thing to recognise my internet settings. Any help gratefully accepted.

    Hi, I have recently done some online updates and now I have to restart my mac each time for the stupid thing to recognise my internet settings. Any help gratefully accepted.

    Please be specific about the updates.
    Were they Apple updates from Software Update or were they downloaded updates, including 3rd party updates from a website (Including Apple's)?

  • [svn:fx-trunk] 11625: The last few cleanups for the OSMF video player.

    Revision: 11625
    Author:   [email protected]
    Date:     2009-11-10 12:03:43 -0800 (Tue, 10 Nov 2009)
    Log Message:
    The last few cleanups for the OSMF video player.  Hooking up the videoObject property in VideoDisplay to return the flash.media.Video object.  Also, when pauseWhenHidden is set to false, we'll detach all the event listeners on the parents because they are no longer needed.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoDisplay.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as

    Hi Chris,
    thanks for your tip. I didn't get around to trying it, as I have just solved the problem:
    Unless I misunderstand how things are supposed to work, I think I also might have found a bug (or at a minimum an usability issue):
    When I talked about having relaxed all the local storage settings in my original post, I meant that in the System Preferences / Flash Player / Storage pane I had set "Allow sites to save information on this computer". I also had done some experimention around the "Ask me" and "Settings by Site" options - all without success. I had navigated to that pane by right-clicking on "Global Settings" from the non-working video players.
    However, just now I discovered the following: When I navigate to http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager03.htm l (the embedded Global Storage Settings Panel) I found that in fact "Allow third-party Flash content to store date on your computer" was disabled all along!
    So effectively, the System Preferences Pane and the Global Settings Manager were not in sync / had conflicting settings and it looks like the Global Settings Manager took precedence. When I enabled local storage in the Global settings manager, things started working immediately.
    This is extremely easily reproducable by the way: Just change some settings in the Global Settings Manager and then right click "Global Settings" within it and the Preference Pane coming up will be in conflict with the settings manager.
    (Even if this is somehow by design, its quite confusing)
    Hope this helps future readers with the same issue. Also, this is an issue in 11.3 Beta 2, so maybe your teams can still fix this for 11.3
    Thanks,
    Jens

  • HT201301 I see some iOS apps in the file sharing list for my iPad device but I do not see the same APP on the file sharing list of my other iOS device

    There are some iOS apps appear in the file sharing list  of my iPad that does not appear in my iPhone file sharing list. Why is that and why iBook App does not show on the sharing list of my iPad?

    The apps which show on the file sharing section on your iPad when connected to your computer's iTunes, you have exactly the same apps installed on your iPhone - they are not separate iPad and iPhone apps that you have installed on your iPad/iPhone, and only the iPad version supports file sharing ?
    For iBooks, that won't show, it doesn't support file sharing. You can add ibooks / epubs / PDFs to your computer's iTunes library (the iBooks app if you are using a Mac with OS X Mavericks on it) via File > Add To Library, and you sync them to a device via its Books tab :
    If you want to copy them off the device to your computer's iTunes (to the iBooks app on Mavericks) then File > Devices > Transfer Purchases will copy them over (that will copy PDFs and epubs from the iBooks app on your device, not just ibooks).

  • I am trying to download a trial of Photoshop onto my laptop, and it keeps telling me that they are experiencing some problems but it has been telling me this every time I try for the past week or so. I'm not entirely sure what to do, please help.

    I would like to edit some family photos, but I am unable to get any editing software, and I would really like to have at least adobe photoshop

    Make sure you have cookies enabled and clear your cache.  If it continues to fail try using a different browser.
    You might try Photoshop Elements also.
    PSE 13 Trial - http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements

  • [svn:osmf:] 13000: Adding the missing readme file for the captioning sample app.

    Revision: 13000
    Revision: 13000
    Author:   [email protected]
    Date:     2009-12-16 10:36:36 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Adding the missing readme file for the captioning sample app.
    Added Paths:
        osmf/trunk/apps/samples/plugins/CaptioningSample/readme.txt

    Carey,
    I have tried london1a1's workaround, and it has not made any difference.
    It seems that london1a1 suggests changing the Camera.h file in this location:
              Users/london1a1/Documents/DW_NAF/PhoneGapLib/PhoneGapLib/Classes/Camera.h
    Whereas you're saying to change the Camera.h file in this location:
              /Applications/Adobe Dreamweaver CS5.5/Configuration/NativeAppFramework/DWPhoneGap/iphone/PhoneGapLib/Classes/Camera.h
    I've tried changing the Camera.h file in both locations.  Neither has made a difference.

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

  • I downloaded some movies and the I-Tunes extra for the movies will not download

    I downloaded three movies on ITUNES and the ITUNES Extra for them specific movies will not download. I have the latst update version of ITUNES installed. I've hit the download button and it states "ITUNES extra has errors   please try again".
    Can anybody assist!

    Ok, so after like 4 days of going through all these different issues, I figured out that several programs weren't downloading, and it was an issue with my wireless connectivity messing up the digital signatures, so if you plug in your comp to the modem and delete your temp files, it should start to work!

  • [svn] 3159: fix to target the correct player in the external library path for the packaged build file

    Revision: 3159
    Author: [email protected]
    Date: 2008-09-09 12:53:37 -0700 (Tue, 09 Sep 2008)
    Log Message:
    fix to target the correct player in the external library path for the packaged build file
    Modified Paths:
    flex/sdk/trunk/frameworks/build_framework.xml

    Hi Gaurang,
    Were you able to resolve your issue?
    Hope the following links help:
    /message/7579461#7579461 [original link is broken]
    Re: Required JAR files:
    Regards,
    Dao

  • Psu calculator and some load test

    while reading a thread I found this psu calculator link on a moderators sig. it seems so good i had to copy it. I had seen this once before from a magazine link but had forgotten it.
    http://www.adecy.com/psu/.
    also i got some power loads for the guide from herehttp://www20.tomshardware.com/graphic/20040414/geforce_6800-19.html
    it would seem that the watts i listed for the vid card seems a little high
    now that I re-read it i am guessing that those loads include increased mem,and cpu use as well, but i also noticed there was a big diff in diff cards...
    but elsewhere on the site they listed ati9700 as about 50 watts ,nvida 5700 ultra at 75watts, and 6800 at 125 watts.

    also i have seen 12A listed at what the cpu uses, however i got a post that said it was  more like 7.5A,...anybody know
    is the 12A score powering mobo, onboard stuff, cpu, and mem. and if mem how much, as it is 3.3v and 16watts per 128.....
    I would like to update the guide if the info in it is wrong.
    I ran the calculator for my stats, .....scary
    close to what i came up with on paper, hence the 600watt psu
    Recommended PSU: 597W (320W on +3.3v & +5v rails) for:
    -1 x Motherboard without onboard devices
    -8 x Fans (including PSU fans)
    -8 x Memory (128MB DDR)
    -1 x Graphic Card
    -1 x with powerful 3D Accelerator
    -1 x PCI Sound
    -1 x PCI Network Card
    -5 x HDD
    -3 x CD-RW
    -1 x Floppy
    -1 x Keyboard
    -2 x Mouse
    -3 x FireWire
    -CPU: AMD K8 2.0 GHz Athlon 64 with 1,024 KB L2 Cache @ 1.50 V

  • [svn:bz-trunk] 18907: Fix failing MBean test.

    Revision: 18907
    Revision: 18907
    Author:   [email protected]
    Date:     2010-12-01 11:55:22 -0800 (Wed, 01 Dec 2010)
    Log Message:
    Fix failing MBean test. The name of the web application changed in the web.xml file for the webapp causing the test to break. I updated the test to use the new webapp name which is "Flex QA Web Application". There are a few more MBean tests that are failing likely due to the same problem. I will update these as I have time unless someone else wants to tackle this.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/MBean/jmx/MBeanServerGateway.mxm l

    Pierre-Charles David a écrit :
    > Hi,
    >
    > I've got a very strange issue and I don't know where to look for to fix
    > it. In some Eclipse configuration I use, SWTBot does not work at all: it
    > fails the very first method with a WidgetNotFoundException.
    [snip]
    Well, I found the issue:
    SWTBot declares a dependency to org.apache.log4j but does not indicate
    any specific version. However, it uses APIs which only appeared in log4j
    1.2.12 (at least Logger.trace(), maybe others).
    In the Eclipse installation I have which did not work ("Topcased RCP"),
    there was a bundle which provided the org.apache.log4j package, but
    using log4j version 1.2.8. As it happens, Eclipse decided to provide
    this one to SWTBot instead of other versions available from different
    bundles (1.2.12 and 1.2.15). The test failed with an internal
    NoSuchMethodError, which must have been caught by some code and wrapped
    as the WidgetNotFoundException I saw.
    Removing the plugin with log4j 1.2.8 from the test's run configuration
    solves the issue.
    I have opened bug #286527 about this.

  • [svn:fx-trunk] 11899: Cleaning up some FIXMEs assigned to me in the code:

    Revision: 11899
    Revision: 11899
    Author:   [email protected]
    Date:     2009-11-17 10:24:33 -0800 (Tue, 17 Nov 2009)
    Log Message:
    Cleaning up some FIXMEs assigned to me in the code:
    In UIMC, we now call invalidateParentSizeAndDL() on setting explicitMaxWidth.  We already do this for explicitMaxHeight.  I also changed a FIXME around invalidateLayering() in to a TODO.
    In GroupBase, I removed a FIXME around the focusPane as we are using the overlay API now.
    In DataGroup, I changed a FIXME to a TODO with some clarifying comments.
    In SkinnableContainer, I removed a FIXME and just commented on why it was needed.  I also removed another FIXME and some code now that it seems like we don?\226?\128?\153t need to do the array conversion with IDefferedInstance since the compiler handles it for us now.
    In SkinnableDataContainer, I changed a FIXME around event delegation to a TODO.
    In DropDownController, when you drag around the volume bar, the popup stays open even if the mouse isn?\226?\128?\153t over the open button or the dropdown.  However, when the mouse is released, we should immediately close the drop down, rather than wait for another mouseMove to occur.  This involved some refactoring of some code in to a private helper method.  The "@private" protected methods in DropDownController should probably be made mx_internal.  I will do that in a subsequent checkin.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Jason for the DropDownController change, Glenn for the rest
    Tests run: checkintests, mustella FCK, Panel, SkinnableContainer, DropDownList
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/flash-integration/src/mx/flash/UIMovieClip.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/DataGroup.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/SkinnableContainer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/SkinnableDataContainer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/DropDownCont roller.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as

Maybe you are looking for

  • Errors when installing Premiere Pro

    When I installed Premiere Pro all these error messages come up and it says installation failed. Adobe encoder will not open and Adobe Encore will not transcode. I am using a windows vista computer. Can Some one please help. thanks joey Adobe Device C

  • LCDS Streaming AMF Issue with Multiple Broswer Tabs

    Hi, I am facing the below problem with LiveCycle DS NIO Streaming AMF. I am using NIO Streaming AMF for pushing data to clients using Subtopics and selectors. The Consumer I have used is MultiTopicConsumer. The issue that when I try to open the appli

  • Color Settings - Illustrator

    What is the "BEST" policy for opening client files into a color managed environment? The risk of double-profiling runs deep. Printing from the APP directly or choosing the printers's driver interface changes the results. Just printing a raster file f

  • Transferring workbook from favourites to Role

    Hi I have created a workbook and saved under favourites. Now i want to put that workbook in the roles. How do i do that? Regards Annie

  • ITunes very slow opening after connecting iPod Touch

    Just bought a brand new 32gb, and have had to restore settings more than once as iTunes won't respond when connecting it to my Macbook. I have the latest iTunes and 2.0 for the Touch. Now it's responding but takes over 5 minutes. Other than restoring