Resources
Search
Archives
Categories
Meta
Category Archives: Components
Minimal Calendar
I’m doing a personal project with my Minimal Components and I needed a calendar. So I made one. [kml_flashembed publishmethod=”static” fversion=”10.0.0″ movie=”http://www.bit-101.com/blog/wp-content/uploads/2010/02/Playground.swf” width=”200″ height=”180″ targetclass=”flashmovie”] [/kml_flashembed] It’s in version 0.98 here: http://code.google.com/p/minimalcomps/. This release also fixes a couple of bugs … Continue reading
Posted in ActionScript, Components
6 Comments
MinimalComp of the week: FPSMeter
Simple one but useful. [as3]new FPSMeter(this, 10, 10);[/as3] gives you a numeric readout of the current calculated frames per second. Demo time: [kml_flashembed publishmethod=”static” fversion=”10.0.0″ movie=”http://www.bit-101.com/blog/wp-content/uploads/2009/08/FPSDemo.swf” width=”400″ height=”400″ targetclass=”flashmovie”] [/kml_flashembed] Here’s the code for that demo: [as3]package { import com.bit101.components.*; … Continue reading
Posted in ActionScript, Components, Flash
6 Comments
MinimalComps advanced Color Chooser
Well, we have the first major contribution by someone other than myself. Rashid Ghassempouri decided to revamp the color chooser to allow for a color panel popup so you can choose a color with the mouse. Actually, he added all … Continue reading
Posted in ActionScript, Components, Flash
15 Comments
MinimalComps now in wonderfl
I just noticed that my Minimal Components have been added to wonderfl. http://wonderfl.net/blog/2009/08/added-some-libraries-and-checkmate-vol2-started.html If you’re not familiar with wonderfl, it’s a site that allows you to type ActionScript into the page and compiles and runs it right there. You can … Continue reading
Posted in ActionScript, Components, Flash
8 Comments
MinimalDesigner 0.04
Now with full class generation. 🙂 Even generates empty event handlers if you specify an event. I actually went through and refactored all those nasty long conditionals into strategies. That worked nicely. Now when i release the code, you won’t … Continue reading
Posted in ActionScript, Components, Flash
8 Comments
MinimalDesigner … um … Alpha?
I don’t know what you want to call it, but I wrapped up the rest of the properties panel and plain vanilla code gen. VERY minimal testing, so let me know what breaks, as I’m sure something will. Tomorrow I’ll … Continue reading
Posted in ActionScript, Components, Flash
7 Comments
MinimalDesigner working preview
Go check it out! http://www.bit-101.com/MinimalDesigner/ Still lots to do. As far as the properties panel goes, the first column should pretty much work. The second column partially works. The others, not at all. As far as code generation, it just … Continue reading
Posted in ActionScript, Components, Flash
11 Comments
MinimalDesigner
Ooh, look what I am playing with…
Posted in ActionScript, Components, Flash
5 Comments
Minimal Comps: Plans
A few things I have in mind for the components: – A tick property on the sliders. Currently, you can set the label precision which is ok, but it doesn’t affect the resulting value of the component. So you might … Continue reading
Posted in ActionScript, Components, Flash
7 Comments
Minimal Components: HBox, VBox
Long overdue, a couple of simple layout containers. HBox and VBox. You just create them, add components to them and they lay out the components vertically or horizontally. You can adjust the spacing. I had to go in and do … Continue reading
Posted in ActionScript, Components, Flash
2 Comments