cs4 Stands for Creative Suite 4 And is a collection of programs made and/or managed by Adobe Systems.
Questions tagged [cs4]
115 questions
5
votes
2 answers
Get the color of one pixel at Photoshop scripts
I am trying to figure out how to get the color of one defined Pixel.
In my imagination its shoud look like:
color = get.color.Pixel(x,y);
Maybe someone can help me with this piece of code?

lphd
- 53
- 1
- 6
3
votes
2 answers
Photoshop "Save to Web" automation
I'm fairly new to Photoshop (Still CS4) and I often get designs for websites where slicing them up takes a fairly decent amount of time.
Some sites have layers that are all going to be the same exact size, and they are stacked on top of each other…

Ryan Sullivan
- 93
- 1
- 1
- 6
3
votes
3 answers
fonts not being embedded Flash CS4 AS3
Maybe you can help me with a problem I am having. The URL of the project is:
http://www.mauriciogiraldo.com/vgline/beta/
It is a Drupal-powered, AMFPHP-connected AS3 web app. The data goes through to Flash with no problems, I have verified that…

mga
- 1,960
- 1
- 23
- 31
2
votes
2 answers
arrange->send backward not sending graphics behind
I'm following instructions to make a simple background in Flash CS4 using vector graphics. I'm at the part where the book tells me to put the cloud graphics behind a hill I drew by clicking modify->arrange->send backward, however, clicking that…

user701510
- 5,563
- 17
- 61
- 86
2
votes
1 answer
Flash CS4/AS3: differing behavior between console and textarea for printing UTF-16 characters
trace(escape("д"));
will print "%D0%B4", the correct URL encoding for this character (Cyrillic equivalent of "A").
However, if I were to do..
myTextArea.htmlText += unescape("%D0%B4");
What gets printed is:
д
which is of course incorrect. Simply…

Alkanshel
- 4,198
- 1
- 35
- 54
2
votes
3 answers
Getting Selected Layer or group layers array using javascript (Photoshop CS4)
K basically I need to write a photoshop script that iterates through the selected layers and retrieve some information about them.
if I can get an array of the selected layers I will be fine, I know how to do the rest, but getting that array is been…

Daniel Godinho
- 21
- 1
- 2
2
votes
2 answers
How could I generate instances of an object randomly at the top of the screen and make them "fall"?
I am making a game in Flash CS4 (actionscript 3) and I would like to be able to make "copies" of an instance that would randomly appear at the top of the screen and fall. For example, multiple objects(that are the same one) are falling from the top…

Jackson Curtis
- 91
- 1
- 1
- 6
2
votes
1 answer
Flash CS4 + SQLITE
I'm looking for some information regarding using SQLITE with AIR in Flash CS4, I cannot find any good examples, they're all built for Flex (which I don't want to use). Can anyone give me some basic examples of how to do this with Flash CS4 or direct…

sam
- 5,459
- 6
- 32
- 53
1
vote
2 answers
Flash - Resume playing a song while editing a flash project
So I've found myself needing to do a little bit of flash...
I'm playing a song and syncing up some visual changes with that song. The issue is that in order for the song to play when I preview my changes to the animation, I have to start playing my…

Matt Wonlaw
- 12,146
- 5
- 42
- 44
1
vote
1 answer
AS3 after removing all children from stage, stage becomes a null object?
I have used this code in my AS3 document class to remove all objects from the stage:
var _stage:DisplayObjectContainer = stage as DisplayObjectContainer;
while (_stage.numChildren > 0) {
_stage.removeChildAt(0);
}
and this appears to be…

BumbleShrimp
- 2,150
- 23
- 42
1
vote
1 answer
Flash CS4 actionscript 2 - button controlling a movieclip within a movieclip
I have a button directly on a stage. When this is clicked I want it to cause a movieclip INSIDE ANOTHER MOVIECLIP to move on one frame. When i use the
movieclip.gotoAndStop(2)
command, it wont work (If moviclip is the instance name of the movieclip…

Fred Iles
- 11
- 2
1
vote
1 answer
poor quality with Adobe Flash. How do the pros do it?
I'm thinking of developing an application with Adobe Flash CS4 but I'm having some serious quality issues when importing material from Adobe Photoshop CS4 and Adobe Fireworks CS4.
When I import the material as a bitmap, the quality is better (then…
user849137
1
vote
0 answers
Does CS4 support softkeyboard for desktop applications
I need to use softkeyboard for a flash program developed for windows desktop, and I tried the example given on the following page:
http://help.adobe.com/en_US/as3/dev/WSfffb011ac560372f6bc38fcc12e0166e73b-7fff.html
When I test the movie, it gives me…

avji
- 11
- 2
1
vote
2 answers
redraw regions in flash out of canvas?
i am currently building a pond flash application, and it has a water ripple effect , when it is rendered, the water ripple effect is not at my mouse position when in fact my function makes it draws on my mouse position. i did a show redraw region on…

sutoL
- 1,737
- 10
- 27
- 48
1
vote
3 answers
In Flash CS4 AS3.0 how can I change a shapes fill colour with a click?
I'm building an activity for young kids where they click on a colour in a palette (mouse cursor will be a paint brush) then click on various shapes that I'll layer to create a picture.
depending on the colour they select they should be able to fill…

Nick
- 11
- 2