Skip to content

Commit

Permalink
Version bump, and removed CS4 by now
Browse files Browse the repository at this point in the history
  • Loading branch information
bomberstudios committed Oct 10, 2010
1 parent ceb19b5 commit 5681aff
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
17 changes: 13 additions & 4 deletions README.markdown
@@ -1,4 +1,4 @@
# Orange Commands v1.6 for Adobe Fireworks
# Orange Commands v1.6.1 for Adobe Fireworks

Orange Commands is a collection of scripts for Adobe Fireworks that make the life of a web designer easier (or at least allow him/her to work faster :)

Expand All @@ -7,9 +7,8 @@ Orange Commands is a collection of scripts for Adobe Fireworks that make the lif

1. Download:

- [Orange Commands 1.6 for Fireworks CS3](http://orangecommands.com/dl/OrangeCommands_1.6_CS3.zip)
- [Orange Commands 1.6 for Fireworks CS4](http://orangecommands.com/dl/OrangeCommands_1.6_CS4.zip)
- [Orange Commands 1.6 for Fireworks CS5](http://orangecommands.com/dl/OrangeCommands_1.6_CS5.zip)
- [Orange Commands 1.6.1 for Fireworks CS3](http://orangecommands.com/dl/OrangeCommands_1.6.1_CS3.zip)
- [Orange Commands 1.6.1 for Fireworks CS5](http://orangecommands.com/dl/OrangeCommands_1.6.1_CS5.zip)


2. Expand the ZIP.
Expand Down Expand Up @@ -172,6 +171,10 @@ It also changes the Optimize settings for all pages, because I hate the "GIF as
The files are saved in a folder named YYYYMMDDHHMMSS (i.e: 20091028170642) inside the current folder, with the page names as the file names.
It also changes the Optimize settings for all pages, because I hate the "GIF as default format" :)

- **Copy as CSS3** (No shortcut)

This command does its best and try to copy the currently selected object's attributes as CSS3 styles.

- **Current Page as PNG 24 in…** (No shortcut)

Exports the current page as a flattened (non editable) PNG file with a 24 bits color depth. This command will ask you for the filename and folder location, and is specially built for @plumilla.
Expand All @@ -181,11 +184,17 @@ It also changes the Optimize settings for all pages, because I hate the "GIF as
Exports the current page as a flattened (non editable) PNG file with a 24 bits color depth. The file is saved in the same folder as the current file, with the page name added to the current file name.
I.e: if your file is called CoolDesign.png, and the current page is called 'Home', the command creates a file named CoolDesign_Home.png

- **Export Image Sprites** (No shortcut)


- **Slices as CSS Sprite** (No shortcut)

Exports the slices in the current document as a .css file.
This way, you can use your PNG file as a sprite.

- **Slices to Image** (No shortcut)


### Export Settings


Expand Down
7 changes: 4 additions & 3 deletions Rakefile
Expand Up @@ -7,9 +7,10 @@ require "erb"
require 'fileutils'
require 'lib/library'

ORANGE_COMMANDS_VERSION = "1.6"
ORANGE_COMMANDS_VERSION = "1.6.1"
DOWNLOAD_SERVER = "http://orangecommands.com/dl/"
@fw_versions = ["CS3","CS4","CS5"]
# @fw_versions = ["CS3","CS4","CS5"]
@fw_versions = ["CS3","CS5"]
@orangecommands = FW::Library.new 'Commands'

def app_folder
Expand Down Expand Up @@ -79,7 +80,7 @@ end
desc "Build MXP files"
task :mxp do
%x(open -a "/Applications/Adobe Extension Manager/Extension Manager.app" OrangeCommands_#{ORANGE_COMMANDS_VERSION}_CS3.mxi)
%x("/Applications/Adobe Extension Manager CS4/Adobe Extension Manager CS4.app/Contents/MacOS/Adobe Extension Manager CS4" -package mxi="OrangeCommands_#{ORANGE_COMMANDS_VERSION}_CS4.mxi" mxp="OrangeCommands_#{ORANGE_COMMANDS_VERSION}_CS4.mxp")
#%x("/Applications/Adobe Extension Manager CS4/Adobe Extension Manager CS4.app/Contents/MacOS/Adobe Extension Manager CS4" -package mxi="OrangeCommands_#{ORANGE_COMMANDS_VERSION}_CS4.mxi" mxp="OrangeCommands_#{ORANGE_COMMANDS_VERSION}_CS4.mxp")
%x("/Applications/Adobe Extension Manager CS5/Adobe Extension Manager CS5.app/Contents/MacOS/Adobe Extension Manager CS5" -package mxi="OrangeCommands_#{ORANGE_COMMANDS_VERSION}_CS5.mxi" mxp="OrangeCommands_#{ORANGE_COMMANDS_VERSION}_CS5.mxp")
end

Expand Down

0 comments on commit 5681aff

Please sign in to comment.