Re: [Flashcoders] Recommendation for AS3 decompiler?

2009-05-07 Thread jimmi
Hey, you should check out HP swfscan, it decompiles everything just fine(as2 and 3) and it's free. On Wed, May 6, 2009 at 12:11 PM, Glen Pike wrote: > Hi, > >   If you can run windows software, check out Burak's ASV - it's definitely > worth the money and paying users can get access to the latest

Re: [Flashcoders] isseu with a custom function in AS2

2009-04-03 Thread jimmi
Hey guys thanks for the feedback. Willem i would love to have that class of yours. On Fri, Apr 3, 2009 at 12:58 PM, Geografiek wrote: > Hi Jimmi, > I made a class that does just that (and a little bit more). > I can send it to you off list if you wish. > HTH, > Willem van den G

[Flashcoders] isseu with a custom function in AS2

2009-04-03 Thread jimmi
Good morning, I have made a function that adds interpunction marks to a value, for example the value 1 gets changed to 10.000, 10 to 100.000 and so forth. The function work fine, but I'm trying to make it reusable so that i can use it in a large scale project. That's where the problem com

Re: [Flashcoders] [AS in general] Question corcerning a math formula

2009-01-27 Thread jimmi
eString += "0"; >} >return baseString; > } > > If there is someone on this list who would like to convert this function to > AS2 to help Jimmi that would be awesome :) > > Cheers, > > Sid > > > On Jan 27, 2009, at 11:26 AM, allandt b

Re: [Flashcoders] [AS in general] Question corcerning a math formula

2009-01-27 Thread jimmi
gt; would that work for the number 2:20 tho? >>> >>> doesn't flash remove zeros at the end of decimal values? >>> >>> a >>> >>> On Tue, Jan 27, 2009 at 10:20 AM, Sidney de Koning >>> wrote: >>> >>> Hi Jimmi, >

Re: [Flashcoders] [AS in general] Question corcerning a math formula

2009-01-27 Thread jimmi
ou do Number(total).toFixed(2); You get the result you want :) > > This is pure AS3 though, > > Hope this helps, > > Sid > > On Jan 27, 2009, at 9:45 AM, jimmi wrote: > >> Goodmorning, i am trying to make a formula that makes for example 30.60 of >> 30.6. So I nee

[Flashcoders] [AS in general] Question corcerning a math formula

2009-01-27 Thread jimmi
Goodmorning, i am trying to make a formula that makes for example 30.60 of 30.6. So I need it to add a 0. This is the formula I am using now. total = Number(Number(600) / 100 * Number(5.1)) I have tried all sorts of additions to the formula to try to get it to make 30.60 of 30.6. But no luck

Re: [Flashcoders] [AS2] problem with conditional statement "else if"

2009-01-22 Thread jimmi
You need to use && instead of || (btn1._x > 208 || btn1._x < 241) should be (btn1._x > 208 && btn1._x < 241) HTH, Ian On Thu, Jan 22, 2009 at 9:17 AM, jimmi wrote: Hi, for a project it is required that I make a module with AS2. I already got most of the module workin

[Flashcoders] [AS2] problem with conditional statement "else if"

2009-01-22 Thread jimmi
Hi, for a project it is required that I make a module with AS2. I already got most of the module working, except for one part: the slider. The slider button is supposed to stop at six points. I thought that the if..else..if statement would do just fine for this purpose. The problem is that only