Flex 4 hideEffect transition bug

Hi.
I'm trying to create a slide effect. Everything works fine except the first hideEffect animation. The content does not become invisible when crossing the TabNavigator's border, which looks really ugly in my current project. The following simple example demonstrates the problem.
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                  xmlns:s="library://ns.adobe.com/flex/spark"
                  xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
                  backgroundColor="0xDDDDDD">
     <fx:Declarations>
          <s:Move id="hideEffect" xTo="700" />
     </fx:Declarations>
     <mx:TabNavigator width="500" height="300" x="100" y="0">
          <s:NavigatorContent label="ONE" hideEffect="{hideEffect}">
               <s:BorderContainer backgroundColor="0xFF0000" height="100" width="100"/>
          </s:NavigatorContent>
          <s:NavigatorContent label="TWO" hideEffect="{hideEffect}">
               <s:BorderContainer backgroundColor="0xFF0000" height="100" width="100"/>
          </s:NavigatorContent>
          <s:NavigatorContent label="THREE" hideEffect="{hideEffect}">
               <s:BorderContainer backgroundColor="0xFF0000" height="100" width="100"/>
          </s:NavigatorContent>
          <s:NavigatorContent label="FOUR" hideEffect="{hideEffect}">
               <s:BorderContainer backgroundColor="0xFF0000" height="100" width="100"/>
          </s:NavigatorContent>
     </mx:TabNavigator>
</s:Application>

For those who come across this thread, it was answered on the StackOverflow thread: http://stackoverflow.com/questions/5110765/flex-4-hideeffect-transition-bug/5130398#513039 8

Similar Messages

  • Patching Flex's AreaChart bug

    Does anyone know how to overcome Flex's AreaChart bug, which causes tooltips to display the same yField value for minFields?
    I.e. for:
    <mx:AreaSeries yField="TotalVariableCost" minField="TotalFixedCost" displayName="Total Cost">
    It will show:
    Total Cost
    high: TotalVariableCost
    low: TotalVariableCost
    As opposed to:
    Total Cost
    high: TotalVariableCost
    low: TotalFixedCost
    This bug is suppose to be in lines 2058 and 2083 of AreaSeries.as. Anybody know how to fix it?
    Thanks!
    --Dwayne

    It is a limitation.  UI widgets cannot be copied the way data objects can be
    copied.  You will need to override the dragDrop events and make your own
    copy by creating a new instance of the widget and copying the relevant
    properties.

  • Flex SDK 4, bug in mx.charts.AxisRenderer with lastLabel==null?

    Hi!
    I'm upgrading a Flex application from SDK 3.5 to 4.1.
    I have a problem with mx.charts.AreaChart, namely with it's horizontal AxisRenderer for DateTimeAxis.
    During layouting one of its internal variable (lastLabel in calcRotationAndSpacing() method) can become null, causing Null pointer error.
    From examining the source code it looks like the problem happens in calcRotationAndSpacing() when there is just one label (didn't examine yet why, but presumably for small regions and narrow datasets that may happen, though it may be a bug generating labels), canDropLabels==true, then at line 1814:
       lastLabel = _labels[maxSkipCount + 1];
    Even though maxSkipCount==0, _labels[] array has nothing at index 1, returning null.
    In SDK 3 the label was calculated differently:
       lastLabel = _labels[_labels.length - 1];       
    always returning at least the first label.
    I can build a sample app, but to save time would like to know first if anybody had this before, and if isn't that an obvious bug?
    Later code has no graceful handler for when lastLabel==null
    Thanks, Andrei.

    By googling for AxisRenderer it appears, that the class has a number of similar issues. There is at least one JIRA https://bugs.adobe.com/jira/browse/FLEXDMV-2275
    Sounds like I won't have another choice but figuring out a workaround to prevent too few labels, may be by holding on renderer customization till creation is complete.

  • Flex Spark DataGrid BUG skipping rows on refresh

    I have a small one file example that demonstrates this Flex DataGrid bug.
    I tried to report it to Flex bugs and the page timed out.
    I am filling a column in a spark datagrid with checkboxes to select that row.
    In the header of that column is a checkbox to select ALL the rows.
    However, the middle row is not getting refreshed so the display is wrong.
    The checkbox looks empty when the backing value is correct.
    I have added a print to the code that sets the values in the data and it is setting everyone.
    But when I print the isSelected code it is NOT being called on ONE (the middle) visible row.
    If I move away or scroll up and down the check box shows the check mark.
    So My only conclusion is that refresh has a bug.
    Here is the example that demonstrates the problem.
    Simply select the header checkbox and the 3rd checkbox does not get updated on refresh.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
              <fx:Script>
                        <![CDATA[
                                  import mx.collections.ArrayCollection;
                                  private static var values:Array = [
                                            {selected: false, position: 1},
                                            {selected: false, position: 2},
                                            {selected: false, position: 3},
                                            {selected: false, position: 4},
                                            {selected: false, position: 5}
                                  [Bindable]
                                  public static var datalist:ArrayCollection = new ArrayCollection( values );
                                  public static function updateDataList( value:Boolean ):void
                                            for each( var item:Object in datalist ) {
                                                      trace( "updated: " + item.position );
                                                      item.selected = value;
                                            datalist.refresh();
                        ]]>
              </fx:Script>
              <s:DataGrid dataProvider="{datalist}">
                        <s:columns>
                                  <s:ArrayList>
                                            <s:GridColumn dataField="position" width="200"/>
                                            <s:GridColumn width="34" >
                                                      <s:itemRenderer>
                                                                <fx:Component>
                                                                          <s:GridItemRenderer textAlign="center">
                                                                                    <fx:Script>
                                                                                              <![CDATA[
                                                                                                        private function changeSelection( data:Object, event:MouseEvent ):void
                                                                                                                  data.selected = ! data.selected;
                                                                                                        private function isSelected( data:Object ):Boolean
                                                                                                                  trace( "isSelected: " + data.position );
                                                                                                                  return data.selected;
                                                                                              ]]>
                                                                                    </fx:Script>
                                                                                    <s:layout>
                                                                                              <s:HorizontalLayout horizontalAlign="center" verticalAlign="middle"/>
                                                                                    </s:layout>
                                                                                    <s:CheckBox id="selbox" label="" selected="{isSelected(data)}"
                                                                                                                  click="changeSelection(data, event)"/>
                                                                          </s:GridItemRenderer>
                                                                </fx:Component>
                                                      </s:itemRenderer>
                                                      <s:headerRenderer>
                                                                <fx:Component>
                                                                          <s:GridItemRenderer height="30">
                                                                                    <fx:Script>
                                                                                              <![CDATA[
                                                                                                        [Bindable]
                                                                                                        private static var selectAll:Boolean = false;
                                                                                                        private function changeAllSelection( event:MouseEvent ):void
                                                                                                                  selectAll = ! selectAll;
                                                                                                                  Main.updateDataList( selectAll );
                                                                                              ]]>
                                                                                    </fx:Script>
                                                                                    <s:layout>
                                                                                              <s:VerticalLayout horizontalAlign="center" verticalAlign="middle"/>
                                                                                    </s:layout>
                                                                                    <s:CheckBox label="" selected="{selectAll}"
                                                                                                                  click="changeAllSelection(event)"/ >
                                                                          </s:GridItemRenderer>
                                                                </fx:Component>
                                                      </s:headerRenderer>
                                            </s:GridColumn>
                                  </s:ArrayList>
                        </s:columns>
              </s:DataGrid>
    </s:Application>
    Here is an image of the failed result... after selecting the top checkbox.
    Below is an image of the output produced by the two traces.
    Notice that the refresh has not called isSelected on the 3rd element.

    I have a small one file example that demonstrates this Flex DataGrid bug.
    I tried to report it to Flex bugs and the page timed out.
    I am filling a column in a spark datagrid with checkboxes to select that row.
    In the header of that column is a checkbox to select ALL the rows.
    However, the middle row is not getting refreshed so the display is wrong.
    The checkbox looks empty when the backing value is correct.
    I have added a print to the code that sets the values in the data and it is setting everyone.
    But when I print the isSelected code it is NOT being called on ONE (the middle) visible row.
    If I move away or scroll up and down the check box shows the check mark.
    So My only conclusion is that refresh has a bug.
    Here is the example that demonstrates the problem.
    Simply select the header checkbox and the 3rd checkbox does not get updated on refresh.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
              <fx:Script>
                        <![CDATA[
                                  import mx.collections.ArrayCollection;
                                  private static var values:Array = [
                                            {selected: false, position: 1},
                                            {selected: false, position: 2},
                                            {selected: false, position: 3},
                                            {selected: false, position: 4},
                                            {selected: false, position: 5}
                                  [Bindable]
                                  public static var datalist:ArrayCollection = new ArrayCollection( values );
                                  public static function updateDataList( value:Boolean ):void
                                            for each( var item:Object in datalist ) {
                                                      trace( "updated: " + item.position );
                                                      item.selected = value;
                                            datalist.refresh();
                        ]]>
              </fx:Script>
              <s:DataGrid dataProvider="{datalist}">
                        <s:columns>
                                  <s:ArrayList>
                                            <s:GridColumn dataField="position" width="200"/>
                                            <s:GridColumn width="34" >
                                                      <s:itemRenderer>
                                                                <fx:Component>
                                                                          <s:GridItemRenderer textAlign="center">
                                                                                    <fx:Script>
                                                                                              <![CDATA[
                                                                                                        private function changeSelection( data:Object, event:MouseEvent ):void
                                                                                                                  data.selected = ! data.selected;
                                                                                                        private function isSelected( data:Object ):Boolean
                                                                                                                  trace( "isSelected: " + data.position );
                                                                                                                  return data.selected;
                                                                                              ]]>
                                                                                    </fx:Script>
                                                                                    <s:layout>
                                                                                              <s:HorizontalLayout horizontalAlign="center" verticalAlign="middle"/>
                                                                                    </s:layout>
                                                                                    <s:CheckBox id="selbox" label="" selected="{isSelected(data)}"
                                                                                                                  click="changeSelection(data, event)"/>
                                                                          </s:GridItemRenderer>
                                                                </fx:Component>
                                                      </s:itemRenderer>
                                                      <s:headerRenderer>
                                                                <fx:Component>
                                                                          <s:GridItemRenderer height="30">
                                                                                    <fx:Script>
                                                                                              <![CDATA[
                                                                                                        [Bindable]
                                                                                                        private static var selectAll:Boolean = false;
                                                                                                        private function changeAllSelection( event:MouseEvent ):void
                                                                                                                  selectAll = ! selectAll;
                                                                                                                  Main.updateDataList( selectAll );
                                                                                              ]]>
                                                                                    </fx:Script>
                                                                                    <s:layout>
                                                                                              <s:VerticalLayout horizontalAlign="center" verticalAlign="middle"/>
                                                                                    </s:layout>
                                                                                    <s:CheckBox label="" selected="{selectAll}"
                                                                                                                  click="changeAllSelection(event)"/ >
                                                                          </s:GridItemRenderer>
                                                                </fx:Component>
                                                      </s:headerRenderer>
                                            </s:GridColumn>
                                  </s:ArrayList>
                        </s:columns>
              </s:DataGrid>
    </s:Application>
    Here is an image of the failed result... after selecting the top checkbox.
    Below is an image of the output produced by the two traces.
    Notice that the refresh has not called isSelected on the 3rd element.

  • Flex 4 TextInput Bug

    I have found a problem with the spark TextInput component.
    If the TextInput displayAsPassword variable is set to true and the user places a string of characters into the component but then highlights the whole string of characters and pastes a shorter string of characters in, the shorter string of characters only replaces the amount of characters that the pasted string has and maintains the rest of the characters of the longer string.
    For example, if I put "[email protected]" into the TextInput, highlight the entire string, then paste "blah" into the TextInput, it would appear that I have four characters within the component. However, when I trace out what is in the TextInput I get "[email protected]". The paste has only replaced the first four characters of the original string!!
    I have included some simple code so that you can check this for yourself. If you follow the example above and then press the "Check" button the Alert box will tell you what is actually in the TextInput field:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Script>
            <![CDATA[
                import mx.controls.Alert;
            ]]>
        </fx:Script>
        <s:HGroup width="100%" horizontalAlign="center">
            <s:TextInput
                id="ti"
                displayAsPassword="true"
                change="trace(ti.text)"/>
            <s:Button
                label="Check"
                click="Alert.show(ti.text);"/>
        </s:HGroup>
    </s:Application>

    Hey, you should log this as a bug on the Adobe Flex Bug system, https://bugs.adobe.com/jira/secure/Dashboard.jspa

  • Flex 2 : Possible bug in Slider

    Hi,
    I have been trying to restrict the thumbs of an HSlider from
    overlapping.
    Setting allowThumbOverlap to false did not work.
    I noticed that the ability of the thumbs to overlap is
    directly related to the maximum value allowed for the slider.
    Given below is an example for the same. I presume this must
    be a bug, since the documentation mentions
    nothing about this. If somebody can throw more light on this,
    it would be great.
    TestSlider.mxml
    ===========================
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*">
    <mx:HBox>
    <mx:Label text="Maximum 13" width="90"/>
    <mx:HSlider id="slider13" width="180" thumbCount="2"
    snapInterval="1" minimum="0" maximum="13" dataTipPlacement="bottom"
    />
    <mx:Label text="Thumbs overlap in both directions"
    width="300"/>
    </mx:HBox>
    <mx:HBox>
    <mx:Label text="Maximum 14" width="90"/>
    <mx:HSlider id="slider14" width="180" thumbCount="2"
    snapInterval="1" minimum="0" maximum="14"
    dataTipPlacement="bottom"/>
    <mx:Label text="Thumbs overlap from left to right"
    width="300"/>
    </mx:HBox>
    <mx:HBox>
    <mx:Label text="Maximum 15" width="90"/>
    <mx:HSlider id="slider15" width="180" thumbCount="2"
    snapInterval="1" minimum="0" maximum="15"
    dataTipPlacement="bottom"/>
    <mx:Label text="Thumbs do not overlap" width="300"/>
    </mx:HBox>
    </mx:Application>
    ===========================
    Regards!
    Santosh

    Santosh,
    This is indeed a bug. Thank you for bringing it to our
    attention. As a
    workaround, try using different values for the width property
    or don't
    specify a width at all.
    Jason Szeto
    Adobe Flex SDK Developer
    "stchavan" <[email protected]> wrote in
    message
    news:e9lh3m$sv0$[email protected]..
    > Hi,
    >
    > I have been trying to restrict the thumbs of an HSlider
    from overlapping.
    > Setting allowThumbOverlap to false did not work.
    > I noticed that the ability of the thumbs to overlap is
    directly related to
    > the
    > maximum value allowed for the slider.
    > Given below is an example for the same. I presume this
    must be a bug,
    > since
    > the documentation mentions
    > nothing about this. If somebody can throw more light on
    this, it would be
    > great.
    >
    > TestSlider.mxml
    > ===========================
    > <?xml version="1.0" encoding="utf-8"?>
    > <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*">
    > <mx:HBox>
    > <mx:Label text="Maximum 13" width="90"/>
    > <mx:HSlider id="slider13" width="180" thumbCount="2"
    snapInterval="1"
    > minimum="0" maximum="13" dataTipPlacement="bottom" />
    > <mx:Label text="Thumbs overlap in both directions"
    width="300"/>
    > </mx:HBox>
    > <mx:HBox>
    > <mx:Label text="Maximum 14" width="90"/>
    > <mx:HSlider id="slider14" width="180" thumbCount="2"
    snapInterval="1"
    > minimum="0" maximum="14" dataTipPlacement="bottom"/>
    > <mx:Label text="Thumbs overlap from left to right"
    width="300"/>
    > </mx:HBox>
    > <mx:HBox>
    > <mx:Label text="Maximum 15" width="90"/>
    > <mx:HSlider id="slider15" width="180" thumbCount="2"
    snapInterval="1"
    > minimum="0" maximum="15" dataTipPlacement="bottom"/>
    > <mx:Label text="Thumbs do not overlap"
    width="300"/>
    > </mx:HBox>
    > </mx:Application>
    > ===========================
    >
    > Regards!
    >
    > Santosh
    >

  • Flex 4.51 Bug

    Hi, I am using FlashProfesional CS5 and exporting swc to my flex 4.51.
    I am getting this error:
    VerifyError: Error #1053: Illegal override of TextLayoutFormatValueHolder in flashx.textLayout.formats.TextLayoutFormatValueHolder.
    at fl.text::TLFTextField/repaint()[F:\Stage\Flash11_Viper_Branch_31_Stage\main\authortool\St age\tlfRuntime\fl\text\TLFTextField.as:1050]
    at flash.display::DisplayObjectContainer/addChildAt()
    at fl.motion::AnimatorBase/play()
    at fl.motion::AnimatorBase$/processCurrentFrame()
    at fl.motion::AnimatorFactoryBase/addTargetInfo()
    When I am switching from TLFText to classic text, this works fine.
    Any ideas about how can I fix it or can you report this bug to adobe.

    had a similar problem in a flash project that required some classes from flex
    the layout of the project was that i had an AS-project in Flash Builder with an swc linked into it, that Flash CS5 compiled (basically, i needed Flash that could use RemoteObjects instead of simple NetConnection - and some way of boosting compilation time; Flash compiles the visual assets in an swc and FB builds the app using that swc)
    i tried messing around with the text-related-libs in both - FB and Flash; could not get this error fixed (it seemed to appear only for some tlf fields in Flash)
    The fix that i came up with was to:
    locate field causing the error
    removing it
    replacing it with a tlf-field that did not cause such errors (or creating a fresh one with the T-tool)
    manipulating the contents of the tlf as needed
    for some reason - it worked O-)

  • IPhone Time Picker's AM/PM Transition Bug

    Hello,
    There's a pretty sneaky bug in iPhone's time picker that causes AM/PM transitions to be incorrect.
    It can potentially cause a lot of grief if not noticed by the user.
    I have detailed it here:
    http://adhocd.wordpress.com/2008/10/05/calendar-bug/
    Thank you.

    I was able to recreate the bug as exactly as shown on your website (http://adhocd.wordpress.com/2008/10/05/calendar-bug).
    I am using an iPhone 3G 16gb with firmware 2.0 (5A345). I hope this is helpful.

  • Flex Builder 2 Bug

    For some reason, the text labels in the toolbar of my Flex
    Builder installation have a white background. In fact, the same is
    true for every Macromedia application I have installed. I have the
    apps installed on another computer without any display bugs at all.
    Anybody have an idea as to why this happens? I have posted an
    image
    here
    showing the glitch. I only get that behavior in Dreamweaver,
    Fireworks and Flash after my mouse moves over the buttons for the
    first time.
    I also have an error in Flex when I try to open an html
    document which contains a swf. For example, the SyleExplorer from
    AdobeConsulting.
    Thanks for your help!

    For some reason, the text labels in the toolbar of my Flex
    Builder installation have a white background. In fact, the same is
    true for every Macromedia application I have installed. I have the
    apps installed on another computer without any display bugs at all.
    Anybody have an idea as to why this happens? I have posted an
    image
    here
    showing the glitch. I only get that behavior in Dreamweaver,
    Fireworks and Flash after my mouse moves over the buttons for the
    first time.
    I also have an error in Flex when I try to open an html
    document which contains a swf. For example, the SyleExplorer from
    AdobeConsulting.
    Thanks for your help!

  • Premier Pro CC 2014 - Apply Video Transition Bug

    When you add a Apply Video Transition, it doesn't use the current video I have been editing, it uses what was there.  In other words say, I remove some video I don't want and then I Apply Video Transition to the end cut I just made and then you have a new begin of a piece of video.  It's still using what I had there before.  It should be using what I have now not what was there.
    Thanks,
    Kenneth

    Right click on either one of the two nested sequences - Right Small or Left Small, and from the drop down menu, choose Render and Replace.
    Does that help?
    MtD

  • Stupid transition bug... black square appears

    Hello
    I am not very experienced with flash at all... but I wanted to make a nice slide show swf file to go on a CD of images I am creating for someone. I figured out how to put them all in layers, do motion tweening on each after they'd been converted to symbols, brought the color>alpha to zero at frame one and brought it up or down at the right times to fade in and then out.
    beautiful...
    except it only works on the stage. I can press play and it looks great... but if I test movie or test scene, or even if I export the movie, it doesn't work at all.
    As soon as the slides begin a mysterious black square appears. It seems to have something to do with the actual fading in or out. It's not a layer that wasn't set at alpha= 0... I checked and double checked them all. I can't see anything amiss.
    I checked the tutorials I could find and nothing seems to be missing and yet, it isn't working so something must be wrong or done incorrectly. I don't understand why I can only see it on testing and not during playback

    Same situation here. A workaround is to edit the photo change the filter, save the picture. Now the picture shows up normaly. Do you call the camera app from the lock screen or the home screen?
    If I start the camera app from the home screen he problem doesn't appear.

  • Constant Power Transition Sudden Jump in Levels Bug

    Sorry if the discussion's title is confusing – that's honestly the best way I could think of to explain what I'm experiencing. Here's a video screen grab with audio to illustrate further the possible bug I've run into: Premiere CC 2014 Audio Transition Bug - YouTube Do you hear that little jump in volume right as the playhead plays through the transition? It almost sounds as if it's doing the precise opposite of what the fade should be doing.
    I'm just trying to add some small, two-frame, Constant Power transitions to some audio tracks to smooth out a cut – one of the oldest tricks in the book. I see this in many different kinds of projects, regardless of size, creation date, types/formats of media used, timeline settings, etc. It mostly just seems random to be honest.
    This specific project is very minimal with all 1080p ProRes media being used. No .MTS, .MP4, or anything of the like. The project is all cuts, and no fancy VFX, titles, color grading, dynamic linked clips, etc. It's all quite simple.
    Does anyone have any ideas on how to fix this problem? Thanks in advance for your help!

    I see you have a stereo track.  When I panned my tracks 100 I would get pops and glitches, when I panned them 99 the pops and glitches went away.  Adobe support also told me that Constant Gain is the least buggy of all the transitions, while Constant Power is the most buggy.

  • Flex bug or Safari bug?

    Hi,
    The scroll wheel does not work in a text area running Safari
    for both Mac and Win. Is this a flex or safari bug?
    Thanks,
    Paul

    Hi,
    The scroll wheel does not work in a text area running Safari
    for both Mac and Win. Is this a flex or safari bug?
    Thanks,
    Paul

  • [svn:fx-trunk] 16929: Add a [Mixin] class that will register the required class aliases in the event the mxml compiler generation   [RemoteClass(alias="")] code is not called because an application does not use the Flex UI framework .

    Revision: 16929
    Revision: 16929
    Author:   [email protected]
    Date:     2010-07-15 07:38:44 -0700 (Thu, 15 Jul 2010)
    Log Message:
    Add a class that will register the required class aliases in the event the mxml compiler generation  [RemoteClass(alias="")] code is not called because an application does not use the Flex UI framework.
    Add a reference to this class in the RPCClasses file so it always gets loaded.
    QE notes: Need a remoting and messaging regression test that doesn't use Flex UI.
    Bugs: Watson bug 2638788
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/RPCClasses.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/RpcClassAliasInitializer.as

    Great exercise to document the problem like this.  It got me thinking about how an app with modules would be different from an app that does not use modules.  Solution: I moved the dummy reference of PersonPhotoView out to the main application file (as opposed to being inside the module) and it worked.  I've probably been lucky not to have experienced this problem earlier, because for most other entities I have an instance attached to my model which is linked / compiled with the main application.

  • Adobe Flash Player 10.1.82.76 update just released (fixes SWF in PPT bug)

    Hi,
    If you are using the Adobe Flash Player make sure you update to Adobe Flash Player 10.1.82.76 ([released by Adobe on August 10th 2010|https://www.adobe.com/support/security/bulletins/apsb10-16.html]).
    As well as having the latest security fixes this update also fixes the Adobe Flash Player bug that stopped Xcelsius SWFs from working when you embedded them into a PPT: https://www.adobe.com/support/security/bulletins/apsb10-16.html
    FYI: Xcelsius is based on Adobe Flex and this bug also affected any Adobe Flex based SWF that was embedded into a PPT not just Xcelsius.
    Regards
    Matt

    Hi,
    If you are using the Adobe Flash Player make sure you update to Adobe Flash Player 10.1.82.76 ([released by Adobe on August 10th 2010|https://www.adobe.com/support/security/bulletins/apsb10-16.html]).
    As well as having the latest security fixes this update also fixes the Adobe Flash Player bug that stopped Xcelsius SWFs from working when you embedded them into a PPT: https://www.adobe.com/support/security/bulletins/apsb10-16.html
    FYI: Xcelsius is based on Adobe Flex and this bug also affected any Adobe Flex based SWF that was embedded into a PPT not just Xcelsius.
    Regards
    Matt

Maybe you are looking for

  • Acrobat XI Pro trial won't install under Yosemite

    I've downloaded a trial version of Acrobat XI and launched the installer but I get the spinning wheel after clicking on "Install" and it becomes unresponsive and I have to Force Quit. I don't get an error message. I've just noticed that Adobe Reader

  • How to call functions in windows or Solaris in servlet?

    Hello, Does anyone know if there is a way for servlets to call functions in windows or solaris shell command???? Thanks :)

  • How can i get my apps back?

    I had a 4th generation ipod touch that i bought apps on through the app store, but it broke so i bought another but now i cant figure out how to get the apps back. I tried going to the app store, then to purchased (using the same account) but in the

  • Issue out despite Expiry Date is over

    Dear all, We have maintained the minimum remaining shelf life as 100 days for the materials . It prompt us to key in the Shelf Life Exp. Date during MIGO but during Good Issue, even though the expiry date is over, the system still allow us to issue o

  • Runtime Tax data fetching while Accounts Save

    Hi, How to get the Role, Tax IDs and Tax Classification details at the runtime of the Accounts create or save from web gui within the event ON_SAVE of the BP_HEAD BSP component. Thanks for your response. Aravind Edited by: Aravindakshan M R on Feb 25