Mercurial > MadButterfly
view nodejs/INSTALL.txt @ 1224:5d731460b32c
Remove search_by_id() from frameline.
- frameline is only responsible for drawing a row of frames.
- layers and scenes are managed by MBScene_dom. So, function of
search_by_id() must move to MBScene_dom class.
- onCellClick() and _change_active_frame() are responsible for
handling GUI event.
- It should not be used with workaround to implement some function.
- Solutions
- MBScene_dom.find_layer_n_scene_of_nod() is used to replace
search_by_id().
- MBScene_framelines.active_frame() is used to replace the
workaround.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Thu, 06 Jan 2011 11:11:27 +0800 |
parents | a74b4d986a91 |
children |
line wrap: on
line source
svg.js: =============== The sample code to load an SVG file. It requires the libxmljs, which is available at http://github.com/polotek/libxmljs/tree/refactor. Please copy the libxmljs.node to the objs/default if you want to test the libxmljs+mbfly without installing them into the system. The path can be defined by the NODE_PATH environment variable. (1) Compile MadButterfly with nodejs support ~user/MadButterfly$ ./configure --enable-nodejs; make (2) Compile libxmljs ~user/MadButterfly/nodejs$ git clone http://github.com/polotek/libxmljs.git ~user/MadButterfly/nodejs$ cd libxmljs; make; cd .. (3) Copy the libxmljs.node to the nodejs build directory ~user/MadButterfly/nodejs$ cp libxmljs/libjsxml.node objs/default (4) Set the path ~user/MadButterfly/nodejs$ export NODE_PATH=objs/default (5) Execute testsvg.js ~user/MadButterfly/nodejs$ ./run examples/testsvg/testsvg.js