My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Oct 31, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) changed by adam.tacy   -   Hi Roman, Good to hear it's all fixed, and thank you for your help getting to a solution. I'll close the defect. Adam
    Status: FixedNotReleased
    Owner: adam.tacy
    Hi Roman, Good to hear it's all fixed, and thank you for your help getting to a solution. I'll close the defect. Adam
    Status: FixedNotReleased
    Owner: adam.tacy
  • Oct 31, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by rkrysinski   -   Hi Adam, You may discard my previous comment. I don't know why but the problem has gone away. Clearing and compiling the project again solved a problem. It looks like if you leave the problem long enough, it solves itself :) Thanks for you support, I think this Issue can be closed. Roman
    Hi Adam, You may discard my previous comment. I don't know why but the problem has gone away. Clearing and compiling the project again solved a problem. It looks like if you leave the problem long enough, it solves itself :) Thanks for you support, I think this Issue can be closed. Roman
  • Oct 28, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by rkrysinski   -   Thank you very much, it looks much better with your suggestion. The month area is growing properly now, however there is one small thing that I feel is not correct. When I play the resize animation, the browser idles for half a second and then the widget transforms immediately in a way like in attached screen shoot, and then transforms to the proper size but with the deflect in layout. When I play the Resize effect backwards, it resizes to proper value but with defect as well. Does it sounds like something that can be fixed?
    Thank you very much, it looks much better with your suggestion. The month area is growing properly now, however there is one small thing that I feel is not correct. When I play the resize animation, the browser idles for half a second and then the widget transforms immediately in a way like in attached screen shoot, and then transforms to the proper size but with the deflect in layout. When I play the Resize effect backwards, it resizes to proper value but with defect as well. Does it sounds like something that can be fixed?
  • Oct 28, 2009
    r312 (Fixing some issues for IE in terms of auto returned for widt...) committed by adam.tacy   -   Fixing some issues for IE in terms of auto returned for width and height Allowing Highlight to be created without an element in the constructor
    Fixing some issues for IE in terms of auto returned for width and height Allowing Highlight to be created without an element in the constructor
  • Oct 28, 2009
    r311 (Fixing some issues for IE in terms of auto returned for widt...) committed by adam.tacy   -   Fixing some issues for IE in terms of auto returned for width and height
    Fixing some issues for IE in terms of auto returned for width and height
  • Oct 28, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by adam.tacy   -   Hi Roman, Yep, those null checks are needed, thanks, I'll add them to the trunk code. Hard to see why the month area is growing in height as it has. It looks rather square so I wonder if a height is getting confused with a width somewhere. OK, if you copied my code in comment 6 exactly, then that is the error - I used offsetWidth twice! Real code should be: private static native String getWidth(Element element)/*-{return element.offsetWidth+'px';}-*/; private static native String getHeight(Element element)/*-{return element.offsetHeight+'px';}-*/; Damn copy and paste! If it is not that, then I'm a little stuck for explanation as everything else seemed to Resize mostly OK. //Adam
    Hi Roman, Yep, those null checks are needed, thanks, I'll add them to the trunk code. Hard to see why the month area is growing in height as it has. It looks rather square so I wonder if a height is getting confused with a width somewhere. OK, if you copied my code in comment 6 exactly, then that is the error - I used offsetWidth twice! Real code should be: private static native String getWidth(Element element)/*-{return element.offsetWidth+'px';}-*/; private static native String getHeight(Element element)/*-{return element.offsetHeight+'px';}-*/; Damn copy and paste! If it is not that, then I'm a little stuck for explanation as everything else seemed to Resize mostly OK. //Adam
  • Oct 28, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by rkrysinski   -   Small update: I let my self to change code a little bit Following the exception message it looks like the "result" variable was null in the line 112. I've change the code to the following: line 112: if ("auto".equals(result)) { line 118: else if ("transparent".equals(result)||removeSpaces(result).equals("rgba(0,0,0,0)")) And starting from line 127: public static String removeSpaces(String s) { if (s == null) { return ""; } (...) I've added a check for null input parameter. After this change, no exception is thrown when resizing under IE but the resized widget looks different after transformation (please take a look at the attached screen shoot) - different than e.g. in Mozilla
    Small update: I let my self to change code a little bit Following the exception message it looks like the "result" variable was null in the line 112. I've change the code to the following: line 112: if ("auto".equals(result)) { line 118: else if ("transparent".equals(result)||removeSpaces(result).equals("rgba(0,0,0,0)")) And starting from line 127: public static String removeSpaces(String s) { if (s == null) { return ""; } (...) I've added a check for null input parameter. After this change, no exception is thrown when resizing under IE but the resized widget looks different after transformation (please take a look at the attached screen shoot) - different than e.g. in Mozilla
  • Oct 28, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by rkrysinski   -   Hi Adam, I changed the lines as you suggested but unfortunatelly still no luck: [ERROR] Uncaught exception escaped java.lang.NullPointerException: null at org.adamtacy.client.ui.effects.impl.css.StyleImplementation.getComputedStyle(StyleImp lementation.java:112) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:155) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.setUpEffect(Resize.java:505) at org.adamtacy.client.ui.effects.NEffect.init(NEffect.java:327) at org.adamtacy.client.ui.effects.NEffect.play(NEffect.java:532) at org.adamtacy.client.ui.effects.NEffect.play(NEffect.java:566) at org.adamtacy.client.ui.effects.NEffect.resumeForwards(NEffect.java:647) at org.adamtacy.client.ui.effects.NEffectCollection.resumeEffectsForwards(NEffectCollect ion.java:83) at org.adamtacy.client.ui.NEffectPanel.resumeEffectsForwards(NEffectPanel.java:292) at com.krycha.client.Application$1.onClick(Application.java:125) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:54) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:1) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.fireEvent(HandlerManager.j ava:65) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.access$1(HandlerManager.ja va:53) at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:178) at com.google.gwt.user.client.ui.Widget.fireEvent(Widget.java:52) at com.google.gwt.event.dom.client.DomEvent.fireNativeEvent(DomEvent.java:116) at com.google.gwt.user.client.ui.Widget.onBrowserEvent(Widget.java:90) at com.google.gwt.user.client.DOM.dispatchEventImpl(DOM.java:1320) at com.google.gwt.user.client.DOM.dispatchEventAndCatch(DOM.java:1299) at com.google.gwt.user.client.DOM.dispatchEvent(DOM.java:1262) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103) at com.google.gwt.dev.shell.ie.IDispatchImpl.callMethod(IDispatchImpl.java:126) at com.google.gwt.dev.shell.ie.IDispatchProxy.invoke(IDispatchProxy.java:155) at com.google.gwt.dev.shell.ie.IDispatchImpl.Invoke(IDispatchImpl.java:294) at com.google.gwt.dev.shell.ie.IDispatchImpl.method6(IDispatchImpl.java:194) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:117) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1925) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) at com.google.gwt.dev.SwtHostedModeBase.processEvents(SwtHostedModeBase.java:264) at com.google.gwt.dev.HostedModeBase.pumpEventLoop(HostedModeBase.java:557) at com.google.gwt.dev.HostedModeBase.run(HostedModeBase.java:405) at com.google.gwt.dev.GWTShell.main(GWTShell.java:140) Thanks in advance for your help.
    Hi Adam, I changed the lines as you suggested but unfortunatelly still no luck: [ERROR] Uncaught exception escaped java.lang.NullPointerException: null at org.adamtacy.client.ui.effects.impl.css.StyleImplementation.getComputedStyle(StyleImp lementation.java:112) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:155) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.setUpEffect(Resize.java:505) at org.adamtacy.client.ui.effects.NEffect.init(NEffect.java:327) at org.adamtacy.client.ui.effects.NEffect.play(NEffect.java:532) at org.adamtacy.client.ui.effects.NEffect.play(NEffect.java:566) at org.adamtacy.client.ui.effects.NEffect.resumeForwards(NEffect.java:647) at org.adamtacy.client.ui.effects.NEffectCollection.resumeEffectsForwards(NEffectCollect ion.java:83) at org.adamtacy.client.ui.NEffectPanel.resumeEffectsForwards(NEffectPanel.java:292) at com.krycha.client.Application$1.onClick(Application.java:125) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:54) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:1) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.fireEvent(HandlerManager.j ava:65) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.access$1(HandlerManager.ja va:53) at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:178) at com.google.gwt.user.client.ui.Widget.fireEvent(Widget.java:52) at com.google.gwt.event.dom.client.DomEvent.fireNativeEvent(DomEvent.java:116) at com.google.gwt.user.client.ui.Widget.onBrowserEvent(Widget.java:90) at com.google.gwt.user.client.DOM.dispatchEventImpl(DOM.java:1320) at com.google.gwt.user.client.DOM.dispatchEventAndCatch(DOM.java:1299) at com.google.gwt.user.client.DOM.dispatchEvent(DOM.java:1262) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103) at com.google.gwt.dev.shell.ie.IDispatchImpl.callMethod(IDispatchImpl.java:126) at com.google.gwt.dev.shell.ie.IDispatchProxy.invoke(IDispatchProxy.java:155) at com.google.gwt.dev.shell.ie.IDispatchImpl.Invoke(IDispatchImpl.java:294) at com.google.gwt.dev.shell.ie.IDispatchImpl.method6(IDispatchImpl.java:194) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:117) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1925) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) at com.google.gwt.dev.SwtHostedModeBase.processEvents(SwtHostedModeBase.java:264) at com.google.gwt.dev.HostedModeBase.pumpEventLoop(HostedModeBase.java:557) at com.google.gwt.dev.HostedModeBase.run(HostedModeBase.java:405) at com.google.gwt.dev.GWTShell.main(GWTShell.java:140) Thanks in advance for your help.
  • Oct 27, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by adam.tacy   -   I might have had a typo in the file (e.h. element.offSetWidth should be element.offsetWidth). Lines 127-128 should read: private static native String getWidth(Element element)/*-{return element.offsetWidth+'px';}-*/; private static native String getHeight(Element element)/*-{return element.offsetWidth+'px';}-*/; Does that make it better? (I should add a check for undefined values too, but maybe good to start here...))
    I might have had a typo in the file (e.h. element.offSetWidth should be element.offsetWidth). Lines 127-128 should read: private static native String getWidth(Element element)/*-{return element.offsetWidth+'px';}-*/; private static native String getHeight(Element element)/*-{return element.offsetWidth+'px';}-*/; Does that make it better? (I should add a check for undefined values too, but maybe good to start here...))
  • Oct 27, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by rkrysinski   -   Hi Adam, Thank you very much for support. I followed your suggestion and used attached file. Indeed the problem does not exists under Mozilla or Chrome, however IE is still an issue. Under IE I'm receiving the following exception: [ERROR] Uncaught exception escaped java.lang.NumberFormatException: For input string: "undefined" at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1224) at java.lang.Double.parseDouble(Double.java:482) at org.adamtacy.client.ui.effects.impl.Resize.getStartWidth(Resize.java:383) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:135) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.setUpEffect(Resize.java:505) at org.adamtacy.client.ui.effects.NEffect.init(NEffect.java:327) at org.adamtacy.client.ui.effects.NEffect.play(NEffect.java:532) at com.krycha.client.Application$1.onClick(Application.java:110) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:54) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:1) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.fireEvent(HandlerManager.j ava:65) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.access$1(HandlerManager.ja va:53) at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:178) at com.google.gwt.user.client.ui.Widget.fireEvent(Widget.java:52) at com.google.gwt.event.dom.client.DomEvent.fireNativeEvent(DomEvent.java:116) at com.google.gwt.user.client.ui.Widget.onBrowserEvent(Widget.java:90) at com.google.gwt.user.client.DOM.dispatchEventImpl(DOM.java:1320) at com.google.gwt.user.client.DOM.dispatchEventAndCatch(DOM.java:1299) at com.google.gwt.user.client.DOM.dispatchEvent(DOM.java:1262) at sun.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103) at com.google.gwt.dev.shell.ie.IDispatchImpl.callMethod(IDispatchImpl.java:126) at com.google.gwt.dev.shell.ie.IDispatchProxy.invoke(IDispatchProxy.java:155) at com.google.gwt.dev.shell.ie.IDispatchImpl.Invoke(IDispatchImpl.java:294) at com.google.gwt.dev.shell.ie.IDispatchImpl.method6(IDispatchImpl.java:194) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:117) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1925) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) at com.google.gwt.dev.SwtHostedModeBase.processEvents(SwtHostedModeBase.java:264) at com.google.gwt.dev.HostedModeBase.pumpEventLoop(HostedModeBase.java:557) at com.google.gwt.dev.HostedModeBase.run(HostedModeBase.java:405) at com.google.gwt.dev.GWTShell.main(GWTShell.java:140) Thanks in advance, Roman
    Hi Adam, Thank you very much for support. I followed your suggestion and used attached file. Indeed the problem does not exists under Mozilla or Chrome, however IE is still an issue. Under IE I'm receiving the following exception: [ERROR] Uncaught exception escaped java.lang.NumberFormatException: For input string: "undefined" at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1224) at java.lang.Double.parseDouble(Double.java:482) at org.adamtacy.client.ui.effects.impl.Resize.getStartWidth(Resize.java:383) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:135) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement(Resize.jav a:122) at org.adamtacy.client.ui.effects.impl.Resize.setUpEffect(Resize.java:505) at org.adamtacy.client.ui.effects.NEffect.init(NEffect.java:327) at org.adamtacy.client.ui.effects.NEffect.play(NEffect.java:532) at com.krycha.client.Application$1.onClick(Application.java:110) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:54) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:1) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.fireEvent(HandlerManager.j ava:65) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.access$1(HandlerManager.ja va:53) at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:178) at com.google.gwt.user.client.ui.Widget.fireEvent(Widget.java:52) at com.google.gwt.event.dom.client.DomEvent.fireNativeEvent(DomEvent.java:116) at com.google.gwt.user.client.ui.Widget.onBrowserEvent(Widget.java:90) at com.google.gwt.user.client.DOM.dispatchEventImpl(DOM.java:1320) at com.google.gwt.user.client.DOM.dispatchEventAndCatch(DOM.java:1299) at com.google.gwt.user.client.DOM.dispatchEvent(DOM.java:1262) at sun.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103) at com.google.gwt.dev.shell.ie.IDispatchImpl.callMethod(IDispatchImpl.java:126) at com.google.gwt.dev.shell.ie.IDispatchProxy.invoke(IDispatchProxy.java:155) at com.google.gwt.dev.shell.ie.IDispatchImpl.Invoke(IDispatchImpl.java:294) at com.google.gwt.dev.shell.ie.IDispatchImpl.method6(IDispatchImpl.java:194) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:117) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1925) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) at com.google.gwt.dev.SwtHostedModeBase.processEvents(SwtHostedModeBase.java:264) at com.google.gwt.dev.HostedModeBase.pumpEventLoop(HostedModeBase.java:557) at com.google.gwt.dev.HostedModeBase.run(HostedModeBase.java:405) at com.google.gwt.dev.GWTShell.main(GWTShell.java:140) Thanks in advance, Roman
  • Oct 26, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by adam.tacy   -   > It’s getting late here in Poland and I feel like I need to lay down. Same here a in Sweden! Hope the file attached at least gets someway forwards //Adam
    > It’s getting late here in Poland and I feel like I need to lay down. Same here a in Sweden! Hope the file attached at least gets someway forwards //Adam
  • Oct 26, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by adam.tacy   -   Could you try the attached StyleImplementation file on your classpath instead of the one in the library - it makes an extra attempt for IE to find style if it gets auto. (I don't have IE so can't test myself). I tested in other browsers on a Mac and it looks OK - you'll need to add the code Resize.addToTriggerDOM("BUTTON"); otherwise the buttons for next/prev month/year will not resize. Hopefully the attached gives you an option over setting sizes explicitly. (I also used the new v0.5.0 style without an NEffectPanel: CalendarWidget w = new CalendarWidget(); RootPanel.get().add(w); Resize rr = new Resize(w.getElement()); Resize.addToTriggerDOM("BUTTON"); rr.setEndPercentage(200); rr.play(); )
    Could you try the attached StyleImplementation file on your classpath instead of the one in the library - it makes an extra attempt for IE to find style if it gets auto. (I don't have IE so can't test myself). I tested in other browsers on a Mac and it looks OK - you'll need to add the code Resize.addToTriggerDOM("BUTTON"); otherwise the buttons for next/prev month/year will not resize. Hopefully the attached gives you an option over setting sizes explicitly. (I also used the new v0.5.0 style without an NEffectPanel: CalendarWidget w = new CalendarWidget(); RootPanel.get().add(w); Resize rr = new Resize(w.getElement()); Resize.addToTriggerDOM("BUTTON"); rr.setEndPercentage(200); rr.play(); )
  • Oct 26, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by rkrysinski   -   Hi Adam, Thanks for prompt response. To be honest the error message is very clear and intuitive. I was assuming the same thing that explicit values should be set for width and height in the CSS. After setting up all of the height & width for all Calendar components in the css the problem still persists. That was the moment I've decided to open this query hoping you will give me a hand. In any event I will get back to this tomorrow and try to find out what I'm doing wrong. It’s getting late here in Poland and I feel like I need to lay down. Thanks, Roman
    Hi Adam, Thanks for prompt response. To be honest the error message is very clear and intuitive. I was assuming the same thing that explicit values should be set for width and height in the CSS. After setting up all of the height & width for all Calendar components in the css the problem still persists. That was the moment I've decided to open this query hoping you will give me a hand. In any event I will get back to this tomorrow and try to find out what I'm doing wrong. It’s getting late here in Poland and I feel like I need to lay down. Thanks, Roman
  • Oct 26, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) commented on by adam.tacy   -   Hi, the only way to fix this is as the error message says - explicitly set sizes on DOM components. Resize works by querying the browser for width/height values of all the elements in the widget. It needs to get back a numeric value, e.g. 10px, or 50pt, or 1.9em etc. If the browser returns a value "auto" then resize has no idea what 200% of auto is, so it deliberately fails in development mode suggesting you set values explicitly. Looking quickly at the link you sent, you probably just need to set some explicit values for width and height in the CSS. Alternatively, you could build your own/wait a while until some matrix transformation effects are available - see http://code.google.com/p/gwt-fx/issues/detail?id=129 - once that's done, I will update Resize to use the appropriate transform: scale CSS operation for browsers that support it; IE will use a matrix filter, and Opera fall back on how it is done now.
    Hi, the only way to fix this is as the error message says - explicitly set sizes on DOM components. Resize works by querying the browser for width/height values of all the elements in the widget. It needs to get back a numeric value, e.g. 10px, or 50pt, or 1.9em etc. If the browser returns a value "auto" then resize has no idea what 200% of auto is, so it deliberately fails in development mode suggesting you set values explicitly. Looking quickly at the link you sent, you probably just need to set some explicit values for width and height in the CSS. Alternatively, you could build your own/wait a while until some matrix transformation effects are available - see http://code.google.com/p/gwt-fx/issues/detail?id=129 - once that's done, I will update Resize to use the appropriate transform: scale CSS operation for browsers that support it; IE will use a matrix filter, and Opera fall back on how it is done now.
  • Oct 26, 2009
    issue 130 (Problem with resizing: Computed style for width is auto - tr...) reported by rkrysinski   -   > What steps will reproduce the problem? I'm trying to resize the "Simple Calendar" component available here: http://gwt.components.googlepages.com/calendar The code more or less looks as follows: NEffectPanel effPanel = new NEffectPanel(); effPanel.add(new CalendarWidget()); Resize resize = new Resize(); resize.setEndHeightPercentage(200); effPanel.addEffect(resize); RootPanel.get().add(effPanel); effPanel.playEffects() > What is the expected output? What do you see instead? I expect the calendar component to be resized in height twice. Nothing happens on the screen. > What version of the product are you using? On what operating system? I'm using: 1) GWT FX v0.5.0 MS 1.jar 2) gwt 1.7.1 on Windows. > Please provide any additional information below. Here is the exception I'm receiving on GWT Development Shell: [ERROR] Uncaught exception escaped java.lang.RuntimeException: Computed style for width is auto - try setting a start value explicitly at org.adamtacy.client.ui.effects.impl.css.StyleImplementation.getComputedStyl e(StyleImplementation.java:113) at org.adamtacy.client.ui.effects.impl.Resize.getStartWidth(Resize.java:383) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:135) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.setUpEffect(Resize.java:505) at org.adamtacy.client.ui.effects.NEffect.init(NEffect.java:327) at org.adamtacy.client.ui.effects.NEffect.play(NEffect.java:532) at org.adamtacy.client.ui.effects.NEffectCollection.playEffects(NEffectCollect ion.java:49) at org.adamtacy.client.ui.NEffectPanel.playEffects(NEffectPanel.java:195) at com.krycha.client.Application$1.onClick(Application.java:107) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:54) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:1) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.fireEvent(Handle rManager.java:65) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.access$1(Handler Manager.java:53) at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:17 8) at com.google.gwt.user.client.ui.Widget.fireEvent(Widget.java:52) at com.google.gwt.event.dom.client.DomEvent.fireNativeEvent(DomEvent.java:116) at com.google.gwt.user.client.ui.Widget.onBrowserEvent(Widget.java:90) at com.google.gwt.user.client.DOM.dispatchEventImpl(DOM.java:1320) at com.google.gwt.user.client.DOM.dispatchEventAndCatch(DOM.java:1299) at com.google.gwt.user.client.DOM.dispatchEvent(DOM.java:1262) at sun.reflect.GeneratedMethodAccessor60.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImp l.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103) at com.google.gwt.dev.shell.ie.IDispatchImpl.callMethod(IDispatchImpl.java:126 ) at com.google.gwt.dev.shell.ie.IDispatchProxy.invoke(IDispatchProxy.java:155) at com.google.gwt.dev.shell.ie.IDispatchImpl.Invoke(IDispatchImpl.java:294) at com.google.gwt.dev.shell.ie.IDispatchImpl.method6(IDispatchImpl.java:194) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:117) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1925) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) at com.google.gwt.dev.SwtHostedModeBase.processEvents(SwtHostedModeBase.java:2 64) at com.google.gwt.dev.HostedModeBase.pumpEventLoop(HostedModeBase.java:557) at com.google.gwt.dev.HostedModeBase.run(HostedModeBase.java:405) at com.google.gwt.dev.GWTShell.main(GWTShell.java:140)
    > What steps will reproduce the problem? I'm trying to resize the "Simple Calendar" component available here: http://gwt.components.googlepages.com/calendar The code more or less looks as follows: NEffectPanel effPanel = new NEffectPanel(); effPanel.add(new CalendarWidget()); Resize resize = new Resize(); resize.setEndHeightPercentage(200); effPanel.addEffect(resize); RootPanel.get().add(effPanel); effPanel.playEffects() > What is the expected output? What do you see instead? I expect the calendar component to be resized in height twice. Nothing happens on the screen. > What version of the product are you using? On what operating system? I'm using: 1) GWT FX v0.5.0 MS 1.jar 2) gwt 1.7.1 on Windows. > Please provide any additional information below. Here is the exception I'm receiving on GWT Development Shell: [ERROR] Uncaught exception escaped java.lang.RuntimeException: Computed style for width is auto - try setting a start value explicitly at org.adamtacy.client.ui.effects.impl.css.StyleImplementation.getComputedStyl e(StyleImplementation.java:113) at org.adamtacy.client.ui.effects.impl.Resize.getStartWidth(Resize.java:383) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:135) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.createInternalEffectsPerElement( Resize.java:122) at org.adamtacy.client.ui.effects.impl.Resize.setUpEffect(Resize.java:505) at org.adamtacy.client.ui.effects.NEffect.init(NEffect.java:327) at org.adamtacy.client.ui.effects.NEffect.play(NEffect.java:532) at org.adamtacy.client.ui.effects.NEffectCollection.playEffects(NEffectCollect ion.java:49) at org.adamtacy.client.ui.NEffectPanel.playEffects(NEffectPanel.java:195) at com.krycha.client.Application$1.onClick(Application.java:107) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:54) at com.google.gwt.event.dom.client.ClickEvent.dispatch(ClickEvent.java:1) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.fireEvent(Handle rManager.java:65) at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.access$1(Handler Manager.java:53) at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:17 8) at com.google.gwt.user.client.ui.Widget.fireEvent(Widget.java:52) at com.google.gwt.event.dom.client.DomEvent.fireNativeEvent(DomEvent.java:116) at com.google.gwt.user.client.ui.Widget.onBrowserEvent(Widget.java:90) at com.google.gwt.user.client.DOM.dispatchEventImpl(DOM.java:1320) at com.google.gwt.user.client.DOM.dispatchEventAndCatch(DOM.java:1299) at com.google.gwt.user.client.DOM.dispatchEvent(DOM.java:1262) at sun.reflect.GeneratedMethodAccessor60.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImp l.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103) at com.google.gwt.dev.shell.ie.IDispatchImpl.callMethod(IDispatchImpl.java:126 ) at com.google.gwt.dev.shell.ie.IDispatchProxy.invoke(IDispatchProxy.java:155) at com.google.gwt.dev.shell.ie.IDispatchImpl.Invoke(IDispatchImpl.java:294) at com.google.gwt.dev.shell.ie.IDispatchImpl.method6(IDispatchImpl.java:194) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:117) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1925) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) at com.google.gwt.dev.SwtHostedModeBase.processEvents(SwtHostedModeBase.java:2 64) at com.google.gwt.dev.HostedModeBase.pumpEventLoop(HostedModeBase.java:557) at com.google.gwt.dev.HostedModeBase.run(HostedModeBase.java:405) at com.google.gwt.dev.GWTShell.main(GWTShell.java:140)
  • Oct 26, 2009
    issue 129 (Matrix Effects) reported by adam.tacy   -   Introduce an effect(s) to handle matrix effects, i.e. -moz-transform, -webkit-transform and IE's matrix filter (http://msdn.microsoft.com/en-us/library/ms533014%28VS.85,loband%29.aspx)
    Introduce an effect(s) to handle matrix effects, i.e. -moz-transform, -webkit-transform and IE's matrix filter (http://msdn.microsoft.com/en-us/library/ms533014%28VS.85,loband%29.aspx)
  • Oct 25, 2009
    issue 128 (Noticeable delay when loading EffectsExample) commented on by adam.tacy   -   Squeezed some more performance out by using following flags in the compiler: -XdisableCastChecking -XdisableClassMetadata Moves initial download size from 65-70Kb to 58-62Kb (and of course reductions in the other deferred files too.
    Squeezed some more performance out by using following flags in the compiler: -XdisableCastChecking -XdisableClassMetadata Moves initial download size from 65-70Kb to 58-62Kb (and of course reductions in the other deferred files too.
  • Oct 25, 2009
    issue 91 (Adding DisclosurePanel to Effect Panel looks odd on IE7) Status changed by adam.tacy   -   As mentioned in above comment, I don't have ability to test on IE at present, so will have to mark this as "wont fix".
    Status: WontFix
    As mentioned in above comment, I don't have ability to test on IE at present, so will have to mark this as "wont fix".
    Status: WontFix
  • Oct 25, 2009
    issue 71 (What should NEffect.getProgress() return when effect is inve...) Labels changed by adam.tacy   -  
    Labels: Milestone-Release5.0.0
    Labels: Milestone-Release5.0.0
  • Oct 25, 2009
    issue 76 (Simplify Sequential and Parallel Effects if possible) Labels changed by adam.tacy   -  
    Labels: Milestone-Release5.0.0
    Labels: Milestone-Release5.0.0
  • Oct 25, 2009
    issue 116 (Display problem at page EffectsExample.html of the website) Status changed by adam.tacy   -   Still unsure why the above happened, but by removing the link the display is correct (at least on Firefox, Opera, Safari and Chrome on Mac OSX). Link removed as part of fix for issue 128 .
    Status: Fixed
    Still unsure why the above happened, but by removing the link the display is correct (at least on Firefox, Opera, Safari and Chrome on Mac OSX). Link removed as part of fix for issue 128 .
    Status: Fixed
  • Oct 25, 2009
    issue 128 (Noticeable delay when loading EffectsExample) Status changed by adam.tacy   -  
    Status: Fixed
    Status: Fixed
  • Oct 25, 2009
    issue 128 (Noticeable delay when loading EffectsExample) Status changed by adam.tacy   -   Caused by two things: a) 109Kb is loaded initially b) The font changes. (b) is easily fixed within CSS (a) required looking a little more at the use of RunAsync. Now we defer the loading of the logo out of the initial download. That initial download now just concerns itself with moving the flat text in the HTML into the Tab view. Additionally, RunAsync was not being as efficient as it could with defering the loading of the playgrounds; by moving some code around, it is now as efficient as we could hope bringing initial download down by 50Kb to between 65-70Kb.
    Status: FixedNotReleased
    Caused by two things: a) 109Kb is loaded initially b) The font changes. (b) is easily fixed within CSS (a) required looking a little more at the use of RunAsync. Now we defer the loading of the logo out of the initial download. That initial download now just concerns itself with moving the flat text in the HTML into the Tab view. Additionally, RunAsync was not being as efficient as it could with defering the loading of the playgrounds; by moving some code around, it is now as efficient as we could hope bringing initial download down by 50Kb to between 65-70Kb.
    Status: FixedNotReleased
  • Oct 25, 2009
    issue 128 (Noticeable delay when loading EffectsExample) reported by adam.tacy   -   There is quite a noticeable delay when the EffectsExample application is loaded before the application is ready -we should minimise that.
    There is quite a noticeable delay when the EffectsExample application is loaded before the application is ready -we should minimise that.
  • Oct 17, 2009
    issue 127 (v 0.5.0 JavaDoc missing) Status changed by adam.tacy   -   uploaded
    Status: Fixed
    uploaded
    Status: Fixed
  • Oct 17, 2009
    gwt-fx v0.5.0 JavaDoc.zip (GWT-FX Milestone 1 v0.5.0 Javadoc) file uploaded by adam.tacy
  • Oct 15, 2009
    issue 127 (v 0.5.0 JavaDoc missing) reported by brady.kimball   -   It seems that there are no JavaDocs for v 0.5.0 available. If you could, please upload the v 0.5.0 JavaDocs. Thanks!
    It seems that there are no JavaDocs for v 0.5.0 available. If you could, please upload the v 0.5.0 JavaDocs. Thanks!
  • Oct 11, 2009
    issue 56 (Why is it so intrusive) commented on by sami.jaber   -   Bravo adam ! This is definitively better, I'll certainly go back to gwt-fx after those changes.
    Bravo adam ! This is definitively better, I'll certainly go back to gwt-fx after those changes.
  • Oct 11, 2009
    GWT FX v0.5.0 MS 1.jar (GWT-FX Milestone 1 v0.5.0 (version numbering rebaselined - t...) file uploaded by adam.tacy   -  
    Labels: Pre-release OpSys-All
    Labels: Pre-release OpSys-All
  • Oct 11, 2009
    issue 59 (Problem with resizing of the browser window and automatic wi...) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release4.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release4.0.0
  • Oct 11, 2009
    issue 125 (Enhance Colour handling for "transparent" colours) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 124 (Resize not calculating width and height correctly when padd...) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 123 (Increase Efficiency of Resize) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 122 (getComputedStyle in W3C browsers doesn't work) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 121 (Resize does not handle box model aspects (e.g. margin, paddi...) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 126 (Enhance the Highlight Effect) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 120 (Enhance Resize to allow adding a single CSS name to be manag...) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 118 (NEffect's setPosition() doesn't fire events) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 113 (Method to get Value of a style quicker than making two calls...) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 112 (Allow EffectSteppingEvent to report actual value of transiti...) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 100 (Allow effects to loop) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 110 (Uninitialized object in NMorphStyle) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 107 (NumberFormatException for non-numeric font-size in Resize.cr...) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 108 (Exception thrown for CSS clip styles) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 105 (Slides do not display outside NEffectPanel) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 104 (Allow same effect to apply to multiple elements at the same ...) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 103 (Allow Resize to have percentage > 100) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 102 (Allow effects to be reused) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 101 (Enhance library to support, for example, Moves that are non-...) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
  • Oct 11, 2009
    issue 99 (Add ability to Pause an effect (which can then be restarted ...) changed by adam.tacy   -  
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
    Status: Fixed
    Labels: Milestone-Release-0.5.0-MS1 Milestone-Release5.0.0
 
Hosted by Google Code