Thats right, Starcraft II is finally in the works. After almost 10 years after the first release of Starcraft they finally decided to put their act together and get us the new version. Can’t Wait! Link: www.starcraft2.com
Dynamic sliders numero 2
Title: Dynamic Sliders Numero 2 After working with the previous version of the sliders -se previous post-. I had the opportunity to “upgrade” the sliders since there was a slight chance that the sliders had to react to only one button rather than two as originally planned. Needless to say it wasn’t required to apply […]
Dynamic Sliders
So I was working on a project where we needed some sliders, it was basically the same slider but in different sizes and positions. So today I was sitting there just wondering how I could make this more dynamic, and just put a small class together and created a small sample. Updating the sliders the […]
Actionscript count and trace the number or arguments passed to a function
[as] var totalArgs = arguments.length; trace(“Number of Arguments passed = ” + totalArgs); for (var i:Number = 0; i < totalArgs; i++) { trace ("Argument "+i + ": " + arguments[i]); } [/as]
Actionscript Round and keep decimals function
[as]function formatDecimals2 (num, digits) { if (num < 0 ) { num = 0; } if (digits
We need ability to set multiple Masks
We need the ability to be able to set multiple masks on the fly. If you do: mc1.setMask(myMask); and then you add mc2.setMask(myMask); mc1 gets unmasked, of course we can put mc1 and mc2 into one mc and create mc3 then we can mask mc3 as follows mc3.setMask(myMask); But I don’t want to do it […]
Delete enhanced fill problem
Thats it! I am tired of getting the “Enhanced fill not supported in current player version” problem when I import fills from AI/FH/FW and you need to export to V7 or under, so once and for all I am putting a stop to it. Here are 3 simple steps to get rid of this problem […]
Trace selected text with TextMate
That is right, thanks to the guys from TextMate and their help I was able to get a small Macro that will trace the selected word in Flash. What I mean is this: 1. Select a word 2. Run the Macro 3. the word you selected will appear in the next line as follows: trace(“the […]
Complex Array combo
I haven’t tested this kind of array usage against the processor so I am not sure how intensive it is but it definitely helps in case you want to keep your arrays very descriptive and you don’t want to do a search on the array every-time you need a certain node. So the regular way […]
Password protected flash site Class
After seeing so many people requesting help with the easy Username and Password method for Flash I decided to write a small class. Granted UserName and Password verification shouldn’t be taken slightly, but many times you just want to make a section of your site “Pass Protected with flash”, and in reality this is a […]