_TARGET_PRODUCT_VERSION_ and _TARGET_FILE_VERSION_ bug

CVI 2010 has two new predefined macros: _TARGET_PRODUCT_VERSION_ and _TARGET_FILE_VERSION_
From CVI help:
_TARGET_FILE_VERSION_ is defined as the value in the File Version option of the Version Info dialog box. This macro does not include increment symbols; for example, if the version string in the Version Info dialog box is 1.0.0.0+, this macro is defined to 1.0.0.0.
_TARGET_PRODUCT_VERSION_ is defined as the value in the Product Version option of the Version Info dialog box. This macro does not include increment symbols; for example, if the version string in the Version Info dialog box is 1.0.0.0+, this macro is defined to 1.0.0.0.
LabWindows/CVI auto-increments fields in which you add a + character. For example, if you specify 1.0+.0.0+, the next version string is 1.0.0.0, and LabWindows/CVI increments the version string to 1.1+.0.1+. LabWindows/CVI increments fields only for successful builds of a Release configuration.You can access the File Version and Product Version values programatically using the _TARGET_FILE_VERSION_ and _TARGET_PRODUCT_VERSION_ predefined macros.
I found that these macros don't work, and it's quite easy to reproduce this issue:
in Version Info window specify a file and a product version with auto-increment fields (for example 0.9.0.0+)
every time you rebuild a release configuration you can see that the .exe file version increments as expected (right clicking on the file in Windows Explorer)
but if you use _TARGET_PRODUCT_VERSION_ and/or _TARGET_FILE_VERSION_ macro to show these values on the front panel (calling SetCtrlVal(panel, PANEL_TXT, _TARGET_PRODUCT_VERSION_) you see that this control has the same text in every build. The shown version is the first one entered in the Version Info window, but now in this window the version has the right updated value.
I think this is a bug. Am I right?
Vix
In claris non fit interpretatio
Using LV 2013 SP1 on Win 7 64bit
Using LV 8.2.1 on WinXP SP3
Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
Using CVI 6.0 on Win2k, WinXP and WinXP Embedded
Solved!
Go to Solution.

It is exactly how you wrote in your message.
I think that this behavior is the best choice, but I suggest that the documentation for these macros should be modified adding a warning like the following one:
WARNING!
_TARGET_PRODUCT_VERSION_ and _TARGET_FILE_VERSION_ values are updated only when the file that contains them is recompiled.
So be sure to include them only in files that are recompiled at every build.
A better solution would be to have ad additional macro that forces the recompilation of the file that calls it. It would be useful in the files that call _TARGET_PRODUCT_VERSION_ or _TARGET_FILE_VERSION_
Vix
In claris non fit interpretatio
Using LV 2013 SP1 on Win 7 64bit
Using LV 8.2.1 on WinXP SP3
Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
Using CVI 6.0 on Win2k, WinXP and WinXP Embedded

Similar Messages

  • CVI2013: _TARGET_PRODUCT_VERSION_ and _TARGET_FILE_VERSION_ troubles

    I've just noticed another strange behaviour of CVI 2013, and it's related with precompiled headers (am I the only user of this feature?).
    It's very simple to trigger:
     Set up any project for using precompiled headers
    Set in Target Settings -> Version Info a version number with auto increment (e.g. 1.0.0.0+) for both file version and product version fields, for the release configuration.
    Rebuild the "release" configuration, so to have all files recompiled.
    Modify any source that does not trigger precompiled header recompilation
    Build the project.
    Then the build will terminate with this error messages:
    main.c - 2 errors, 2 warnings
    1, 1 error: definition of the macro '_TARGET_FILE_VERSION_' conflicts with the definition used to build the precompiled header
    1, 1 <built-in>:162:1: note: definition of macro '_TARGET_FILE_VERSION_' in the precompiled header
    1, 1 error: definition of the macro '_TARGET_PRODUCT_VERSION_' conflicts with the definition used to build the precompiled header
    1, 1 <built-in>:163:1: note: definition of macro '_TARGET_PRODUCT_VERSION_' in the precompiled header
    Build failed.
    As additional  information please note that there is no reference to _TARGET_PRODUCT_VERSION_  and _TARGET_FILE_VERSION_ macros.
    The reason is obvious: the precompiled header retains the old values of these variables.
    I don't have found any workaround but to stop using the auto-increment feature.
    Carlo A.
    Megaris

    Luis, I hope that my words didn't sound offensive: it wasn't my intention.
    No, I don't do the bulk of my development in release configuration. 
    In my applications, I usually have some "release only" and "debug only" code, selected by conditional compilation by using the NDEBUG / _CVI_DEBUG_ predefined constants.
    Sometimes, by chance, it happens I had to do a quick fix in the "release only" code. It isn't a frequent event, anyway.
    When this happened on CVI 2013, the compilation ended in a fatal error, on perfectly valid code.
    The whole scenario is not exactly common, but it could be misleading to other users, too.
    I think I can survive   doing only full rebuilds in release configuration: its impact can be made negligible by using a more conventional development pattern.
    IMHO all the problems come from the definition itself of the two constants. 
    Both of them refer to the version of something that should not exist at compilation time, something that in a logical sequence should come to life only when the executable file is generated, or - more precisely - when resource compiler appends to the executable the version information.
    Preprocessor constant must obviously be known in the first phase of compilation, so the compiler is somewhat betting on the build result, hoping that all steps involved in executable generation will be successful.
    Given this, these constant should not exist at all.
    If someone needs to know at run time the actual executable version number, it's not hard get it by using GetFileVersionInfo() API from version.dll. I don't know if there is some equivalent on Linux.
    And if someone claims he/she needs to know at compilation time the version number, then he/she is simply doing it wrong...  
    A sort of compromise could be to exclude from the constants any... variable part, e.g. the autoincrementing numbers. After all, a proper costant must be constant, isn't it ?
    I'm very interested to hear your opinion.
    Carlo A.
    Megaris

  • [svn:fx-trunk] 10075: Cleanups from the spark text changes and some bug fixes for VideoElement.

    Revision: 10075
    Author:   [email protected]
    Date:     2009-09-08 18:01:58 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Cleanups from the spark text changes and some bug fixes for VideoElement.  Also some PARB changes for UIComponent.
    TitleBar: Changing the skin part type from Label to Textbase
    UIComponent: skipMeasure()->canSkipMeasurement() to be in line with GraphicElement.  This has been PARB approved.
    UIComponent: same with hasComplexLayoutMatrix...this replaces hasDeltaIdentityTransform.  This has been PARB approved.
    StyleProtoChain: cleanup around what interfaces to use
    TextBase: clean up code that?\226?\128?\153s no longer needed.
    VideoElement: Fixing 4 bugs:
    SDK-22824: sourceLastPlayed keeps track of what video file we?\226?\128?\153ve called play() with last.  This way if a user pauses the video and wants to start it up again at the same point, we can call play(null) on the underlying FLVPlayback videoPlayer.  However, anytime the souce changes, we want to null out sourceLastPlayed.  This was causing a bug when someone set the source to null and then reset it to it?\226?\128?\153s previous value.
    SDK-23034 (GUMBO_PRIORITY): This deals with some FLVPlayback quirks around sizing.  I had put in a fix so we weren?\226?\128?\153t setting width/height on the underlying videoPlayer too many times, but apparently we need to make sure it always gets called once.  Hopefully when switching to Strobe we can cleanup this logic...I put a FIXME in to do this.
    SDK-21947/ SDK-22533 - some video files don?\226?\128?\153t always send out a metadata event.  I?\226?\128?\153m not quite sure why this is, but in case this happens, we do a check in the ready handler to see whether we should call invalidateSize() to make sure it gets sized properly.
    QE notes:-
    Doc notes:-
    Bugs: SDK-22824, SDK-23034, SDK-21947, SDK-22533
    Reviewer: Glenn, Corey
    Tests run: checkintests, Button, GraphicTags, VideoElement, and VideoPlayer (some VideoPlayer were failing, but I think it should be fine)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/spark/src/mx/core/UITLFTextField.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/Skin.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

  • Iphone 4 (White MC604FB) Update iOs 6.0 - Wifi Problem and iphone bug when trying to unlock on call receive. Is this a known bug ?

    Dear Members (and Apple Team)
    I have two iphones 4 and two bugs on the white one
    1/ Is the first gen (Black)
    2/ Is the second gen (White MC604FB)
    I both uptdated the into Update iOs 6.0 -
    Bug 1 : With the white iPhone 4 i have a real Wifi Problem, as close as 5 to 7 meters from any WiFi spot, i lose the signal, where my "black" iphone at the same time and same distance shows full signal (and tested with safari.... works).
    Bug 2 : Once the white iphone is in "stand by" when trying to unlock on incoming call, the touch screen works and receive the touch information, but it bugs on trying to unlock to receive the call. (very very anoying :o) have to call back almost every time.
    Are those already known bugs ? Is there a fix ?
    Reagrds
    Alexandre

    Dear Diesel
    Thanks for your prompt reply.
    I did restore before posting, in evry possible way. no improvment.
    I have 24H ago updated to iOS 6.01. So far no more "screen jam" on incoming calls, but the wifi is still inconsistent with very poor signal strenght (compare to my black iphone 4)
    PS : For information, did beleive  there was two versions of iphone 4 (In Europe ) :
    1/ Is firts generation "gen" with With board MC603FB
    2/ The white one for me with board MC604FB

  • MacBook Pro - Bluetooth and Speaker bug

    Hello,
    I've bought a new speaker (JBL Pulse) one day ago in order to use it like speaker for my Macbook pro.
    Here it is, I need to use a bluetooth connection if I want to use my JBL speaker. My bluetooth is able to see my speaker, so they are connected. Everything works fine but after 1min, I can't explain why but the connection between them is broken. And it does it every time.
    So first of all, I've tried other devices. My iphone is ok, my ipad is ok, I've tried with 2 other Macbook and everything works well. So I've concluded that the bug comes from my computer.
    I have a magic mouse so I thought that maybe my mouse could create some disruption. I have disconnected my mouse but the bug is still here.
    Then, I've called apple support.
    The guy told me to do many things like reboot the macbook and other stuff like that. At the end he told me to reinstall my OSX. So i did it and the bug is still here.
    Then I have even tried to delete the file inside my DD thinking that maybe it could help. but I have still the same problem.
    It's not the first time that I have some troubles with my bluetooth. Sometimes it happens that my magic mouse is disconnected while I'm using it. Or even sometimes when I try to click on the bluetooth icon it doesn't even answer. And I have to restart my computer.
    I'm a little bit frustrated because my macbook pro is in very good condition and it's a young one (almost one year). I don't have a lot of stuff inside.
    A friend tried to solve the problem but he thinks that the problem comes from my "network card".
    Thank you for your help and If you have any idea, do not hesitate Thanks
    I wanted to go to the apple store but still not open in my city... (frustrated again ^^) So I'm gonna call them Monday morning if I'm still without any solution

    I have the same problem with my older white Apple Wireless Extended Keyboard, which had been working fine with my 2009 iMac. But I experience the issue sporadically with my new Mac Mini. I've read reports of people resolving some BT issues by turning off "Allow Bluetooth devices to wake this computer" in the Advanced pane of the Bluetooth System Preferenes Pane.
    There are also people having the issue on iOS devices using various Apple BT keyboards. No help, but interesting to note that it's happening across various devices, keyboard models, and OSs.

  • [svn:fx-4.x] 15044: Mirroring Window Gripper and DateField bug fixes

    Revision: 15044
    Revision: 15044
    Author:   [email protected]
    Date:     2010-03-25 17:15:30 -0700 (Thu, 25 Mar 2010)
    Log Message:
    Mirroring Window Gripper and DateField bug fixes
    http://bugs.adobe.com/jira/browse/SDK-25719 - The gripper does not show up in an MX Window that is mirrored and using flex chrome
    Added an mx_internal property to Button to track if the Button should modify the layoutDirection of its skins. MX Window and MX WindowedApplication both set this property to undefined. This is the only skin/icon in the halo and spark framework that inherits its layoutDirection from its parent. All others have layoutDirection of LTR.
    http://bugs.adobe.com/jira/browse/SDK-25995 - DateField opens drop down on wrong side when layoutDirection = rtl
    Added check if left edge of the dropDown exceeds the left screen bounds.
    QE notes: n/a
    Doc notes: n/a
    Bugs: SDK-25719, SDK-25995
    Reviewer: Kevin
    Tests run: checkintests, DateField
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-25719
        http://bugs.adobe.com/jira/browse/SDK-25995
        http://bugs.adobe.com/jira/browse/SDK-25719
        http://bugs.adobe.com/jira/browse/SDK-25995
    Modified Paths:
        flex/sdk/branches/4.x/frameworks/projects/airframework/src/mx/core/Window.as
        flex/sdk/branches/4.x/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
        flex/sdk/branches/4.x/frameworks/projects/framework/src/mx/controls/Button.as
        flex/sdk/branches/4.x/frameworks/projects/framework/src/mx/controls/DateField.as

    Originally posted by: hansm.science.uva.nlDELETE
    In article <f7fd6k$kq5$[email protected]>,
    "Igor Vinnykov" <[email protected]> wrote:
    > We are pleased to announce a new release in the 1.1.x stream: version 1.1.3.
    > Main target of 1.1.3 version is compatibility with Eclipse 3.3 and Mylyn.
    > Starting from this version JavaHL becomes the default SVN client. This change
    > caused by licensing topics and future project transfer to the eclipse.org:
    > previous default client JavaSVN/SVNKit doesn't have a license, which allows
    > defining it as default client, distributed from the eclipse.org.
    >
    > Important: Subversive is prepackaged only by JavaHL binaries for Windows. If
    > you work under Linux, MacOS or other operation systems you should
    > build/install required JavaHL binaries by yourself. JavaHL is a part of
    > official Subversion source distribution available at
    > http://subversion.tigris.org/project_packages.html.
    I am sorry but this leaves me in the dark. On the site mentioned above I cannot
    find something like a download for javaHL (on MacOSX especially).
    Although I did install subversion 1.4.4 from the source distribution I do not
    seem to have a javaHL binary. How further?
    Hans van der Meer

  • [svn:osmf:] 12641: Improvements to the DFXP parser, captioning sample, and a bug fix for the TemporalFacet ( duration timers were not taking account of the media being paused).

    Revision: 12641
    Revision: 12641
    Author:   [email protected]
    Date:     2009-12-07 21:10:00 -0800 (Mon, 07 Dec 2009)
    Log Message:
    Improvements to the DFXP parser, captioning sample, and a bug fix for the TemporalFacet (duration timers were not taking account of the media being paused).
    Modified Paths:
        osmf/trunk/apps/samples/plugins/CaptioningSample/src/CaptioningSample.css
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/TemporalFacet.as
        osmf/trunk/plugins/CaptioningPlugin/org/osmf/captioning/parsers/DFXPParser.as

  • Article - In Place Element Strucure - Saves Time and Prevents Bugs

    I hope you all enjoy it and find it useful: In Place Element Strucure - Saves Time and Prevents Bugs Thanks,
    -Jim
    [cross-post]

    This one deserves a place in the structures palette.
    For some reason I always open the array palette to select a "for loop"
    and selecting the N of the for to change the visibility of the label.
    A pity both don't work.
    But I also agree with Stephen that changing palettes should be done only when really needed.
    Every change proposal should have a lot of arguments. The more users LabvIEW has the more people need to agree on a change !!!!!
    Additions on the other hand and alternatives are welcome.
    greetings from the Netherlands

  • Looking for list of ie7 and flash bugs

    I'd like to stay clear of any ie7 and flash bugs that are out there, does anyone know of a list of any known bugs with flash player and ie7?
    I'm currently experiencing an issue where flash 10 and my app do not work in IE7 but they work fine in all other browsers.

    Hi, Check in Tools, manage add ons(all categories) for Shockwave Flash Object and make sure it is Enabled and is the same version of Flash Player you have Installed.
    Test with each browser here and if Flash Player is Installed correctly you should see the animation and the version of Flash Player will be displayed also. http://www.adobe.com/software/flash/about/ 
    If you need further help, post back your operating system, other browsers used and versions.
    Thanks,
    eidnolb

  • [svn:fx-trunk] 11574: Drag and Drop - Bug fixes:

    Revision: 11574
    Author:   [email protected]
    Date:     2009-11-09 10:53:35 -0800 (Mon, 09 Nov 2009)
    Log Message:
    Drag and Drop - Bug fixes:
    - Added slight delay before drag-scrolling start.
    - Single selection ctrl+drag fixed.
    - Default drop indicator for List that doesn't have drop indicator specified in its skin. The default DI is specified through the new dropIndicatorSkin List style.
    - Memory leak for the drop indicator dynamic skin part.
    - ListItemDragProxy incorrectly listed in spark-manifest.xml moved to SparkClassess.
    QE notes: None
    Doc notes: None
    Bugs: SDK-24047, SDK-23999, SDK-23871
    Reviewer: Glenn, Deepa
    Tests run: checkintests, mustella (List, ListDragDrop)
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24047
        http://bugs.adobe.com/jira/browse/SDK-23999
        http://bugs.adobe.com/jira/browse/SDK-23871
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/List.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/HorizontalLayout.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/TileLayout.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/VerticalLayout.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/supportClasses/DropLocation.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/supportClasses/LayoutBase.as
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/ListDropIndicator.as

    Just found a reference to a work around to the issue by putting the macbook to sleep & waking it.  Worked a treat !
    This makes it usable again.  Which is lucky as I was preparing to see how far I could toss the macbook !
    Suppose I'll need to wait for a patch.

  • [svn:fx-trunk] 11737: ComboBox and DropDownList bug fixes

    Revision: 11737
    Author:   [email protected]
    Date:     2009-11-12 13:25:33 -0800 (Thu, 12 Nov 2009)
    Log Message:
    ComboBox and DropDownList bug fixes
    SDK-23635 - Implement type-ahead in DropDownList
    Added code in DropDownListBase keyDownHandler to listen for letters and change the selection if there is a match. At some point, we should modify findKey and findString (I'll file an ECR for that). For now, I've just overridden findKey and cobbled together the logic from List.findKey and List.findString. In ComboBox, we override findKey to do nothing since ComboBox has its own logic that relies on textInput changes.
    SDK-23859 - DropDownList does not reset caretIndex when selection is cleared
    Fixed this in two places. In ComboBox.keyDownHandlerHelper, we update the caret index when ESC is pressed. In DropDownListBase.dropDownController_closeHandler, we update the caret index if the commit has been canceled (ie. ESC was pressed).
    SDK-24175 - ComboBox does not select an item with ENTER when openOnInput = false
    When the ComboBox was closed and the arrow keys were pressed, the selectedIndex was changed. When ENTER was pressed, it was committing actualProposedSelectedIndex, not selectedIndex. The fix is to override the selectedIndex setter to keep actualProposedSelectedIndex in sync if selectedIndex was changed. Usually it is kept in sync when the dropDown is opened.
    SDK-24174 - ComboBox does not scroll correctly when openOnInput = false
    When typing in a match, the caretIndex was changed, but not the selectedIndex (because matching when it is closed doesn't commit the value until you press ENTER or lose focus). When closed, the navigation keys were changing the selectedIndex relative to the previous selectedIndex. I updated this to change relative to caretIndex instead. In most cases, caretIndex and selectedIndex are equivalent while the dropDown is closed.
    Other changes:
    - Replaced some calls to dropDownController.isOpen with isDropDownOpen.
    - Added protection RTE protection to ComboBox.changeHighlightedSelection
    QE notes: None
    Doc notes: None
    Bugs: SDK-23635, SDK-23859, SDK-24175, SDK-24174
    Reviewer: Deepa
    Tests run: ComboBox, DropDownList
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23635
        http://bugs.adobe.com/jira/browse/SDK-23859
        http://bugs.adobe.com/jira/browse/SDK-24175
        http://bugs.adobe.com/jira/browse/SDK-24174
        http://bugs.adobe.com/jira/browse/SDK-23635
        http://bugs.adobe.com/jira/browse/SDK-23859
        http://bugs.adobe.com/jira/browse/SDK-24175
        http://bugs.adobe.com/jira/browse/SDK-24174
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/ComboBox.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/DropDownListBase.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:fx-trunk] 8520: BitmapFill and BitmapImage bug fixes

    Revision: 8520
    Author:   [email protected]
    Date:     2009-07-10 16:53:09 -0700 (Fri, 10 Jul 2009)
    Log Message:
    BitmapFill and BitmapImage bug fixes
    http://bugs.adobe.com/jira/browse/SDK-17477 - only edge pixels expand when resize this bitmapGraphic
    If repeat mode is false, the Player will extend the edge pixels of the bitmap to fill the empty space. The fix is to limit the fill area to the size of the bitmap.
    http://bugs.adobe.com/jira/browse/SDK-21980 - BitmapFill repeat property behaves differently than BitmapImage
    If repeat mode is false, the Player will extend the edge pixels of the bitmap to fill the empty space. The fix is to draw the transformed bitmapData into a new bitmapData that is two pixels wider and taller than the source bitmap if repeat is false. There is a caching mechanism that keeps the new bitmapData around unless the source, one of the transform properties or the bounds size have changed.
    There is an additional optimization which only uses the extra bitmapData if it is larger than the bounds or if it has been transformed.
    Unfortunately this means that the BitmapFill will keep around an extra bitmapData object in certain circumstances. This situation will most frequently happen when the bitmap is smaller than the shape being filled and repeat is set to false.
    QE Notes: Add tests where the BitmapFill shape or BitmapImage size is larger than the bitmap itself and repeat = false
    Doc Notes: None
    Bugs: SDK-17477, SDK-21980
    Reviewer: Glenn
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-17477
        http://bugs.adobe.com/jira/browse/SDK-21980
        http://bugs.adobe.com/jira/browse/SDK-17477
        http://bugs.adobe.com/jira/browse/SDK-21980
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/BitmapFill.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/BitmapImage.as

  • [svn:bz-trunk] 21393: Excluding all tests for bug 184631 as required webservice is no longer available and no bug information exists .

    Revision: 21393
    Revision: 21393
    Author:   [email protected]
    Date:     2011-06-16 08:03:16 -0700 (Thu, 16 Jun 2011)
    Log Message:
    Excluding all tests for bug 184631 as required webservice is no longer available and no bug information exists.
    Modified Paths:
        blazeds/trunk/qa/features/excludes.properties

    It has solved itself today. After making a -Syu today and installing a newer kernel then reinstalling catalyst-dkms from AUR it is working again!! )))) Marking as solved.
    Kernel: 3.9.5-1-ARCH
    Catalyst-dkms: 13.1-2 (instead of newest 13.4-1)
    Last edited by szebenyib (2013-06-14 12:02:42)

  • Updated my 4s and ipad3 and now both are basically useless. Cant access itunes store, app store, weather app wont work and multiple bugs with facebook. How am I supposed to fix all these problems????

    Updated my 4s and ipad3 and now both are basically useless. Cant access itunes store, app store, weather app wont work and multiple bugs with facebook. How am I supposed to fix all these problems????

    Hi Doomtrooper,
    When you updated your iPhone 4S and iPad3 to iOS6, what exactly do you mean when you can't access the iTunes store? Have you checked your connection to the network?
    Please be a little more specific

  • [svn:cairngorm3:] 17872: Popup: Exposed set accessor of open for view state usage and fixed bug when closing from model within popup .

    Revision: 17872
    Revision: 17872
    Author:   [email protected]
    Date:     2010-09-27 08:04:40 -0700 (Mon, 27 Sep 2010)
    Log Message:
    Popup: Exposed set accessor of open for view state usage and fixed bug when closing from model within popup. http://www.spicefactory.org/forum/viewtopic.php?p=3932. Added new sample to show model and view state interactions.
    Modified Paths:
        cairngorm3/trunk/libraries/Popup/src/com/adobe/cairngorm/popup/PopUpBase.as
        cairngorm3/trunk/libraries/Popup/src/com/adobe/cairngorm/popup/PopUpFactory.as
        cairngorm3/trunk/libraries/Popup/src/com/adobe/cairngorm/popup/PopUpWrapper.as
        cairngorm3/trunk/libraries/PopupTest/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupTest/src/samples/MyPopup.mxml
        cairngorm3/trunk/libraries/PopupTest/src/samples/PopUpPM.as
    Added Paths:
        cairngorm3/trunk/libraries/PopupTest/src/PopUpModelExample.mxml
        cairngorm3/trunk/libraries/PopupTest/src/samples/MyPopupWithModel.mxml

    Lots to be excited about. BUT...Just updated to 8.1 on one of my computers to test it out...
    Sadly, the following issue is NOT fixed for me. Is it with new projects only?  I haven't started a new project on 8.1 I've only opened an old project but the issue that I'm referring to which involves also a delay/freeze of anywhere from a few seconds to a MINUTE while the render bar goes from yellow to red and then back to yellow is still there. Boo.
    On the list above...
    Switching between sequences can turn the render bar red.
    This issue is incredibly easy to replicate. I really do hope it gets fixed. Here are the steps:
    1) Create two sequences with multiple short clips (the more clips the better)
    2) Make sure GPU acceleration is enabled.
    3) Add warp stabilizer to the clips in both sequences. Again, the more clips the longer the delay/freeze will be as the render bar goes from YELLOW to RED and then eventually back to YELLOW again.
    4) Hit SAVE.
    5) Now, toggle between sequences. You'll hit a short delay with a few clips stabilized and a LONG delay with lots stabilized. In my case this delay is around a full minute. The render bar will go from YELLOW to RED and then back to yellow...eventually.
    6) Toggle back to the original sequence and the delay occurs again.
    7) Once you've toggled between sequences and have gone through this delay, that's it, there is no longer a delay...UNTIL...(and here's the big kicker)...until the project is SAVED again. After that the issue returns when you toggle between sequences. Both saving manually and AUTOSAVING cause this issue. No way around it except not editing with GPU acceleration.
    Not sure what the issue is...caching issue when saving maybe? Either way, it stinks and it's still there in 8.1. Big bummer.
    Again, lots to be excited about with this release but I really was hopefully this specific issue was resolved.
    Sigh.

Maybe you are looking for

  • Submit BDC to process in background automatically

    How would I automtacally have my BDC session to process in the background and complete it without going through SM35 to process in the background.

  • Copying report file from one server to another requires refresh database?

    Hi, I am using Crystal Reports 11 for development. We have a number of crystal reports that are served on a web server running classic ASP that uses these reports with Embedded Crystal Server XI installed on the server. When I am developing or modify

  • Error while using UTL_FILE.FOPEN

    sir, when i write procedure using utl_file.fopen i am getting error as it must be declared PLS-00201. what mistake, i am doing. yours dr.s.r.bhattachar

  • Trailer page with sheetcounts

    Hi, We run documaker on the mainframe. We have around 100 output files created which we call destinations. Gendata outputs the input file (one file) to multiple output files based on the conditions given in the FSISYS.ini file. As our input file to d

  • Upgrading from Tiger Intel Mac XServe to Leopard

    Hi, I would like to find out whether if i have existing shared folders and users, when upgrading from Tiger to Leopard Intel Mac XServe, will there be any problem? Do i need to backup any database or files? I would appreciate if anyone could help me.