Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Timeline Questions

    I am using SmartGWT Power 3.1 4/12/2013

    I am trying to determine if we could replace the Gantt chart we created using Flex in favor of your Calendar API.

    The documentation doesn't appear to be overly clear, so I was hoping you can clarify. If I try to get minute resolution in the header I can't even get the chart to load, the UI just hangs. Frankly, this isn't entirely necessary as a view, but I am trying to get finer resolution for drag n drop of events on the timeline. Does there exist a way to set the drag step size independent of the smallest column heading? If we use TimeUnit.DAY, TimeUnit.HOUR for the headings and set the default range to 24 hours That ought to be sufficient for the view, but users need to be able to drag events with minute resolution.

    Secondly, the chart tends to draw events beyond the range of the defined columns if the event extends beyond the visible range. Is there a way to prevent this from occurring?

    We would like the user to be able to rearrange the vertical order of events, we would use this for prioritization. I cannot seem to find a way in the current implementation to enable this kind of capability?

    Thanks for your help.

    #2
    1. the UI is probably "hanging" because you're trying to show an entire day at minute granularity (hundreds of headers). Currently there isn't a way to decouple header granularity from drag granularity, but that's a good suggestion that we'll probably add to 4.0.

    2. we can't quite figure out what this means. Can you show a screenshot, or ideally, code to reproduce this issue?

    3. there's no supported property for this at the moment, but it's another good suggestion that we can add to 4.0. At a hack level, since the lanes are a grid, you might be able to use the AutoChild system to enable canReorderRecords and add event handlers to rebuild the Timeline.

    Comment


      #3
      Thank you for your feedback. I will have to follow up with you later on issue 2. I can't seem to get my dev environment up and running at present.

      Comment


        #4
        I have attached the source and screenshot. You can see the events draw beyond the last hour column.

        I get this behavior in both in firefox 20.0.1 and IE 8, both deployed and hosted.

        I have also noticed that although I have set the intial range to be:
        Code:
                LogicalDate startLD = DateUtil.getLogicalDateOnly(new Date());
                LogicalTime startLT = DateUtil.createLogicalTime(startLD.getTimezoneOffset() / 60,0,0,0);
                Date start = DateUtil.combineLogicalDateAndTime(startLD, startLT);
                Date end = new Date(start.getTime() + 24 * 60 * 60 * 1000);
                timeline.setStartDate(start);
                timeline.setEndDate(end);
        That once you use the date picker to change the visible date, the displayed time range seems a bit unpredictable.

        Also it's a bit bizarre that the day header is split into two columns although it is a singular day.
        Attached Files

        Comment


          #5
          The problem here is most likely somewhere in the data, but your test case doesn't include it. Can you make this into a clientOnly DataSource instead; we only need enough data to see the problem, so it should be just a handful of lines of code.

          Comment


            #6
            I went looking to the dev console for anything I could find that stood out and came across this

            Code:
            16:20:29.073:INFO:Log:initialized
            16:20:29.678:WARN:Log:SmartClient module version mismatch detected: This application is loading the core module from SmartClient version 'v8.3p_2013-04-12/PowerEdition Deployment' and additional modules from 'v8.3p_2013-04-12'. Mixing resources from different SmartClient packages is not supported and may lead to unpredictable behavior. If you are deploying resources from a single package you may need to clear your browser cache, or restart your browser.
            16:20:29.724:WARN:Log:SmartClient module version mismatch detected: This application is loading the core module from SmartClient version 'v8.3p_2013-04-12/PowerEdition Deployment' and additional modules from 'v8.3p_2013-04-12'. Mixing resources from different SmartClient packages is not supported and may lead to unpredictable behavior. If you are deploying resources from a single package you may need to clear your browser cache, or restart your browser.
            16:20:29.795:WARN:Log:New Class ID: 'IMenuButton' collides with ID of existing Class object '[Class IMenuButton]'.  Existing object will be replaced.
            16:20:30.494:INFO:Log:isc.Page is loaded
            16:20:38.659:MUP5:WARN:Log:setTimelineRange:,,hour,1
            **EDIT**

            Upon closer analysis this occurs when I use the date picker to actually get to the date these events occur on

            **EDIT**

            If I use the arrows to go thru the pages I am then provided this output

            Code:
            16:40:40.169:INFO:Log:initialized
            16:40:40.849:WARN:Log:SmartClient module version mismatch detected: This application is loading the core module from SmartClient version 'v8.3p_2013-04-12/PowerEdition Deployment' and additional modules from 'v8.3p_2013-04-12'. Mixing resources from different SmartClient packages is not supported and may lead to unpredictable behavior. If you are deploying resources from a single package you may need to clear your browser cache, or restart your browser.
            16:40:40.899:WARN:Log:SmartClient module version mismatch detected: This application is loading the core module from SmartClient version 'v8.3p_2013-04-12/PowerEdition Deployment' and additional modules from 'v8.3p_2013-04-12'. Mixing resources from different SmartClient packages is not supported and may lead to unpredictable behavior. If you are deploying resources from a single package you may need to clear your browser cache, or restart your browser.
            16:40:40.969:WARN:Log:New Class ID: 'IMenuButton' collides with ID of existing Class object '[Class IMenuButton]'.  Existing object will be replaced.
            16:40:54.906:INFO:Log:isc.Page is loaded
            16:41:05.819:MUP0:WARN:Log:setTimelineRange:hour,1,hour,1
            16:41:07.009:MUP8:WARN:Log:setTimelineRange:hour,1,hour,1
            16:41:17.235:MUP3:WARN:Log:setTimelineRange:hour,1,hour,1
            16:41:19.402:MUP2:WARN:Log:setTimelineRange:hour,1,hour,1
            16:41:20.872:MUP9:WARN:Log:setTimelineRange:hour,1,hour,1
            16:41:22.109:MUP5:WARN:Log:setTimelineRange:hour,1,hour,1
            16:41:24.036:MUP2:WARN:Log:setTimelineRange:hour,1,hour,1
            16:41:25.200:MUP8:WARN:Log:setTimelineRange:hour,1,hour,1
            16:41:28.473:MUP5:WARN:Log:setTimelineRange:hour,1,hour,1
            16:41:42.350:MUP9:WARN:Log:setTimelineRange:hour,1,hour,1
            16:42:04.484:MUP9:WARN:Log:setTimelineRange:hour,1,hour,1
            Last edited by jpappalardo; 24 Apr 2013, 12:43.

            Comment


              #7
              Those warnings that start with "setTimelineRange" are spurious and were removed about a week ago.

              Can you elaborate on this:

              Upon closer analysis this occurs when I use the date picker to actually get to the date these events occur on
              Should this make it possible for us to reproduce the issue? For now we're still thinking we need to see the data, as previously requested.

              Comment


                #8
                Here is the raw data being returned
                Last edited by jpappalardo; 24 Sep 2014, 09:18.

                Comment


                  #9
                  Here is a test case using a client only datasource that uses the same values as in the datasource and produces the same result.
                  Attached Files

                  Comment


                    #10
                    The issue of events rendering beyond the defined fields has been fixed in 3.1p and 4.0d. We don't see the other issue you pointed out. Please retest with a build dated April 27 or later.

                    Comment


                      #11
                      We've added calendar.canReorderLanes to control whether lanes can be drag-reordered

                      Comment


                        #12
                        Thanks I will have a look at it

                        Comment


                          #13
                          The 04-27-2013 build does at first glance appear to correct the issue with events drawing beyond the last column.

                          However, I am still encountering issues.

                          1. I have redefined the start and end times such that it displays 23:59:59:999 of time. The arrows now appropriately paginate from one day to the next, however using the date picker somehow truncates the hour columns from 0:00 to 23:00 to 0:00 to 20:00 effectively causing 3 hours of columns to be lost. Using the page forward/back arrows thereafter keeps the new range.

                          2. Once the range has been changed by using the date picker I then end up seeing events beyond the defined grids.

                          3. I get errors when I attempt to drag events, although I can successfully drag the start and stop times.

                          I do have some screenshots but attempting to reduce the resolution this forum requires makes them difficult to interpret, perhaps you can give me an email address I can send them to.

                          Here is the output I have in the Developer Console - note after reading the output I turned sizing to debug and generated more output, but then had to truncate the log to stay under 80k chars:
                          Code:
                          10:17:32.472:INFO:Log:initialized
                          10:17:33.065:WARN:Log:SmartClient module version mismatch detected: This application is loading the core module from SmartClient version 'v8.3p_2013-04-27/PowerEdition Deployment' and additional modules from 'v8.3p_2013-04-27'. Mixing resources from different SmartClient packages is not supported and may lead to unpredictable behavior. If you are deploying resources from a single package you may need to clear your browser cache, or restart your browser.
                          10:17:33.115:WARN:Log:SmartClient module version mismatch detected: This application is loading the core module from SmartClient version 'v8.3p_2013-04-27/PowerEdition Deployment' and additional modules from 'v8.3p_2013-04-27'. Mixing resources from different SmartClient packages is not supported and may lead to unpredictable behavior. If you are deploying resources from a single package you may need to clear your browser cache, or restart your browser.
                          10:17:33.186:WARN:Log:New Class ID: 'IMenuButton' collides with ID of existing Class object '[Class IMenuButton]'.  Existing object will be replaced.
                          10:17:49.777:INFO:Log:isc.Page is loaded
                          10:18:02.972:MUP5:WARN:Log:setTimelineRange:,,hour,1
                          10:18:08.507:MUP4:WARN:Log:TypeError: _4.dragMoveTarget is undefined
                          Stack from error.stack:
                              unnamed(isc_EventWindow_dragRepositionSto) @ gsui/sc/modules/ISC_Calendar.js:280
                              unnamed(isc_c_EventHandler_bubbleEven) @ gsui/sc/modules/ISC_Core.js:1198
                              unnamed(isc_c_EventHandler_handleEven) @ gsui/sc/modules/ISC_Core.js:982
                              unnamed(isc_c_EventHandler_handleDragSto) @ gsui/sc/modules/ISC_Core.js:1139
                              unnamed(isc_c_EventHandler__handleMouseU) @ gsui/sc/modules/ISC_Core.js:1060
                              unnamed(isc_c_EventHandler_handleMouseU) @ gsui/sc/modules/ISC_Core.js:1057
                              unnamed(isc_c_EventHandler_dispatc) @ gsui/sc/modules/ISC_Core.js:1229
                              unnamed(anonymou) @ gsui/sc/modules/ISC_Core.js:64
                              unnamed() @ 
                          
                          10:50:32.709:MUP9:WARN:Log:setTimelineRange:,,hour,1
                          10:52:26.650:MUP1:WARN:Log:setTimelineRange:hour,1,hour,1
                          10:52:30.206:MUP6:WARN:Log:setTimelineRange:hour,1,hour,1
                          10:52:33.456:MUP5:WARN:Log:setTimelineRange:hour,1,hour,1
                          10:52:34.928:MUP8:WARN:Log:setTimelineRange:hour,1,hour,1
                          10:52:35.531:MUP8:WARN:TimelineWindow:isc_TimelineWindow_1:ignoring bad or negative width: -30 [enable 'sizing' log for stack trace]
                          10:52:35.561:MUP8:WARN:TimelineWindow:isc_TimelineWindow_2:ignoring bad or negative width: -30 [enable 'sizing' log for stack trace]
                          10:52:35.623:MUP8:WARN:TimelineWindow:isc_TimelineWindow_1:ignoring bad or negative width: -30 [enable 'sizing' log for stack trace]
                          10:52:35.652:MUP8:WARN:TimelineWindow:isc_TimelineWindow_2:ignoring bad or negative width: -30 [enable 'sizing' log for stack trace]
                          10:53:06.065:MUP9:WARN:Log:setTimelineRange:hour,1,hour,1
                          10:53:11.134:MUP5:WARN:Log:setTimelineRange:hour,1,hour,1
                          10:53:11.758:MUP5:WARN:TimelineWindow:isc_TimelineWindow_1:ignoring bad or negative width: -30 [enable 'sizing' log for stack trace]
                          10:53:11.788:MUP5:WARN:TimelineWindow:isc_TimelineWindow_2:ignoring bad or negative width: -30 [enable 'sizing' log for stack trace]
                          10:53:11.852:MUP5:WARN:TimelineWindow:isc_TimelineWindow_1:ignoring bad or negative width: -30 [enable 'sizing' log for stack trace]
                          10:53:11.883:MUP5:WARN:TimelineWindow:isc_TimelineWindow_2:ignoring bad or negative width: -30 [enable 'sizing' log for stack trace]
                          Global Log Priorities updated: Logging messages at priority 'Debug' and above for category 'sizing'.
                          10:57:11.956:TMR4:INFO:sizing:isc_Label_0:Specified size: 100x1, drawn scroll size: 100x27, border: 0x0, margin: 0x0, old size: 100x27, reason: table style changed
                          10:57:11.958:TMR4:DEBUG:sizing:isc_Label_0:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 100,
                          scrollHeight: 27,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 100,
                          offsetHeight: 27,
                          styleLeft: "0px",
                          styleTop: "-1000px",
                          styleWidth: "100px",
                          styleHeight: "27px",
                          styleClip: ""}
                          10:57:11.959:TMR4:DEBUG:sizing:isc_Label_0:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 100,
                          scrollHeight: 27,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 100,
                          offsetHeight: 27,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:11.964:TMR4:INFO:sizing:isc_Label_0:Specified size: 100x1, drawn scroll size: 100x27, border: 0x0, margin: 0x0, old size: 100x27, reason: redraw
                          10:57:11.965:TMR4:DEBUG:sizing:isc_Label_0:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 100,
                          scrollHeight: 27,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 100,
                          offsetHeight: 1,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "100px",
                          styleHeight: "1px",
                          styleClip: ""}
                          10:57:11.968:TMR4:DEBUG:sizing:isc_Label_0:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 100,
                          scrollHeight: 27,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 100,
                          offsetHeight: 27,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.341:TMR0:INFO:sizing:isc_Label_0:Specified size: 100x1, drawn scroll size: 100x27, border: 0x0, margin: 0x0, old size: 100x27, reason: table style changed
                          10:57:12.342:TMR0:DEBUG:sizing:isc_Label_0:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 100,
                          scrollHeight: 27,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 100,
                          offsetHeight: 27,
                          styleLeft: "0px",
                          styleTop: "-1000px",
                          styleWidth: "100px",
                          styleHeight: "27px",
                          styleClip: ""}
                          10:57:12.343:TMR0:DEBUG:sizing:isc_Label_0:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 100,
                          scrollHeight: 27,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 100,
                          offsetHeight: 27,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.351:TMR0:INFO:sizing:isc_Label_0:Specified size: 100x1, drawn scroll size: 100x27, border: 0x0, margin: 0x0, old size: 100x27, reason: redraw
                          10:57:12.352:TMR0:DEBUG:sizing:isc_Label_0:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 100,
                          scrollHeight: 27,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 100,
                          offsetHeight: 1,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "100px",
                          styleHeight: "1px",
                          styleClip: ""}
                          10:57:12.353:TMR0:DEBUG:sizing:isc_Label_0:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 100,
                          scrollHeight: 27,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 100,
                          offsetHeight: 27,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.420:MUP8:WARN:Log:setTimelineRange:hour,1,hour,1
                          10:57:12.529:MUP8:INFO:sizing:isc_Timeline_0_timelineView$51d:Specified size: 75x769, drawn scroll size: 75x769, border: 0x0, margin: 0x0, reason: redraw
                          10:57:12.530:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView$51d:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 75,
                          scrollHeight: 769,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 75,
                          offsetHeight: 769,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "75px",
                          styleHeight: "769px",
                          styleClip: ""}
                          10:57:12.531:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView$51d:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 75,
                          scrollHeight: 120,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 75,
                          offsetHeight: 120,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.600:MUP8:INFO:sizing:isc_Timeline_0_timelineView_timelineDragTarget:Specified size: 1x1, drawn scroll size: 4x15, border: 2x2, margin: 0x0, old size: 4x15, reason: redraw
                          10:57:12.601:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_timelineDragTarget:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 4,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 2,
                          offsetHeight: 2,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "1px",
                          styleHeight: "1px",
                          styleClip: ""}
                          10:57:12.602:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_timelineDragTarget:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 0,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 0,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.604:MUP8:INFO:sizing:isc_Timeline_0_timelineView_body:Specified size: 1763x769, drawn scroll size: 1763x768, border: 0x0, margin: 0x0, reason: redraw
                          10:57:12.605:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_body:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1763,
                          scrollHeight: 769,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1763,
                          offsetHeight: 769,
                          styleLeft: "75px",
                          styleTop: "0px",
                          styleWidth: "1763px",
                          styleHeight: "769px",
                          styleClip: ""}
                          10:57:12.606:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_body:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1763,
                          scrollHeight: 120,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1763,
                          offsetHeight: 120,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.606:MUP8:INFO:sizing:isc_Timeline_0_timelineView_bodyLayout:Specified size: 1838x769, drawn scroll size: 1838x769, border: 0x0, margin: 0x0, old size: 1838x769, reason: redraw
                          10:57:12.607:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_bodyLayout:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1838,
                          scrollHeight: 769,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1838,
                          offsetHeight: 769,
                          styleLeft: "0px",
                          styleTop: "46px",
                          styleWidth: "1838px",
                          styleHeight: "769px",
                          styleClip: ""}
                          10:57:12.608:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_bodyLayout:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1838,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1838,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.610:MUP8:INFO:sizing:isc_Timeline_0_timelineView_headerLayout:Specified size: 1822x46, drawn scroll size: 1822x46, border: 0x0, margin: 0x0, reason: redraw
                          10:57:12.611:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_headerLayout:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1822,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1822,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "1822px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.612:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_headerLayout:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1822,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1822,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.613:MUP8:INFO:sizing:isc_Timeline_0_timelineView:Specified size: 1842x819, drawn scroll size: 1838x815, border: 4x4, margin: 0x0, reason: redraw
                          10:57:12.614:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1838,
                          scrollHeight: 815,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1842,
                          offsetHeight: 819,
                          styleLeft: "0px",
                          styleTop: "25px",
                          styleWidth: "1842px",
                          styleHeight: "819px",
                          styleClip: ""}
                          10:57:12.615:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1838,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1838,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.721:MUP8:INFO:sizing:isc_Button_237:Specified size: 75x46, drawn scroll size: 75x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.723:MUP8:DEBUG:sizing:isc_Button_237:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 75,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 75,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "75px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.723:MUP8:DEBUG:sizing:isc_Button_237:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 75,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 75,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.725:MUP8:INFO:sizing:isc_Timeline_0_timelineView$51f:Specified size: 75x46, drawn scroll size: 75x46, border: 0x0, margin: 0x0, reason: widthCheckWhileDeferred
                          10:57:12.726:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView$51f:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 75,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 75,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "75px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.727:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView$51f:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 75,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 75,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.899:MUP8:INFO:sizing:isc_Button_238:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.900:MUP8:DEBUG:sizing:isc_Button_238:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.901:MUP8:DEBUG:sizing:isc_Button_238:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.906:MUP8:INFO:sizing:isc_Button_239:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.906:MUP8:DEBUG:sizing:isc_Button_239:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.907:MUP8:DEBUG:sizing:isc_Button_239:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.909:MUP8:INFO:sizing:isc_Button_240:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.910:MUP8:DEBUG:sizing:isc_Button_240:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.911:MUP8:DEBUG:sizing:isc_Button_240:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.912:MUP8:INFO:sizing:isc_Button_241:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.913:MUP8:DEBUG:sizing:isc_Button_241:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.913:MUP8:DEBUG:sizing:isc_Button_241:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.915:MUP8:INFO:sizing:isc_Button_242:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.915:MUP8:DEBUG:sizing:isc_Button_242:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.916:MUP8:DEBUG:sizing:isc_Button_242:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.917:MUP8:INFO:sizing:isc_Button_243:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.918:MUP8:DEBUG:sizing:isc_Button_243:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.918:MUP8:DEBUG:sizing:isc_Button_243:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.919:MUP8:INFO:sizing:isc_Button_244:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.920:MUP8:DEBUG:sizing:isc_Button_244:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.921:MUP8:DEBUG:sizing:isc_Button_244:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.922:MUP8:INFO:sizing:isc_Button_245:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.923:MUP8:DEBUG:sizing:isc_Button_245:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.923:MUP8:DEBUG:sizing:isc_Button_245:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.924:MUP8:INFO:sizing:isc_Button_246:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.925:MUP8:DEBUG:sizing:isc_Button_246:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.926:MUP8:DEBUG:sizing:isc_Button_246:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.927:MUP8:INFO:sizing:isc_Button_247:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.928:MUP8:DEBUG:sizing:isc_Button_247:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.929:MUP8:DEBUG:sizing:isc_Button_247:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.930:MUP8:INFO:sizing:isc_Button_248:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.931:MUP8:DEBUG:sizing:isc_Button_248:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.932:MUP8:DEBUG:sizing:isc_Button_248:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.933:MUP8:INFO:sizing:isc_Button_249:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.934:MUP8:DEBUG:sizing:isc_Button_249:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.935:MUP8:DEBUG:sizing:isc_Button_249:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.936:MUP8:INFO:sizing:isc_Button_250:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.936:MUP8:DEBUG:sizing:isc_Button_250:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.937:MUP8:DEBUG:sizing:isc_Button_250:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.938:MUP8:INFO:sizing:isc_Button_251:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.939:MUP8:DEBUG:sizing:isc_Button_251:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.940:MUP8:DEBUG:sizing:isc_Button_251:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.940:MUP8:INFO:sizing:isc_Button_252:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.941:MUP8:DEBUG:sizing:isc_Button_252:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.942:MUP8:DEBUG:sizing:isc_Button_252:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.943:MUP8:INFO:sizing:isc_Button_253:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.943:MUP8:DEBUG:sizing:isc_Button_253:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.944:MUP8:DEBUG:sizing:isc_Button_253:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.945:MUP8:INFO:sizing:isc_Button_254:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.946:MUP8:DEBUG:sizing:isc_Button_254:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.946:MUP8:DEBUG:sizing:isc_Button_254:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.947:MUP8:INFO:sizing:isc_Button_255:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.948:MUP8:DEBUG:sizing:isc_Button_255:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.949:MUP8:DEBUG:sizing:isc_Button_255:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.950:MUP8:INFO:sizing:isc_Button_256:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.950:MUP8:DEBUG:sizing:isc_Button_256:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.951:MUP8:DEBUG:sizing:isc_Button_256:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.952:MUP8:INFO:sizing:isc_Button_257:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.952:MUP8:DEBUG:sizing:isc_Button_257:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.953:MUP8:DEBUG:sizing:isc_Button_257:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.954:MUP8:INFO:sizing:isc_Button_258:Specified size: 60x46, drawn scroll size: 60x46, border: 0x0, margin: 0x0, reason: parentDrawn
                          10:57:12.955:MUP8:DEBUG:sizing:isc_Button_258:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "60px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.956:MUP8:DEBUG:sizing:isc_Button_258:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 46,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.972:MUP8:INFO:sizing:isc_Timeline_0_timelineView_headerSpan_isc_OID_18:Specified size: 1020x24, drawn scroll size: 1020x24, border: 0x0, margin: 0x0, reason: draw
                          10:57:12.973:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_headerSpan_isc_OID_18:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1020,
                          scrollHeight: 24,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1020,
                          offsetHeight: 24,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "1020px",
                          styleHeight: "24px",
                          styleClip: ""}
                          10:57:12.973:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_headerSpan_isc_OID_18:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1020,
                          scrollHeight: 24,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1020,
                          offsetHeight: 24,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.976:MUP8:INFO:sizing:isc_Toolbar_13:Specified size: 1747x46, drawn scroll size: 1260x46, border: 0x0, margin: 0x0, reason: addChild
                          10:57:12.977:MUP8:DEBUG:sizing:isc_Toolbar_13:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1747,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1747,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "1747px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:12.978:MUP8:DEBUG:sizing:isc_Toolbar_13:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1747,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1747,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.980:MUP8:INFO:sizing:isc_Button_238:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:12.980:MUP8:DEBUG:sizing:isc_Button_238:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:12.981:MUP8:DEBUG:sizing:isc_Button_238:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.983:MUP8:INFO:sizing:isc_Button_239:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:12.983:MUP8:DEBUG:sizing:isc_Button_239:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "60px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:12.985:MUP8:DEBUG:sizing:isc_Button_239:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.986:MUP8:INFO:sizing:isc_Button_240:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:12.987:MUP8:DEBUG:sizing:isc_Button_240:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "120px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:12.988:MUP8:DEBUG:sizing:isc_Button_240:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.989:MUP8:INFO:sizing:isc_Button_241:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:12.990:MUP8:DEBUG:sizing:isc_Button_241:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "180px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:12.991:MUP8:DEBUG:sizing:isc_Button_241:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.992:MUP8:INFO:sizing:isc_Button_242:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:12.993:MUP8:DEBUG:sizing:isc_Button_242:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "240px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:12.994:MUP8:DEBUG:sizing:isc_Button_242:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.995:MUP8:INFO:sizing:isc_Button_243:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:12.996:MUP8:DEBUG:sizing:isc_Button_243:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "300px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:12.996:MUP8:DEBUG:sizing:isc_Button_243:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:12.998:MUP8:INFO:sizing:isc_Button_244:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:12.998:MUP8:DEBUG:sizing:isc_Button_244:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "360px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:12.999:MUP8:DEBUG:sizing:isc_Button_244:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.003:MUP8:INFO:sizing:isc_Button_245:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.004:MUP8:DEBUG:sizing:isc_Button_245:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "420px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.004:MUP8:DEBUG:sizing:isc_Button_245:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.006:MUP8:INFO:sizing:isc_Button_246:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.006:MUP8:DEBUG:sizing:isc_Button_246:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "480px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.007:MUP8:DEBUG:sizing:isc_Button_246:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.008:MUP8:INFO:sizing:isc_Button_247:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.009:MUP8:DEBUG:sizing:isc_Button_247:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "540px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.010:MUP8:DEBUG:sizing:isc_Button_247:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.011:MUP8:INFO:sizing:isc_Button_248:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.012:MUP8:DEBUG:sizing:isc_Button_248:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "600px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.013:MUP8:DEBUG:sizing:isc_Button_248:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.014:MUP8:INFO:sizing:isc_Button_249:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.015:MUP8:DEBUG:sizing:isc_Button_249:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "660px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.015:MUP8:DEBUG:sizing:isc_Button_249:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.017:MUP8:INFO:sizing:isc_Button_250:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.017:MUP8:DEBUG:sizing:isc_Button_250:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "720px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.018:MUP8:DEBUG:sizing:isc_Button_250:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.019:MUP8:INFO:sizing:isc_Button_251:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.020:MUP8:DEBUG:sizing:isc_Button_251:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "780px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.021:MUP8:DEBUG:sizing:isc_Button_251:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.023:MUP8:INFO:sizing:isc_Button_252:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.023:MUP8:DEBUG:sizing:isc_Button_252:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "840px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.024:MUP8:DEBUG:sizing:isc_Button_252:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.025:MUP8:INFO:sizing:isc_Button_253:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.026:MUP8:DEBUG:sizing:isc_Button_253:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "900px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.027:MUP8:DEBUG:sizing:isc_Button_253:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.028:MUP8:INFO:sizing:isc_Button_254:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.029:MUP8:DEBUG:sizing:isc_Button_254:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "960px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.029:MUP8:DEBUG:sizing:isc_Button_254:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.034:MUP8:INFO:sizing:isc_Timeline_0_timelineView_headerSpan_isc_OID_19:Specified size: 240x24, drawn scroll size: 240x24, border: 0x0, margin: 0x0, reason: draw
                          10:57:13.035:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_headerSpan_isc_OID_19:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 240,
                          scrollHeight: 24,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 240,
                          offsetHeight: 24,
                          styleLeft: "1020px",
                          styleTop: "0px",
                          styleWidth: "240px",
                          styleHeight: "24px",
                          styleClip: ""}
                          10:57:13.036:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_headerSpan_isc_OID_19:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 240,
                          scrollHeight: 24,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 240,
                          offsetHeight: 24,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.038:MUP8:INFO:sizing:isc_Toolbar_13:Specified size: 1747x46, drawn scroll size: 1260x46, border: 0x0, margin: 0x0, reason: addChild
                          10:57:13.039:MUP8:DEBUG:sizing:isc_Toolbar_13:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1747,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1747,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "-9999px",
                          styleWidth: "1747px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:13.040:MUP8:DEBUG:sizing:isc_Toolbar_13:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1747,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1747,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.041:MUP8:INFO:sizing:isc_Button_255:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.042:MUP8:DEBUG:sizing:isc_Button_255:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "1020px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.042:MUP8:DEBUG:sizing:isc_Button_255:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.043:MUP8:INFO:sizing:isc_Button_256:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.044:MUP8:DEBUG:sizing:isc_Button_256:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "1080px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.045:MUP8:DEBUG:sizing:isc_Button_256:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.046:MUP8:INFO:sizing:isc_Button_257:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.047:MUP8:DEBUG:sizing:isc_Button_257:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "1140px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.048:MUP8:DEBUG:sizing:isc_Button_257:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.050:MUP8:INFO:sizing:isc_Button_258:Specified size: 60x22, drawn scroll size: 60x22, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.051:MUP8:DEBUG:sizing:isc_Button_258:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "1200px",
                          styleTop: "0px",
                          styleWidth: "60px",
                          styleHeight: "22px",
                          styleClip: ""}
                          10:57:13.051:MUP8:DEBUG:sizing:isc_Button_258:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 60,
                          scrollHeight: 22,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 60,
                          offsetHeight: 22,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.055:MUP8:INFO:sizing:isc_Timeline_0_timelineView_headerLayout:Specified size: 1822x46, drawn scroll size: 1822x46, border: 0x0, margin: 0x0, reason: draw
                          10:57:13.056:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_headerLayout:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1822,
                          scrollHeight: 46,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1822,
                          offsetHeight: 46,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "1822px",
                          styleHeight: "46px",
                          styleClip: ""}
                          10:57:13.056:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView_headerLayout:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1822,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1822,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.060:MUP8:INFO:sizing:isc_Timeline_0_timelineView:Specified size: 1842x819, drawn scroll size: 1838x815, border: 4x4, margin: 0x0, reason: undefined
                          10:57:13.061:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1838,
                          scrollHeight: 815,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1842,
                          offsetHeight: 819,
                          styleLeft: "0px",
                          styleTop: "25px",
                          styleWidth: "1842px",
                          styleHeight: "819px",
                          styleClip: ""}
                          10:57:13.062:MUP8:DEBUG:sizing:isc_Timeline_0_timelineView:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1838,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1838,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.121:MUP8:INFO:sizing:isc_TimelineWindow_0_headerLabel:Specified size: 10x18, drawn scroll size: 27x18, border: 0x0, margin: 0x0, old size: 27x18, reason: redraw
                          10:57:13.122:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabel:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 27,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "10px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.122:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabel:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 10,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.124:MUP8:INFO:sizing:isc_HStack_1:Specified size: 10x18, drawn scroll size: 27x18, border: 0x0, margin: 0x0, old size: 27x18, reason: redraw
                          10:57:13.125:MUP8:DEBUG:sizing:isc_HStack_1:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 27,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "10px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.126:MUP8:DEBUG:sizing:isc_HStack_1:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 10,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.128:MUP8:INFO:sizing:isc_TimelineWindow_0_headerLabelParent:Specified size: 1x18, drawn scroll size: 27x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.129:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabelParent:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 27,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1,
                          offsetHeight: 18,
                          styleLeft: "3px",
                          styleTop: "0px",
                          styleWidth: "1px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.130:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabelParent:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.131:MUP8:INFO:sizing:isc_TimelineWindow_0_header:Specified size: 1x18, drawn scroll size: 7x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.131:MUP8:DEBUG:sizing:isc_TimelineWindow_0_header:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 4,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1,
                          offsetHeight: 18,
                          styleLeft: "2px",
                          styleTop: "2px",
                          styleWidth: "1px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.132:MUP8:DEBUG:sizing:isc_TimelineWindow_0_header:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 1,
                          scrollHeight: 12,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 1,
                          offsetHeight: 12,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.141:MUP8:INFO:sizing:isc_TimelineWindow_0_headerLabel:Specified size: 10x18, drawn scroll size: 27x18, border: 0x0, margin: 0x0, old size: 27x18, reason: redraw
                          10:57:13.142:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabel:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 27,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "10px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.142:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabel:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 10,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.146:MUP8:INFO:sizing:isc_HStack_1:Specified size: 828x18, drawn scroll size: 27x18, border: 0x0, margin: 0x0, old size: 27x18, reason: resize
                          10:57:13.147:MUP8:DEBUG:sizing:isc_HStack_1:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "828px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.148:MUP8:DEBUG:sizing:isc_HStack_1:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.150:MUP8:INFO:sizing:isc_TimelineWindow_0_headerLabelParent:Specified size: 828x18, drawn scroll size: 828x18, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.151:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabelParent:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 18,
                          styleLeft: "3px",
                          styleTop: "0px",
                          styleWidth: "828px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.152:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabelParent:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.154:MUP8:INFO:sizing:isc_TimelineWindow_0_headerLabelParent_label:Specified size: 828x18, drawn scroll size: 828x100, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.154:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabelParent_label:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 100,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 18,
                          styleLeft: "3px",
                          styleTop: "0px",
                          styleWidth: "828px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.155:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabelParent_label:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 100,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 100,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.156:MUP8:INFO:sizing:isc_TimelineWindow_0_header:Specified size: 834x18, drawn scroll size: 834x18, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.157:MUP8:DEBUG:sizing:isc_TimelineWindow_0_header:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 834,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 834,
                          offsetHeight: 18,
                          styleLeft: "2px",
                          styleTop: "2px",
                          styleWidth: "834px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.158:MUP8:DEBUG:sizing:isc_TimelineWindow_0_header:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 834,
                          scrollHeight: 12,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 834,
                          offsetHeight: 12,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.159:MUP8:INFO:sizing:isc_TimelineWindow_0_body:Specified size: 834x1, drawn scroll size: 0x0, border: 0x0, margin: 0x0, reason: resize
                          10:57:13.160:MUP8:DEBUG:sizing:isc_TimelineWindow_0_body:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 834,
                          scrollHeight: 1,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 834,
                          offsetHeight: 1,
                          styleLeft: "2px",
                          styleTop: "22px",
                          styleWidth: "834px",
                          styleHeight: "1px",
                          styleClip: ""}
                          10:57:13.161:MUP8:DEBUG:sizing:isc_TimelineWindow_0_body:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 834,
                          scrollHeight: 0,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 834,
                          offsetHeight: 0,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.162:MUP8:INFO:sizing:isc_TimelineWindow_0:Specified size: 840x21, drawn scroll size: 838x25, border: 2x2, margin: 0x0, reason: resize
                          10:57:13.163:MUP8:DEBUG:sizing:isc_TimelineWindow_0:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 838,
                          scrollHeight: 23,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 840,
                          offsetHeight: 21,
                          styleLeft: "1679px",
                          styleTop: "39px",
                          styleWidth: "840px",
                          styleHeight: "21px",
                          styleClip: ""}
                          10:57:13.164:MUP8:DEBUG:sizing:isc_TimelineWindow_0:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 838,
                          scrollHeight: 12,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 838,
                          offsetHeight: 12,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.171:MUP8:INFO:sizing:isc_TimelineWindow_0_headerLabel:Specified size: 10x18, drawn scroll size: 27x18, border: 0x0, margin: 0x0, old size: 27x18, reason: redraw
                          10:57:13.172:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabel:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 27,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "10px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.173:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabel:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 10,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.175:MUP8:INFO:sizing:isc_HStack_1:Specified size: 828x18, drawn scroll size: 27x18, border: 0x0, margin: 0x0, old size: 27x18, reason: redraw
                          10:57:13.176:MUP8:DEBUG:sizing:isc_HStack_1:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "828px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.177:MUP8:DEBUG:sizing:isc_HStack_1:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.178:MUP8:INFO:sizing:isc_TimelineWindow_0_headerLabelParent:Specified size: 828x18, drawn scroll size: 828x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.179:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabelParent:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 18,
                          styleLeft: "3px",
                          styleTop: "0px",
                          styleWidth: "828px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.179:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabelParent:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.180:MUP8:INFO:sizing:isc_TimelineWindow_0_header:Specified size: 834x18, drawn scroll size: 834x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.181:MUP8:DEBUG:sizing:isc_TimelineWindow_0_header:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 834,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 834,
                          offsetHeight: 18,
                          styleLeft: "2px",
                          styleTop: "2px",
                          styleWidth: "834px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.182:MUP8:DEBUG:sizing:isc_TimelineWindow_0_header:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 834,
                          scrollHeight: 12,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 834,
                          offsetHeight: 12,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.188:MUP8:INFO:sizing:isc_TimelineWindow_0_headerLabel:Specified size: 10x18, drawn scroll size: 27x18, border: 0x0, margin: 0x0, old size: 27x18, reason: redraw
                          10:57:13.189:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabel:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 27,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "10px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.189:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabel:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 10,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.191:MUP8:INFO:sizing:isc_HStack_1:Specified size: 828x18, drawn scroll size: 27x18, border: 0x0, margin: 0x0, old size: 27x18, reason: redraw
                          10:57:13.192:MUP8:DEBUG:sizing:isc_HStack_1:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "828px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.193:MUP8:DEBUG:sizing:isc_HStack_1:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.194:MUP8:INFO:sizing:isc_TimelineWindow_0_headerLabelParent:Specified size: 828x18, drawn scroll size: 828x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.195:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabelParent:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 18,
                          styleLeft: "3px",
                          styleTop: "0px",
                          styleWidth: "828px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.196:MUP8:DEBUG:sizing:isc_TimelineWindow_0_headerLabelParent:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 828,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 828,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.196:MUP8:INFO:sizing:isc_TimelineWindow_0_header:Specified size: 834x18, drawn scroll size: 834x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.197:MUP8:DEBUG:sizing:isc_TimelineWindow_0_header:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 834,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 834,
                          offsetHeight: 18,
                          styleLeft: "2px",
                          styleTop: "2px",
                          styleWidth: "834px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.198:MUP8:DEBUG:sizing:isc_TimelineWindow_0_header:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 834,
                          scrollHeight: 12,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 834,
                          offsetHeight: 12,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.205:MUP8:INFO:sizing:isc_TimelineWindow_1_headerLabel:Specified size: 10x18, drawn scroll size: 20x18, border: 0x0, margin: 0x0, old size: 20x18, reason: redraw
                          10:57:13.206:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabel:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 20,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "10px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.206:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabel:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 10,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.208:MUP8:INFO:sizing:isc_HStack_2:Specified size: 858x18, drawn scroll size: 20x18, border: 0x0, margin: 0x0, old size: 20x18, reason: redraw
                          10:57:13.209:MUP8:DEBUG:sizing:isc_HStack_2:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "858px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.210:MUP8:DEBUG:sizing:isc_HStack_2:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.211:MUP8:INFO:sizing:isc_TimelineWindow_1_headerLabelParent:Specified size: 858x18, drawn scroll size: 858x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.212:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabelParent:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 18,
                          styleLeft: "3px",
                          styleTop: "0px",
                          styleWidth: "858px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.213:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabelParent:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.213:MUP8:INFO:sizing:isc_TimelineWindow_1_header:Specified size: 864x18, drawn scroll size: 864x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.214:MUP8:DEBUG:sizing:isc_TimelineWindow_1_header:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 864,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 864,
                          offsetHeight: 18,
                          styleLeft: "2px",
                          styleTop: "2px",
                          styleWidth: "864px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.215:MUP8:DEBUG:sizing:isc_TimelineWindow_1_header:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 864,
                          scrollHeight: 12,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 864,
                          offsetHeight: 12,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.219:MUP8:INFO:sizing:isc_TimelineWindow_1:Specified size: 870x21, drawn scroll size: 868x25, border: 2x2, margin: 0x0, reason: resize
                          10:57:13.220:MUP8:DEBUG:sizing:isc_TimelineWindow_1:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 868,
                          scrollHeight: 23,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 870,
                          offsetHeight: 21,
                          styleLeft: "1649px",
                          styleTop: "19px",
                          styleWidth: "870px",
                          styleHeight: "21px",
                          styleClip: ""}
                          10:57:13.221:MUP8:DEBUG:sizing:isc_TimelineWindow_1:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 868,
                          scrollHeight: 12,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 868,
                          offsetHeight: 12,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.224:MUP8:INFO:sizing:isc_TimelineWindow_1_headerLabel:Specified size: 10x18, drawn scroll size: 20x18, border: 0x0, margin: 0x0, old size: 20x18, reason: redraw
                          10:57:13.225:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabel:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 20,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "10px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.226:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabel:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 10,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.234:MUP8:INFO:sizing:isc_TimelineWindow_1_headerLabel:Specified size: 10x18, drawn scroll size: 20x18, border: 0x0, margin: 0x0, old size: 20x18, reason: redraw
                          10:57:13.235:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabel:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 20,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "10px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.236:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabel:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 10,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.238:MUP8:INFO:sizing:isc_HStack_2:Specified size: 858x18, drawn scroll size: 20x18, border: 0x0, margin: 0x0, old size: 20x18, reason: redraw
                          10:57:13.239:MUP8:DEBUG:sizing:isc_HStack_2:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "858px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.239:MUP8:DEBUG:sizing:isc_HStack_2:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.241:MUP8:INFO:sizing:isc_TimelineWindow_1_headerLabelParent:Specified size: 858x18, drawn scroll size: 858x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.241:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabelParent:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 18,
                          styleLeft: "3px",
                          styleTop: "0px",
                          styleWidth: "858px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.242:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabelParent:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.243:MUP8:INFO:sizing:isc_TimelineWindow_1_header:Specified size: 864x18, drawn scroll size: 864x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.244:MUP8:DEBUG:sizing:isc_TimelineWindow_1_header:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 864,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 864,
                          offsetHeight: 18,
                          styleLeft: "2px",
                          styleTop: "2px",
                          styleWidth: "864px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.244:MUP8:DEBUG:sizing:isc_TimelineWindow_1_header:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 864,
                          scrollHeight: 12,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 864,
                          offsetHeight: 12,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.251:MUP8:INFO:sizing:isc_TimelineWindow_1_headerLabel:Specified size: 10x18, drawn scroll size: 20x18, border: 0x0, margin: 0x0, old size: 20x18, reason: redraw
                          10:57:13.252:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabel:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 20,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "10px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.253:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabel:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 10,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.255:MUP8:INFO:sizing:isc_HStack_2:Specified size: 858x18, drawn scroll size: 20x18, border: 0x0, margin: 0x0, old size: 20x18, reason: redraw
                          10:57:13.255:MUP8:DEBUG:sizing:isc_HStack_2:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "858px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.256:MUP8:DEBUG:sizing:isc_HStack_2:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.257:MUP8:INFO:sizing:isc_TimelineWindow_1_headerLabelParent:Specified size: 858x18, drawn scroll size: 858x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.258:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabelParent:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 18,
                          styleLeft: "3px",
                          styleTop: "0px",
                          styleWidth: "858px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.259:MUP8:DEBUG:sizing:isc_TimelineWindow_1_headerLabelParent:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 858,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 858,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.260:MUP8:INFO:sizing:isc_TimelineWindow_1_header:Specified size: 864x18, drawn scroll size: 864x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.260:MUP8:DEBUG:sizing:isc_TimelineWindow_1_header:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 864,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 864,
                          offsetHeight: 18,
                          styleLeft: "2px",
                          styleTop: "2px",
                          styleWidth: "864px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.261:MUP8:DEBUG:sizing:isc_TimelineWindow_1_header:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 864,
                          scrollHeight: 12,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 864,
                          offsetHeight: 12,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.268:MUP8:INFO:sizing:isc_TimelineWindow_2_headerLabel:Specified size: 10x18, drawn scroll size: 20x18, border: 0x0, margin: 0x0, old size: 20x18, reason: redraw
                          10:57:13.269:MUP8:DEBUG:sizing:isc_TimelineWindow_2_headerLabel:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 20,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "10px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.269:MUP8:DEBUG:sizing:isc_TimelineWindow_2_headerLabel:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 10,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 10,
                          offsetHeight: 18,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.271:MUP8:INFO:sizing:isc_HStack_3:Specified size: 918x18, drawn scroll size: 20x18, border: 0x0, margin: 0x0, old size: 20x18, reason: redraw
                          10:57:13.272:MUP8:DEBUG:sizing:isc_HStack_3:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 918,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 918,
                          offsetHeight: 18,
                          styleLeft: "0px",
                          styleTop: "0px",
                          styleWidth: "918px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.273:MUP8:DEBUG:sizing:isc_HStack_3:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 918,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 918,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.274:MUP8:INFO:sizing:isc_TimelineWindow_2_headerLabelParent:Specified size: 918x18, drawn scroll size: 918x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.275:MUP8:DEBUG:sizing:isc_TimelineWindow_2_headerLabelParent:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 918,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 918,
                          offsetHeight: 18,
                          styleLeft: "3px",
                          styleTop: "0px",
                          styleWidth: "918px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.276:MUP8:DEBUG:sizing:isc_TimelineWindow_2_headerLabelParent:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 918,
                          scrollHeight: 15,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 918,
                          offsetHeight: 15,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.276:MUP8:INFO:sizing:isc_TimelineWindow_2_header:Specified size: 924x18, drawn scroll size: 924x18, border: 0x0, margin: 0x0, reason: redraw
                          10:57:13.277:MUP8:DEBUG:sizing:isc_TimelineWindow_2_header:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 924,
                          scrollHeight: 18,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 924,
                          offsetHeight: 18,
                          styleLeft: "2px",
                          styleTop: "2px",
                          styleWidth: "924px",
                          styleHeight: "18px",
                          styleClip: ""}
                          10:57:13.278:MUP8:DEBUG:sizing:isc_TimelineWindow_2_header:handle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 924,
                          scrollHeight: 12,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 924,
                          offsetHeight: 12,
                          styleLeft: "",
                          styleTop: "",
                          styleWidth: "",
                          styleHeight: "",
                          styleClip: ""}
                          10:57:13.282:MUP8:INFO:sizing:isc_TimelineWindow_2:Specified size: 930x21, drawn scroll size: 928x25, border: 2x2, margin: 0x0, reason: resize
                          10:57:13.283:MUP8:DEBUG:sizing:isc_TimelineWindow_2:clipHandle sizes: {scrollLeft: 0,
                          scrollTop: 0,
                          scrollWidth: 928,
                          scrollHeight: 23,
                          clientWidth: undef,
                          clientHeight: undef,
                          offsetWidth: 930,
                          offsetHeight: 21,
                          styleLeft: "1589px",
                          styleTop: "-1px",
                          styleWidth: "930px",
                          styleHeight: "21px",
                          styleClip: ""}

                          Comment


                            #14
                            The dragging error you're seeing (because showEventDescriptions is true) is fixed internally and will hit the nightly builds in the coming days.

                            For the others, please show a runnable test case that shows these issues.

                            Comment


                              #15
                              Fixes for all of these timeline issues, and a bunch of other enhancements, have been added to 3.1 and 4.0.

                              You can now show a 24 hour timeline with minute, or multiple minute, increments by setting width: 60 on your inner headerLevel (although 60 is already the default) and also setting eventSnapGap to the number of pixels (equal to minutes when column width is 60) you want to snap by.

                              Please retest with a nightly build dated May 1 or later.

                              Comment

                              Working...
                              X