Thanks you guys for helping point me at hAXE. I have been wondering more what it does and if it will be useful to me. I will start taking a look today since I am home sick and full of green goblins :(
I love this list for these emails, thanks a million Martin Heidegger wrote: > I know the good points of haXe, Nicolas ;) > But it doesn't change anything at the fact that > debugging in IE sucks and IE6 has a looot of bugs. > And this is what frightenes Ken (and he does it for > his own good). > > sorry for confusion. > Martin. > > PS.: haXe rules ;) > > > 2006/9/5, Nicolas Cannasse <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>>: > > > Oh by the way: Some JavaScript version do not support exceptions > and/or > > a lot of other constructs - is there a JSVersion flag in haXe? > > haXe is ensured to work with current generation of browsers JS > engines > (IE6/7, Firefox, Safari, Opera). In general what you would do to > ensure > cross-browser compatibility is to define a small class that wrap the > things in an abstract way : > > function setColor( rgb : Int ) { > if( js.Lib.isIE ) > .... > else > .... > } > > The advantage over JS is that you don't have to manually manage a > lot of > small includes (or several huge ones like in other JS frameworks). > All > the classes needed - and only these - are generated into one > single .js > file. > > Nicolas > > _______________________________________________ > osflash mailing list > [email protected] <mailto:[email protected]> > http://osflash.org/mailman/listinfo/osflash_osflash.org > > > > > -- > ICQ: 117662935 > Skype: mastakaneda > ------------------------------------------------------------------------ > > _______________________________________________ > osflash mailing list > [email protected] > http://osflash.org/mailman/listinfo/osflash_osflash.org > _______________________________________________ osflash mailing list [email protected] http://osflash.org/mailman/listinfo/osflash_osflash.org
