[Moo] Is this IE missbehoviour fixable (Swiff and calling into Flash without passing valid container id)

2010-03-28 Thread Marc Weber
Hi, Finally I've tracked it down: registering JS callbacks in Flash does not work when the diff to which the object is added is not given this as file: == Main.as == package { import flash.display.*; import flash.external.*; public class Main extends Sprite { public func

[Moo] Re: Bay Area Mootools Meet-up at Mozilla!

2010-03-28 Thread Meroe
I hear that... I'm in the middle of nowhere! :) On Mar 25, 7:40 pm, Oskar Krawczyk wrote: > Tell me about it ... > > On 25 Mar 2010, at 22:40, Jan Kassens wrote: > > > Damn, I should be located in the Bay Area :/ > > > On Mar 25, 2010, at 23:25, csuwldcat wrote: > > >> Any of you Bay Area MooTool

Re: [Moo] Re: IE8 Opacity Animation Bug, child node position relative

2010-03-28 Thread Sanford Whiteman
> But anywho - css can still be used to cure the problem; this shell > uses display inline-block http://jsfiddle.net/r3Lg5/ (which may or may > not be appropriate in reallife). OK. I'm pretty sure `contenteditable` + `filter: inherit` is the best, least intrusive solution to this problem. My goa

[Moo] Re: IE8 Opacity Animation Bug, child node position relative

2010-03-28 Thread rasmusfl0e
I missed the part about the children having non-default positioning :( But anywho - css can still be used to cure the problem; this shell uses display inline-block http://jsfiddle.net/r3Lg5/ (which may or may not be appropriate in reallife). The links to hasLayout info was intended for anyone not

Re: [Moo] Re: IE8 Opacity Animation Bug, child node position relative

2010-03-28 Thread Sanford Whiteman
> "hasLayout" can be triggered through css - no need to "polute" the > html with unnecessary attributes. :P You might want to test your last suggestion before claiming it as a working equivalent. :P I am well aware of the other theoretical methods for adding layout, but you will soon find t

[Moo] Re: IE8 Opacity Animation Bug, child node position relative

2010-03-28 Thread rasmusfl0e
"hasLayout" can be triggered through css - no need to "polute" the html with unnecessary attributes. :P You can use a number of different approaches via css; setting a width or height, floating an element... the list goes on. My favourite would be using the MS proprietary "zoom" (only IE reads it):

Re: [Moo] Re: IE8 Opacity Animation Bug, child node position relative

2010-03-28 Thread Sanford Whiteman
> Amazing. What on earth makes that work? · contenteditable=true gives the relatively positioned element layout, so it can accept filters, but it still won't get a filter applied unless you manually · filter: inherit -- S. To unsubscribe from this group, send email to mootools-users+unsu

Re: [Moo] Re: IE8 Opacity Animation Bug, child node position relative

2010-03-28 Thread Ryan Florence
Amazing. What on earth makes that work? On Mar 27, 2010, at 10:09 PM, Sanford Whiteman wrote: > Okay Ryan, check it out: > > http://jsfiddle.net/L6n3H/ > > This was actually a lot easier than I originally thought. > > -- S. > > To unsubscribe from this group, send email to > mootools-users+

Re: [Moo] Re: Two mootool plugin are not working on the same page.

2010-03-28 Thread Tim Wienk
> could you tell me any good(compatible) mootabs plug in I don't really know anything about tabs-plugins, but since Oskar is sending me ketchup, I'd try http://mootools.net/forge/p/nutabs ;-) -- Tim. To unsubscribe from this group, send email to mootools-users+unsubscribegooglegroups.com or repl

[Moo] Re: Help with mootools morph on CSS (3)

2010-03-28 Thread patcullen
@bruno. very cool. On Mar 28, 9:22 am, Bruno Daniel wrote: > Some nice stuff can be acomplished with that... quick and dirty demo (webkit > only for now):http://sandbox.vault7.com/playground/clock/ > The relevant code: > > var newStyles = new Hash({ >     'webkitTransform': 'rotateX(@deg) skew(@d

Re: [Moo] Re: Help with mootools morph on CSS (3)

2010-03-28 Thread Bruno Daniel
Some nice stuff can be acomplished with that... quick and dirty demo (webkit only for now): http://sandbox.vault7.com/playground/clock/ The relevant code: var newStyles = new Hash({ 'webkitTransform': 'rotateX(@deg) skew(@deg)', 'mozTransform': 'rotate(@deg) skew(@deg)' }); $extend(Element