2010
09.15

I need this extension, and made it in two days. In these codes use Japanese comment, maybe work in English. Try this, if you can.

  • Code-delete:Delete selected lines.
  • Code-move-up:Move up selected lines.
  • Code-move-down:Move down selected lines.
  • Code-duplicate-up:Copy selected lines, duplicate above.
  • Code-duplicate-down:Copy selected lines, duplicate below.

Check with: windows xp sp3, Dreamweaver 8-CS5

Download: CodeEditUtils.zip

2009
10.19

Texture panel for Fireworks

I would like to “Texture panel” like a Photoshop’s brush manager in Fireworks.
For Fireworks users and me, I made it.

Download > Texture.zip

First unzip, next 2 files copy to your Command Panels folder where (ex.win) “C:\Program Files\Adobe\Adobe Fireworks CS4\Configuration\Command Panels”. reboot Fw, just installed.
It browse texture in applications texture folder and show them.Then select texture,apply your selected object.Default texture opacity is 0 ,change parameter as you like.
The slider in panel can change texture size for looks in panel.

This extention tested win xp sp3+CS4,CS3,and test for
language setting: Japanese and en_GB. but filesystem is Japanese.
[20091021]
bug fix:Stroke color was fill color / The file name in a few space include was’t change texture.
structure change:Some function call in swf file. There function was moved to jsf file.

You need some texture? Go this site.
You can get over 100 texture for such commercial use.
These texture and site made by Daisuke Hayashi (Japanese Web Designer), So copyright is belonging to him,too.
Don’t redistribute them.


Fireworks texture gallery

Have a good time!

2009
09.02

wonderfl_window
This Script that wonderfl blog parts put into twitter timeline when looking for links such as “http://wonderfl.net/code/~”.

When you scroll browser,
wonderfl_code
such as above image.

Let’s search “wonderfl.net/code” input twitter default search box or forrow with @wonderfl !
By the way, it’s support friendfeed (beta) 

2009
09.02

via Hierarchical Layer Copy
this command copy top layer that include sublayer.

My command base on this command and it repeate processes per layer count.

usage
1.Download zip file, unpack, put into commands folder for Fw.
runPagePaste.zip

2.And so, add two menu into “command” menu.

  • Page Copy
  • Page Paste

3.Select “Page Copy”. next, go other document. Select “Page Paste” command.
(you can’t execute same page,then you can duplicate page simply.)

Attention: “Hierarchical Layer Copy” command can’t copy state, therefore, this command can’t too.
It has tested win xp cs4,but use on your own lisk.

2009
09.02

if you want to paste per page, such like “nombre”,or …etc.etc.

var pnum=fw.getDocumentDOM().pagesCount;
var pno=fw.getDocumentDOM().currentPageNum;//active page
for(i=0;i<pnum;i++){
fw.getDocumentDOM().changeCurrentPage(i);
//some codes
fw.getDocumentDOM().selectNone();//select none
}
fw.getDocumentDOM().changeCurrentPage(pno);//go back to active page