Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hendrikmaus/AS3-Nimble
Nimble is an open source lightweight fluid layout class for use with ActionScript 3
https://github.com/hendrikmaus/AS3-Nimble
Last synced: 3 months ago
JSON representation
Nimble is an open source lightweight fluid layout class for use with ActionScript 3
- Host: GitHub
- URL: https://github.com/hendrikmaus/AS3-Nimble
- Owner: hendrikmaus
- Created: 2010-02-17T15:36:06.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-11-03T11:59:54.000Z (about 12 years ago)
- Last Synced: 2024-06-23T19:33:27.881Z (5 months ago)
- Language: ActionScript
- Homepage: http://blog.aidentailor.net/nimble/
- Size: 452 KB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-actionscript-sorted - AS3-Nimble - Nimble is an open source lightweight fluid layout class for use with ActionScript 3 (User Interface / Layout)
README
#Nimble Layout Class
##Description
Nimble is a very simple class, built to achieve fluid layouts in Flash applications real quick.
It was created for http://diploma.aidentailor.net during my flash-as3-hype-time ;)##How to use:
Create an object to hold any of the following parameters and pass that object to the Nimble class constructor.```
- alignment: (string) "TOP_LEFT","TOP","TOP_RIGHT","LEFT","MIDDLE","RIGHT","BOTTOM_LEFT","BOTTOM","BOTTOM_RIGHT"
default: "MIDDLE"
- margin: (number) default: 0
```##Example:
```actionscript
new Nimble(displayObject, {alignment: "TOP_LEFT", margin: 20});
```For another example see the attached project.