This is the main entry
Dealing with TextMate
So I have been doing a lot of ActionScript lately and I should say that is nice to have to use the Flash IDE only 10% of the time, and I am looking for ways to reduce that from 5% to 0% of the time, it is tricky since at work I have to use […]
My first take at ROR
I took for a spin ROR (Ruby on Rails) tonight since I had some free time, I started installing it along with a XAMPP installation that I already have running. At first they didn’t want to talk to each other but in the end they both end up working just fine. I would like to […]
RubyOnRails Controllers
when creating a new controller the file name of the controller has to be the same as the controller itself and it can be either xxxxx_controller or just xxxxxx For example mytest_controller.rb – ok mytest.rb – ok mytest_co.rb – not ok also make sure you add ::BASE after the class name definition or you will […]
New launch
I just finished a small website to show case some of the work I have been involved with for the past several years. Multimedia247 – http://www.multimedia247.com
Set a footer on your Flash Movie
[as] stageListener = new Object(); stageListener.onResize = function() { // enter what you want to do on resize, for example: contentHolder_mc._y = Stage.height – contentHolder_mc._height; contentHolder_mc._width = Stage.width; } Stage.addListener(stageListener); stageListener.onResize(); [/as]
Buggy Buttons converted to MovieClips in the Library
So I was running in to the following problem: **Warning** The linkage identifier ‘RewindBtn’ was already assigned to the symbol ‘FLVPlayer_assets/Buttons/Rewind’, and cannot be assigned to the symbol ‘FLVPlayer_assets/Buttons/Rewind’, since linkage identifiers must be unique. But in reallity I only had 1 button called Rewind with the Link ID of RewindBtn and nothing else. I […]
Short hand for If Statement
a = b ? true : false; a == b ? (true1, true2) : false
Exporting from Illustrator to SWF “bug”
If you are exporting any artwork from Illustrator to SWF and when working in Flash and player 7(or less) you might get the following error “Enhanced stroke is not supported in this player”. One way to fix this issue is by setting “Perserve Editability Where Possible” under the Method section. Now this might not work […]
Error in supported CSS properties in Flash
So actually there is not an error in the way the CSS properties are handled within Flash, if you area always in the run trying to get things done you will notice that the first column in the Flash Help file for the CSS properties has (for example) text-align. You might right away try to […]