Re: [Flashcoders] AIR Screensaver?

2012-03-12 Thread Adrian Zając
I know only this one: http://www.instantstorm.com/ But I think it's for Windows only Adrian W dniu 2012-03-12 23:58, David Hunter pisze: Hi All, Anyone have any advice on making screensavers from Flash? I have seen some decent looking software

Re: [Flashcoders] Adobe ceases development on mobile browser Flash

2011-11-10 Thread Adrian Zając
On the other hand, I would hate to see Flash go away completely from my web life... I love programming in AS3 OOP... I am not sure I would like to do the same kind of programming using JS and HTML5. totally agree I'm not sure that we can win with this whole anti-flash movement, I see so many

Re: [Flashcoders] animation memory leak ... please help

2011-10-18 Thread Adrian Zając
I think I had this problem once... How many of images do you have? Maybe it will be better to make the same number of movie clips, and download every jpg only once? Adrian W dniu 2011-10-18 20:39, [p e r c e p t i c o n] pisze: Hi All, I have an excrutiating memory leak. Here's what i'm

[Flashcoders] problem with adding two digits

2010-12-14 Thread Adrian Zając
Hello, First of all, I want to say Hi to everyone here. This is my first post. Please, take a look at this part of code: trace (0.27 + 0.03); // output -- 0.30004 Can anyone tell me why I get this weird result in output window? Regards Adrian

Re: [Flashcoders] problem with adding two digits

2010-12-14 Thread Adrian Zając
If you need the addition to be accurate and you know that the numbers will always be decimals you can multiply the numbers by 100 and then you will add 27 + 3 which will return 30 and then divide it by 100 to get your .3 (or at least I think that will work as I have not tried it) Yes

Re: [Flashcoders] problem with adding two digits

2010-12-14 Thread Adrian Zając
Thanks Zeh, now I understand. So do we have to keep an eye on our variables so we don't have for example:7.998 * 0,3004 ? Because I think it is a little heavier for processors to count than: 8 * 0.3 W dniu 2010-12-14 16:36, Zeh Fernando pisze: I like to quote