[svn:fx-trunk] 13276: Min/ Max size fixes for AIR Window and WindowedApplication.

Revision: 13276
Revision: 13276
Author:   [email protected]
Date:     2010-01-05 07:18:31 -0800 (Tue, 05 Jan 2010)
Log Message:
Min/Max size fixes for AIR Window and WindowedApplication.
AIR won?\226?\128?\153t allow you to set the min width greater than the current max width (same is true for height). You also can?\226?\128?\153t set the max width less than the current min width (same is true for height). The code that sets nativeWindow.minSize and nativeWindow.maxSize has been modified to take this into account.
QE notes: None.
Doc notes: None.
Bugs: SDK-24566
Reviewer: Corey
Tests run: checkintests, apollo/spark/components/Window.as, apollo/spark/components/WindowedApplication.as, apollo/Window, apollo/WindowedApplication
Is noteworthy for integration: no
Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-24566
Modified Paths:
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/Window.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
    flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/Window.as
    flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/WindowedApplication.as

THank you , Nancy. Appreciate the input.
So instead of this:
<a class="brand" href="index.html"><img src="../img/logo-ca.png"alt="Consumers Advocate Review"> </a>
Would it be something like this?:
<a class="brand" href="index.html"><img src="http://ConsumersAdvocate/img/logo-ca.png"alt="Consumers Advocate Review"> </a>
And if I do that, is there a way to cope with that locally so that DW can still display the images?
jeff

Similar Messages

  • [svn:fx-3.x] 13209: Adding same fix for SDK-23838 and SDK-24205 to 3. x from trunk.

    Revision: 13209
    Revision: 13209
    Author:   [email protected]
    Date:     2009-12-23 15:45:53 -0800 (Wed, 23 Dec 2009)
    Log Message:
    Adding same fix for SDK-23838 and SDK-24205 to 3.x from trunk.
    The dropDown was not receiving changes to styles nor dataproviders. This was a result of not recreating the dropDown each time it was shown. I've changed the default of the flag for destroying the dropDown to be true. I've also modified the code to only not destroy the dropDown when it is showing or being shown. I?\226?\128?\153ve also moved some of the code in the animation handler to check for a null dropDown first before destroying it.
    QE notes: No
    Doc notes: No
    Bugs: SDK-23838, SDK-24205
    Reviewer: Jason
    Tests run: checkintests, ComboBox
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23838
        http://bugs.adobe.com/jira/browse/SDK-24205
        http://bugs.adobe.com/jira/browse/SDK-23838
        http://bugs.adobe.com/jira/browse/SDK-24205
    Modified Paths:
        flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/controls/ComboBox.as

  • [svn:bz-trunk] 22848: Add back the fix for Watson 2780086.

    Revision: 22848
    Revision: 22848
    Author:   [email protected]
    Date:     2011-10-02 11:00:09 -0700 (Sun, 02 Oct 2011)
    Log Message:
    Add back the fix for Watson 2780086. This was originally added in changelist 21123 and then backed out in changelist 21160.
    Checkintests: passed
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/security/LoginManager.java

    The problem is that the one available in the repo does not support sfz files (it only supports gig).
    I just compiled the one from AUR. I don't know how I missed that, even though I looked for it in the AUR. It's working perfectly now.
    I am curious though why the one directly from the site was not compiling.
    Thanks a million for the tip

  • Possible to set min/max size to a resizable Stage? If so, how?

    Is it possible to set a minimum and maximum size to a resizable Stage? If so, how would this be done? Do I use some kind of onResize event handler or is there some other way?
    Here is a sample code where I have a 500 x 500 px image in a 300 x 300 px scrollable scene that is in a resizable stage. Right now, I am able to resize the stage to any size, but I would like to limit the resizable minimum width and height to 100 x 100 px and limit the resizable maximum width and height to 600 x 600 px.
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.control.ScrollView;
    import javafx.scene.control.ScrollBarPolicy;
    import javafx.scene.image.ImageView;
    import javafx.scene.image.Image;
    var scene: Scene;
    Stage {
        resizable: true
        scene: scene = Scene {
            width: 300
            height: 300
            content: ScrollView {
                hbarPolicy: ScrollBarPolicy.ALWAYS
                vbarPolicy: ScrollBarPolicy.ALWAYS
                width: bind scene.width
                height: bind scene.height
                node: ImageView {
                    image: Image { url: "{__DIR__}roses.jpg"}
    }

    Hi, I don't understand how WidgetFX is going to allow me to set min/max size to a resizable Stage. After all, it is a desktop widget platform and I'm not trying to build a desktop widget. None of the demos I've tried use a decorated Stage with platform decorations that can be used to drag and resize the Stage.
    I'm just trying to limit the min/max size of a resizable Stage. If you think WidgetFX will address my problem, I think a better solution is the JavaFX Stage Controller class I found available at http://code.google.com/p/memefx/. However, the JavaFX Stage Controller class still doesn't address the problem I have because it doesn't stop the user from dragging the Stage beyond the size restricted by the min/max height. It only reverts the Stage to the max size after the user already dragged and resized the Stage beyond the max resizable width/height.

  • [svn:bz-trunk] 10631: Proper fix for BLZ-343 and LCDS-1153.

    Revision: 10631
    Author:   [email protected]
    Date:     2009-09-28 05:23:42 -0700 (Mon, 28 Sep 2009)
    Log Message:
    Proper fix for BLZ-343 and LCDS-1153.
    Refactored the common logic for AMF0 and AMF3 back into AbstractAmfInput. Resolving class aliases, creating and registering a property proxy and instantiating the appropriate class are now handled in the superclass. The resolved className and the proxy are 'returned' to the subclasses via a holder array created in the subclasses and sent as a parameter.
    blazeDS checkintests pass
    lcds-trunk checkintests pass with the new flex-messaging-core.jar
    lcds-trunk alltests-dataservice pass with the new flex-messaging-core.jar
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-343
        http://bugs.adobe.com/jira/browse/LCDS-1153
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/AbstractAmfInput.java
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/Amf0Input.java
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/Amf3Input.java

  • [svn:fx-trunk] 12295: fix for FLEXDOCS-889, and add doc on the WindowedApplication.useNativeDragManager property

    Revision: 12295
    Revision: 12295
    Author:   [email protected]
    Date:     2009-11-30 13:41:29 -0800 (Mon, 30 Nov 2009)
    Log Message:
    fix for FLEXDOCS-889, and add doc on the WindowedApplication.useNativeDragManager property
    QE notes: -
    Doc notes: -
    Bugs: - FLEXDOCS-889
    Reviewer: -
    Tests run: - checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FLEXDOCS-889
        http://bugs.adobe.com/jira/browse/FLEXDOCS-889
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/metadata/AnchorStyles.as

  • Time phase Min/max replenishment models for future dates

    Hi,
    We are working on a safety stock requirement of Maximum/Minimum replenishment model in APO.
    It seems to work great except it cannot be time phased.  Our business wants different safety stock strategies at different times of the year. 
    Please suggest if there is a way that we could “time phase” min/max replenishment models for future dates?
    Thanks in advance for your help!
    regards
    Yogendra

    Many thanks for this.
    I can see entirely why it's designed as such, but I just find it slightly frustrating that there's no way to break the link between the order and the shipment out to the depot. Just to clarify, we're not requiring the orders to change - they will still be made and will come in - but just that the orders themselves don't specifically need to be the stock that is used for the replenishment.
    So -
    1. Min Max identifies depot needs replenishing.
    2. Central distribution does not have (enough) stock to replenish.
    3. Order is made to replenish central distributions stock.
    4. We ship whatever we've got, when we've got it, to depot to replenish.
    It's the bit where Min-Max is trying to replensih a specific depot rather than our central distribution centre that's my problem.
    I suspect that, as you say, that specific issue is not directly fixable without getting our IT contractors to do a customisation.
    I'm going to look into your Supply Date Offset suggestion now, though I'm not sure how this affects the shipping after the orders are placed. The orders themselves are approved manually after we've checked our stock position (i.e. what's in with the recycling team), but we recycle & refurb probably 60% of our maint stock so there'll always be kit turning up after the order has been made because of the long lead times.
    Thanks again.

  • [svn] 2893: Fixes for SDK-16507 and SDK-16502.

    Revision: 2893
    Author: [email protected]
    Date: 2008-08-19 08:46:45 -0700 (Tue, 19 Aug 2008)
    Log Message:
    Fixes for SDK-16507 and SDK-16502. Tweaked the order of binding setup a bit, and took care of some edge cases related to function binding.
    Reviewer: Paul Reilly
    Bugs: SDK-16507, SDK-16502
    QA: Yes
    Doc: No
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16507
    http://bugs.adobe.com/jira/browse/SDK-16502
    http://bugs.adobe.com/jira/browse/SDK-16507
    http://bugs.adobe.com/jira/browse/SDK-16502
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/binding/Binding.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/binding/Watcher.as
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/ImplementationGenerator.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/gen/ClassDef.vm
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/gen/ClassDefLib.vm

  • [svn] 3336: Fix an AIR drag and drop problem.

    Revision: 3336
    Author: [email protected]
    Date: 2008-09-24 12:24:27 -0700 (Wed, 24 Sep 2008)
    Log Message:
    Fix an AIR drag and drop problem.
    QE: YES
    Doc:
    Checkintests: Yes
    Reviewer: pfarland
    Bugs: SDK-17006
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17006
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/airframework/src/mx/managers/NativeDragManage rImpl.as

    Update 2, if it can help someone:
    Finally I don't manage the drag and drop by myself using
    DragManager.doDrag(...). Why? Because doing so if the user clicks
    on the scrollbars, on the datagrid header or on an empty row, it
    triggers the drag start and that is ugly. By letting Flex managing
    the drag and drop process, this doesn't append. BUT I was unable to
    use a custom proxy image then. Until I found this article:
    http://www.dgrigg.com/post.cfm/11/03/2006/DataGrid-Drag-Image
    The trick is:
    1) save the mouseX and mouseY using the mousedown event.
    2) override dragImage(), as the article says, to create your
    custom proxy, attaching to it a FlexEvent.UPDATE_COMPLETE event,
    saving it to a class variable and returning it.
    3) When you receive the FlexEvent.UPDATE_COMPLETE event, you
    update the proxy position (that is saved in a class variable) using
    the saved mouseX and mouseY and you remove the listener to the
    event:
    When you drop the proxy, you access the dragged items in :
    event.dragSource.dataForFormat("items")
    Hope this helps, I spent lot of time trying to resolve this
    issue! Now it works perfectly! :-)

  • [svn] 2650: Add fix for blz-221 and BLZ-225 for samples app

    Revision: 2650
    Author: [email protected]
    Date: 2008-07-29 09:48:41 -0700 (Tue, 29 Jul 2008)
    Log Message:
    Add fix for blz-221 and BLZ-225 for samples app
    Ticket Links:
    http://bugs.adobe.com/jira/browse/blz-221
    http://bugs.adobe.com/jira/browse/BLZ-225
    Modified Paths:
    blazeds/branches/3.0.x/apps/samples/WEB-INF/flex-src/traderdesktop/src/traderdesktop.mxml
    blazeds/branches/3.0.x/apps/samples/WEB-INF/src/flex/samples/marketdata/Stock.java

    Revision: 2650
    Author: [email protected]
    Date: 2008-07-29 09:48:41 -0700 (Tue, 29 Jul 2008)
    Log Message:
    Add fix for blz-221 and BLZ-225 for samples app
    Ticket Links:
    http://bugs.adobe.com/jira/browse/blz-221
    http://bugs.adobe.com/jira/browse/BLZ-225
    Modified Paths:
    blazeds/branches/3.0.x/apps/samples/WEB-INF/flex-src/traderdesktop/src/traderdesktop.mxml
    blazeds/branches/3.0.x/apps/samples/WEB-INF/src/flex/samples/marketdata/Stock.java

  • [svn:fx-4.x] 14255: Fix for ?xml and !DOCTYPE lines reversed in ASDoc DITA output

    Revision: 14255
    Revision: 14255
    Author:   [email protected]
    Date:     2010-02-18 12:39:52 -0800 (Thu, 18 Feb 2010)
    Log Message:
    Fix for <?xml> and <!DOCTYPE> lines reversed in ASDoc DITA output
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-25548
    Reviewed By: Paul
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-25548
    Modified Paths:
        flex/sdk/branches/4.x/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGener ator.java

    Running the script by python2 solves it for me:
    su - mythtv -c "nice -n 19 python2 /usr/bin/tv_grab_nl_py --output ~/listings.xml"
    Best regards,
    Cedric

  • FAQ: Tips/Fixs for clicks, pops and glitches in sound ca

    I have come across this little article from the internet while surfing and thought it could be of some use posting it here. Follow the link below.
    Tips/Fixs for clicks, pops and glitches in sound card
    If after following the tips on this page you are still having troubles, then contact support or wait for other peers in the forum for further advise and suggestion.
    This particular phrase that's quoted from the article which is very true.
    "This is a HUGE topic and I have come across it many times. The hardest thing to do in tech support is to explain to someone that the fault is not to do with the audio card, but instead with the way the computer is setup or the fault of components in their system. Pcs are built to a budget and parts do suffer because of this."

    I know this stuff is 3 months old but I just got mine and hadn't yet used the pin function so now I know.
    I hope you are right Nancy that it will have updates, but I really doubt it. This is the norm for Microsoft when stuff they put out bombs. Dish Network had a DVR receiver many years ago that had Microsoft software installed and it was buggy to say the least. They updated it a few times but then abandon it. For a few years Microsoft wouldn't release the code to Dish Network to allow DN to fix the bugs. It was a real "Hate Microsoft" time for those users. DN had to put out their own coded DVR receivers and let the Microsoft ones die.
    I think VZ made a deal with MS and removed the stuff MS wasn't supporting. Then VZ put them out without needing a data package to unload them.

  • Font size in the folder window and feet thumbnails Adobe Bridge

    I've been trying to figure out how to increase font size in the Folder window and foot Brige thumbnails, but can not find it anywhere.
    I do not mean the font size in the window metadata. In that window I know how.
    If anyone can help me I would appreciate it very much, as I have vision problems and the size of the letter have to much strain to read.
    Thank you very much in advance.
    Regards

    Thank you very much for your quick reply.
    I imagined that this is not possible ..... I´ve given it a lot of thought before asking .....
    As is the case with the brightness of the background area around the picture window in ACR (trim panels column and area around the image window), whose brightness dazzles enough to incorrectly assess the brightness of dark parts  image and can not be changed  (as can be done, however, in Bridge and Ps, even in the background of the image window's own ACR 8.4), this two questions should be posed to developers group Creative Cloud, as suggestions for future improvements that could be implemented .... But I have no idea how to do that .....
    Again, thank you very much for your feedback.
    Regards

  • Possible fix for errors 11503 and 50

    Here's a possible fix for Error 11503 and for error 50.
    It worked for me and hopefully it will work for you.
    I believe this error is caused by the incomplete downloading of either an update to an app. In my case it was caused by closing the lid on my laptop when I was downloading app updates on a very slow internet connection in a hotel.
    Anyway, here is what I did that fixed it completely.
    Close iTunes.
    Go to this folder : /iTunes/Mobile Applications/Downloads
    You'll find tmp files there. Drag them out of this folder to a temporary folder on your desktop. The Downloads folder should now be empty.
    Restart iTunes.
    All should be fine.
    If it is, delete the desktop folder with all the temp files.
    If it's not, then I can't help further, but that's what worked for me.

    Several possible causes from the info you gave
    Battery level low - recharge it for at least 4 hours till the full charge sign displays (2 prong icon instead of lightning icon).
    Time to Reset the iPod - Press the Menu and center Button for about 10 secs till the Apple logo comes ON, then let go of the buttons.
    your hardisk is starting to give problems, hence the skipping and some song refuse to play. - Do a disk diagnostic - follow this post by tt2.
         https://discussions.apple.com/message/17028567#17028567
    If you have updated any sofware application in Windows, then follow this Apple support procedure
    http://support.apple.com/kb/TS1539
    Most likely you have to do all, as the iPod hardisk filesystem would have been corrupted, or else the iPod Reset would bring it to normal operation.
    Good Luck!

  • HT1766 I loaded the software fix for face time and it wiped out my contacts and photos. can I restore them?

    I loaded the software fix for face time and in loading the new software I lost all of my other content (WITHOUT ANY WARNING). This included my contacts, photos, music. The music I can restore and losing the contacts is an inconvenience, but losing the photos is devastating.
    Any ideas?

    What software fix for FaceTime? What software did you apply?
    Did you backup your iPhone before you updated it with whatever update you applied as described in HT1766? If so, did you backup to iCloud or iTunes? Either way your  data should be restorable from that backup.

Maybe you are looking for

  • Function to download all the variants

    Hi , Is there any function to copy the variants of a program to another. Regards Arun

  • Qustion about the Audigy 2 ZS internal dr

    <FONT color=#6666ff size=5>I am a neat freak when it comes to my computer please all about air flow. Will i just got the Audigy 2 ZS platinum i was wondering if i could just use a Rounded IDE Single Device Cable. Also this sound card is great.

  • I sight problem

    I have a problem with the isight camera. I installed updates to my computer no my apple isight does not work. First I can see myself then it goes black! I installed a update from mac os 10.4.4 to 10.4.8 A garage band update, Imove update,keynote,page

  • Tom Tom europe occidentale last version bug

    Il m'est impossible d'utiliser l'application de navigation gps de chez Tom tom (à 70€) Qand je clique sur l'icone le logo s'ouvre et puis se ferme immédiatement, et ce à chaque fois ! L'ensemble de mes softs iphone sont à jour J'ai contacter le suppo

  • I am unable to sync to my Mac iCalendar from remote.

    Possible cause: What server path should I use in the Location field? Assuming default folders.