Title WIndow + DataGrid BUG

I am using the PopUpManager to create as a pop-up a
TitleWindow which contains a DataGrid with some elements.
Whenever i select an item from the DataGrid i dispatch an
event to notify the parent application and then I remove the PopUp
like this:
<mx:DataGrid change="myFunction(event)/>
public function myFunction(event:Event):void
//Logic to dispatch a custom event
PopUpManager.removePopUp(this);
The thing is this is causing an error in the Flex SDK
classes, the error says:
TypeError: Error #1009: Cannot access a property or method of
a null object reference
at
mx.controls.listClasses::ListBase/::mouseIsUp():[ListBase.as:7029]
at
mx.controls.listClasses::ListBase/mx.controls.listClasses:ListBase::mouseUpHandler():[Lis tBase.as:7060]
at
mx.controls::DataGrid/mx.controls:DataGrid::mouseUpHandler():[DataGrid.as:4211]
So what's the deal here??? I am removing the popUp on the
change event of the DataGrid and it fails, why is that?
If i change it so the change event only dispatches the event
and then I manually close the popup using the close button then it
works, but it doesn't work when i try to close the PopUp from the
change event of the DataGrid.
Any ideas? is it a bug?

This is what the DataGrid tries to do after the popUp is
closed:
TypeError: Error #1009: Cannot access a property or method of
a null object reference
at
mx.controls.listClasses::ListBase/::mouseIsUp():[ListBase.as:7029]
at
mx.controls.listClasses::ListBase/mx.controls.listClasses:ListBase::mouseUpHandler():[Lis tBase.as:7060]
at
mx.controls::DataGrid/mx.controls:DataGrid::mouseUpHandler():[DataGrid.as:4211]
This didn't happen in Flex 2.0, which makes me believe it is
a Flex 2.0.1 bug, and i hope Adobe can solve it (it worked before)
for a next update.
It seems that the workaround will be to delay the call to
RemovePopUp as you mention, either by using a timer or by using the
CallLater( ) method.
I would like to know if Adobe has a better workaround and if
they are aware of this bug

Similar Messages

  • Title window issue

    Hi ....
      I want to create title window to menu that is in list but it not visible to me......first I created list ->it contains datagrid -when i click the data in the datagrid it will create the menu ->menu contains five labels when i click a label want to show title window  but title window not shown to me....wat to do? any one give solution for me?
    Thanks&Advance,
    senthil

    function nenu():void
    var myMenu:Menu= Menu.createMenu(null,Upload_Count, false);myMenu.labelField=
    "@label"; 
    myMenu.addEventListener(MenuEvent.ITEM_CLICK,itemClickUsermenu);
    myMenu.setStyle(
    "themeColor", "black");
    myMenu.show();
    function itemClickUsermenu(event:MenuEvent):void
    if(event.item.@label=="Add"){
    createPopUp();
    else if(event.item.@label=="Edit"){
    createPopUp();
    else if(event.item.@label=="Edit Existing Data"){
    createPopUp();
    //title window creation//
    function createPopUp():void
    var rtw:TitleWindow = new TitleWindow();
    var lbl1:spark.components.Label=new spark.components.Label();
    var lbl2:spark.components.Label=new spark.components.Label();
    rtw.title="Explorer User Prompt.";
    rtw.height = 150;
    rtw.width = 550;
    rtw.x =80;
    rtw.y =50;
    lbl1.text = "Script Prompt:";
    lbl2.text = "New Option Value.";
    lbl1.top = lbl1.left =lbl1.right = lbl1.bottom = 10;
    lbl2.top = 20;
    rtw.addEventListener("close", closeHandler);
    rtw.addElement(lbl1);
    rtw.addElement(lbl2);
    PopUpManager.addPopUp(rtw, this, false); 
    This one is perfectly working in outside area .i mean ouside of the list...but not working witin the  list contains  datagrid.....
    -if i use directly in the datagrid without list it is working good....list only problem for me...pls give any idea...
    Thanks&Regards,
    senthil.

  • When i open finder the windown is a completely blank grey box with the title "Window" as a header, and all my folders will not open when clicked

    when i open finder the windown is a completely blank grey box with the title "Window" as a header, and all my folders will not open when c
    the problem started when my computer screen broke from something falling on it, the screen was replaced but the people that fixed it for me told me there may be some hard disk issues when a problem like this happens, they ran their own checks and found nothing and i was given my laptop back, then when i tried to use it, i found this problem. everything else works fine.
    i have shutdown and re-started my computer multiple times and i have also re-started finder multiple times, both having no effect
    i have also done a few other things to find that my apple.com.finder.plist and apple.com.sidebar.plist are both missing, and are not re-creating themselves, i have found no way to bring them back either.
    any help would be greatly appreciated, thanks

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • Using a repeater to pass content to a title window

    Hi I have a repeater that has a button and the button open a title window component from flex
    So far I use the name property of the button to pass the title from the repeater to the title of the titlewindow
    here it is:
    Vimeo is the name of the repeater
    <mx:button name="{vimeo.currentItem.title}"
    on the as3:
    myWindow.title=event.currentTarget.name;
    so far I can open it with the names from the list.
    Also I have an html inside of the title window and I want to set its location from the parameters of the repeater
    so here is when it start to be hard to imagine a way to retrieve that information from the repeater and pass it to
    the location.
    here is my code.
    import mx.managers.PopUpManager;
                        import mx.containers.*;
                                  import mx.controls.Alert;
                                  import mx.rpc.events.FaultEvent;
                                  import mx.rpc.events.ResultEvent;
                                  import flsWindow;
                                  private function openWindowVimeo(event:MouseEvent):void{
                                            var myVimeoWindow:TitleWindow= TitleWindow(PopUpManager.createPopUp(this, flsWindow, true));
                                            myVimeoWindow.width=800;
                                            myVimeoWindow.height=600;
                                            myVimeoWindow.title = event.currentTarget.name;
                                            var myHtml:HTML= new HTML;
                                            myHtml.location={myText.text};//tried to make this happens though is always with error;
                                            myHtml.width=800;
                                            myHtml.height=600;
                                            myHtml.x=0;
                                            myHtml.y=0;
                                            myVimeoWindow.addChild(myHtml);
    <mx:HTTPService id="vimeoService" url="http://vimeo.com/api/v2/iglesiafls/videos.xml" resultFormat="e4x" fault="onFault(event)"/>
    <mx:XMLListCollection id="myVimeoList" source="{vimeoService.lastResult.video}"/>
              <mx:VBox width="340" height="334" x="699" y="422">
                        <mx:Repeater id="vimeo" dataProvider="{myVimeoList}">
                        <mx:Image source="{vimeo.currentItem.thumbnail_medium}" width="200" height="150"/>
                        <mx:Text id="titleText" text="{vimeo.currentItem.title}" color="#F5FBFC" fontSize="14" width="300"/>
                        <mx:Text text="{vimeo.currentItem.description}" color="#F5FAFB" width="300"/>
                        <mx:Text text="{vimeo.currentItem.url}" id="myText"/>
                        <mx:Button  name="{vimeo.currentItem.title}" label="ver video" click="openWindowVimeo(event)" enabled="true"/>
      </mx:Repeater>
      </mx:VBox>

    I have this resolved already

  • ITunes 10.4 and Windows 7 bug thread

    I thought I would start an entire thread devoted to iTunes 10.4 and Windows 7 bugs since there are MANY people reporting various issues and may not know about all of them. Hopefully this will combine a list of all bugs for reference and help others. So far, most of this effects Windows 7 64 bit, but some are reporting issues under 32 bit too.
    I have spoken with both Apple Care and a higher level tech at iTunes support. The iTunes support tech said they were "looking into all reported bugs and are aware of issues with version 10.4, especially under Windows 7. They encourage others to report their bugs to iTunes support so they can work on this and find all the issues.
    KNOWN BUGS:
    Album Art copy/paste broken - A bug that causes copy/pase from clipboard where album art is not displayed in the info tab as before. Some have reported success by dragging the image file over to it vs copy/paste method but it is still very much spotty and a known bug.
    iTunes store not working - Some have been effected with the iTunes store not working properly for them. Personally I don't have a problem but this has been for some.
    "Purchases" link not working in iTunes - When you click on "Purchases" link on the right column, all your purchases are missing and do not show up. This includes, music, movies, apps, etc. This is also a known bug and one that I have personally. Works fine in iTunes 10.3 for Windows 7 64bit and also works fine under both Snow Leopard and Lion OS.
    Sync issues - Some have reported syncing issues since upgrading to 10.4 iTunes on Windows 7. This is a bit spotty as well as I have no trouble but there are others that have reported issues.
    Solutions:
    For now, the only way to fix this is to use iTunes 10.4 under Snow Leopard or Lion OS. Also, you can uninstall (not repair) 10.4 and install 10.3 again which should work.

    You are correct and I wish that I had known this before spending 4 days and a lot of trouble going over this with both Apple Care and iTunes support. They had me jumping through hoops and didn't know anything until it was finally escalated. Only then did I get a vague response like I mentioned in the first post. It's troubling to me how a simple response from anyone there could've just said we know about this and they are bugs in 10.4 causing this.
    There are other issues too as you point out with the syncing and crashing. Anyway, hopefully others will find information here more useful than calling Apple for help. Not much we can do now except roll back to 10.3 for those that kept it and hope also they can updated Apple Application Support component.

  • Calling a method in Parent component from Title Window

    Hi all,
    I have a parent component that opens up a Title window when I
    click a button. Now I want to call a method in that parent
    component from the Title window. How do I do this in Flex? Could
    anyone give me a hint please.
    Thank you in advance for the help

    "happybrowndog" <[email protected]> wrote in
    message
    news:gctmql$4t5$[email protected]..
    > That's goddamned ridiculous. What were Flex developers
    thinking that you
    > have
    > to write a custom event to call back to a parent
    component?? Other GUI
    > libraries such as WxWidgets, Fox, Qt, Delphi, MFC,
    WinForms, etc., all
    > allow
    > you to either call via a reference to the parent object
    or submit a
    > callback
    > function into the child object. That's just basic OO
    programming. Flex
    > is
    > looking more and more ridiculous and more like Swing -
    tons of unnecessary
    > coding to do simple things.
    You absolutely _do_ have the capability to pass in a
    reference to the parent
    component, or to create a "hard" reference to
    Application.application. But
    these are not recommended practices, because anything you
    create this way is
    then tied to an environment that implements those properties
    and methods.
    Q (3): I want to run a function in my main application from
    inside my
    custom component. But when I try to refer to myFunction() in
    that
    component, I get a compile time error Call to a possibly
    undefined function
    myFunction. How can I fix this?
    A: Your component has its own scope, so it doesn't know
    anything
    about the functions in the main file. You can get around this
    by directly
    referencing the main application scope like this:
    Application.application.myFunction(). However, this makes
    your component
    tightly coupled, which is a quick way of saying that your
    component is only
    usable in an application that has a myFunction() function in
    it. You're
    better off dispatching an event from your component and
    letting the
    application decide how to handle it. For more information,
    check out the
    following resources:
    http://www.adobe.com/devnet/flex/articles/loose_coupling.html
    http://www.adobe.com/devnet/flex/articles/graduating_pt1.html
    From
    http://www.magnoliamultimedia.com/flex_examples/Amys_Flex_FAQ.pdf

  • How to set custom size of Close Button e.g. 32x32  of Title Window in Flex 4

    How to set custom size of Close Button e.g. 32x32 of Title Window in Flex 4?

    Hi
    Here is the code of the Button in the skin class of spark title window.
    <s:Button id="closeButton" skinClass="spark.skins.spark.TitleWindowCloseButtonSkin"
                              width="15" height="15" right="7" top="7" />
    So first change the default height and width from 15 to 32. Then in the Button Skin class i.e. spark.skins.spark.TitleWindowCloseButtonSkin change paths to modify the cross symbol.
    Hope this helps
    Rush-me

  • Problem with the Titler WIndow

    Hello,
    I don't know how it happened but the titler window is saparate in 2 windows : one with the title by it self and the other one with tools and buttons.
    How is it possible to have only one window again ?
    Thank you for your help and regards,
    Daniel

    Daniel,
    Though I would expect it to be in Eddie's link, you only need to go to Window (in the Toolbar at the top of the GUI), choose Workspaces, and then choose one of the default Workspaces listed, or any Custom Workspaces that you might have created. Hint: once you get a Workspace set up the way you like it, do save it as a Custom Workspace. Can save a lot of time later. I have about a dozen, plus the ones that ship/install with PrPro and use them for different tasks.
    Good luck,
    Hunt

  • How to put the background image in Title Window?

    Hi,
    I'm newbie in flex. I 'm using Flex 4.
    Can anyone give me some guidelines on how to put the background image in Title Window?
    Is it possible to do this?
    Thanks.

    Hi,
    Check the below sample code
    <?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:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Style>
            @namespace s "library://ns.adobe.com/flex/spark";
            @namespace mx "library://ns.adobe.com/flex/mx";
            s|BorderContainer {
                background-image:Embed(source="image/wheres_the_green_rez.jpg");
                background-image-fill-mode:clip;
        </fx:Style>
        <s:TitleWindow width="100%" height="100%">
            <s:BorderContainer width="100%" height="100%"/>
        </s:TitleWindow>
    </s:Application>
    Regards,
    Anitha

  • IFrame(child container) still visible after closing the title window(parent container)

    Hi All ,
    I have created a sample project using a link button which when clicked opens up an TitleWindow which has an iframe and a text area in a hbox
    When you execute the application ,
              Click the link button
              The Popup window opens up showing the title window with the close button
              Click the close button of the title window
              The Title window is removed and the iframe and the text area are not visible
    Do this a couple of times
    You can notice that the iframe is still visible even when the title window is closed
    Can someone explain me how this issue can be resolved and also explain me why the iframe(child container) is still visible when the title window(parent container) is not visible. 
    Main Application file
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
        width="100%" height="100%" creationPolicy="all"
        xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical" creationComplete="init()"
        xmlns:containers="containers.*">
       <mx:Script>
       <![CDATA[
           import mx.managers.PopUpManager;
           import containers.PopUpBrowser;
           public function doRequest():void
                    var requestPopup:PopUpBrowser = PopUpManager.createPopUp(this, PopUpBrowser) as PopUpBrowser;
                    PopUpManager.addPopUp(requestPopup,this);
                    requestPopup.x = 220;
                    requestPopup.y = 50;
       ]]>
       </mx:Script>
       <mx:Text fontSize="14" fontWeight="bold" text="Click the link button below to open the Title Window" />
       <mx:Spacer height="100"/>
       <mx:LinkButton label="Click me" fontSize="16" fontWeight="bold" click="doRequest()"/>
    </mx:Application>
    PopUpBrowser.mxml Component
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TitleWindow
        xmlns:mx="http://www.adobe.com/2006/mxml"
        close="removeMe()"
        showCloseButton="true"
        styleName="myTitleWindowStyle"
        width="850" height="500"
        title="Klout User Profile"
        paddingTop="1" paddingBottom="1"
        paddingLeft="1" paddingRight="1"
        xmlns:generic="com.serendio.voom.components.generic.*"
        xmlns:flexiframe="http://code.google.com/p/flex-iframe/"
        horizontalScrollPolicy="off"
        verticalScrollPolicy="off" >
        <mx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                public function removeMe():void
                    PopUpManager.removePopUp(this);
            ]]>
        </mx:Script>
        <mx:HBox width="100%" height="100%">
        <flexiframe:IFrame source="http://www.google.com" id="iFrame" width="50%" height="100%"/>
        <mx:TextArea text="Open and close the title window few times and watch the iframe remain visible even when the title window is closed"
             fontSize="14" width="50%" height="80%"/>
        </mx:HBox>
    </mx:TitleWindow>
    Thanks,
    Ajantha

    Hey,
    This is working fine for me with the current 4.5 Flex, Firefox 3.6.12, IE8. On what browser you are getting this error.
    Thanks,
    Jayagopal.

  • Panel, title window buttons

    Hi everybody
    I wonder, i know its possible to add buttons, to the titlebar
    of a title window, but i don't know how its done, can someone
    explain me please? or send me a link with a tutorial. Also i'd like
    to know if its possible to add another type of controls such as
    input text or combobox.
    Thanks

    Here's a sample I've created, it just so happens I'm
    currently working on something similiar.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="400" height="300">
    <mx:XML id="cmbXML">
    <root>
    <item label="item one" />
    <item label="item two" />
    </root>
    </mx:XML>
    <mx:TitleWindow width="100%" height="100%"
    layout="absolute" title="Title Window Test">
    <mx:Button label="Button" right="10" bottom="10"/>
    <mx:Button label="Button" right="83" bottom="10"/>
    <mx:TextArea left="10" right="10" top="10"
    bottom="40"/>
    </mx:TitleWindow>
    <mx:Image source="images/common/cross.png" right="10"
    top="6"/>
    <mx:ComboBox right="40" y="4"
    dataProvider="{cmbXML.item}" labelField="@label" />
    </mx:Canvas>
    The only challenge is, as a popup window I can't drag it
    around, i have to let the mouse drag event fall through to the
    canvas somehow.

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

  • How do you change image size in the title window?

    I just changed operating systems to Windows 7, which meant that I had to re install Premiere Pro CS4. I am now working on a 64 bit system. Might not make any difference, but thought I would give you the specifics just in case.  When I pull up the title window to add a title to my clip, the image is about the size of a postage stamp. How do I increase the size of the image in that window?

    Thank you again for responding Hunt. I did find out what what was happening.
    I had to reinstall the program on my computer. I just upgraded to Windows 7, and I now have a 64 bit system. When I booted up PPCS4, I assumed that my settings would be the same as they were before when I had Vista installed and didn't bother to check them when I started a new project. Well, they were not. I also added a TV tuner card to my computer. I now can watch HD TV on my computer. I suppose that it is possible that somehow PPCS4 noticed that, and set my default settings to HD, rather than NTSC DV. I just merrily went along clicking the OK button and started editing. When I start a new project now, I select NTSC DV and the Title window works just fine, and exactly the way I expect it to.
    I just received Jeff Bellune's book Adobe Encore DVD 2.0 in the mail and will be totally immersed in Encore studies today. With all of his children, I don't see how he had time to write it, but I'm glad that he did. I also ordered a book entitled Designing Menus with Encore DVD. I know that it was written for an earlier version than CS4, but I will trust what you said about that. Many things are the same with some minor variations due to upgrades in the program. The basic ideas don't change, but how you accomplish them can, and usually do over time.
    Terry Lee Martin
    Date: Mon, 17 Aug 2009 16:04:16 -0600
    From: [email protected]
    To: [email protected]
    Subject: how do you change image size in the title window?
    Welcome to the forum.
    That is an odd one. The Title should be the same Frame Size as your Project/Sequence. What is it's Frame Size? Also, are you perhaps doing a Title based on an older Template, that was done for a different Frame Size?
    What happens if you choose Title>New Title>Default Still?
    Good luck,
    Hunt
    >

  • Title Window is minimized and I can't edit it??

    Hi there guys,
    System: MacIntosh (Intel)
    Adobe Premiere Pro CS4
    This is a newb question, however it's a problem I can't seem to fix and it's buggin me. As you can see in the picture i've added, the window for editing the title is extremely small, and therefore I can't edit it. How can I make the window viewable again. And while I'm at it, (if you look at the picture again) my "Properties" bar is not nested or "docked" within the Title maker, is there a way to reverse this?
    Thanks in advance.
    [email protected]

    Hi John,
    Thanks for the reply, I tried using Cmd+alt+shift and Ctrl+alt+shift and both did not work, the title window is still barely viewable. Do you know of any other way of doing this?
    However I found this
    http://kb2.adobe.com/cps/331/331083.html
    To reset preferences
    Windows
    CS3  Hold Control down
    CS2 hold down Ctrl+Alt+Shift
    MacIntosh
    CS3 Hold Option
    CS2 Hold Cmd+Option+Shift
    However as i've mentionned before im using CS4...
    This link http://kb2.adobe.com/cps/311/311231.html
    says to delete the Preference cache, yet I can't find it in the System files or through a Finder search (basically a search for all the Windows people)

  • Dispatching an event while closing a title window

    my app requires some data to be refreshed whenever a new data is submitted
    the new data is submitted in a form that opens in a seperate title windiw and i want to dispatch some sort of an event or indication which can be listened to in my main program so that data can be refreshed as soon as the window is closed .....
    the close event doesnt work because i close my title window manually at the submission of data , without clicking on the close button , ... I tried making a custom event and dispatching but doesnt seem to work out .... I am quite a beginner so please help me out with this ....
    thanks a lot

    go through these links once:
    http://livedocs.adobe.com/flex/3/html/help.html?content=createevents_3.html
    http://livedocs.adobe.com/flex/3/html/help.html?content=events_07.html

Maybe you are looking for

  • BDB Performance Tuning.

    Hello All, In efforts to tune BDB JE's performance, I'd like to ask everyone what sort of things you have looked at and tried. The application looks like this: it has multi-threaded reads/writes with large number of small entries. One thread for writ

  • How do you disable the shortcut key in Mail that deletes all mail in the trash folder

    Is there a way to disable the shortcut key in Mail in Mountain Lion that deletes all mail in the Trash folder in all accounts: <shift><command><delete> ? I did it once by mistake and it deleted all my trash - it is very difficult to restore when ther

  • Netbackup , TWS and RMAN

    DB version: 11.2 OS : AIX I have joined a new company where RMAN backups go to Tape using Veritas Netbackup and these backup jobs are scheduled using IBM TWS (Tivoli Work Scheduler). Prior to joining this company, I have only worked with RMAN using c

  • Keep getting error parsing file message

    Help please !! I am trying to convert CR2 files from a 5DMK2 in DNG using version 3.5 of the Adobe DNG convertor and no matter what I do I am getting the " there was an error parsing the file" message. I am running the DNG convertor on Mac OSX versio

  • If I upgrade my system software will I loose use of iWeb?

    I am getting the new iPhone and want to upgrade my MacBook Pro software to the newest version.  I am currently using iWeb and don't want to loose use of it when I upgrade my system software.  Will I still be able to manage my web site with the new sy