Questions tagged [flash-cs6]

Flash CS6 is part of Adobe's Creative Suite released on 7 May 2012.

About Flash:
Flash is a multimedia platform used to add animation, video, and interactivity to web pages. Flash is frequently used for advertisements and games. More recently, it has been positioned as a tool for "Rich Internet Applications" ("RIAs").

861 questions
1
vote
3 answers

Fullscreen in Action Script 3

I work with Flash Adobe CS6. I want to have a fullscreenmode in my application. In AC2 there was a function fscommand. I tried this one, but without success. I just have a .swf file, which should go to fullscreenmode after starting. Do i have a…
zoom23
  • 694
  • 2
  • 10
  • 23
1
vote
2 answers

Getting native vibration to work on iOS through AS3

I've been looking at the documentation and it's a bit confusing as to how I even import the extension for the vibration plugin. http://www.adobe.com/devnet/air/native-extensions-for-air/extensions/vibration.html The instructions says I need to mess…
ArrayOutOfBounds
  • 133
  • 4
  • 19
1
vote
1 answer

image gallery in flash loads on top of my main flash page

in flash im calling an external swf file, and image gallery, im using a loader to do it, it works how it should except for one thing, it opens the swf on top of my main flash file, instead of a separate window. i also need to do a back button to…
Jack5848
  • 41
  • 2
  • 6
1
vote
3 answers

displaying player lives/text Flash game CS6 AS3

I am coding a flash game using AS3 where the player begins with 3 lives, I want this to be displayed on the screen however it only displays the first letter "L" and no number(int Lives) here is the relevent code (snippets) I have a blank textbox…
1
vote
1 answer

Size of the thumb graphic on a Flash scrollbar

I am trying to customise the built-in scrollbar component in flash. Specifically, I need to customise the scrollbar's thumb to have a fixed height and width. This is what I have right now. The thumb height adjusts itself. I need to fix the height…
Bijoy Thangaraj
  • 5,434
  • 4
  • 43
  • 70
1
vote
1 answer

Action Script 3 Error after upgrade to Flash CS6

I recently upgraded to Flash CS6 from CS4. I didn't receive any errors with this script until CS6 but now I'm receiving the following error: Symbol 'wholePlayer,Layer,'Layer9'Frame 3 Line 12 - 1152 A conflict exists with inherited definition…
Solan
  • 11
  • 1
1
vote
1 answer

How to structure code/frames in Flash

I'm working on a Flash game where there are scenes that display a few stages of animation; the animation is controlled by user-clickable buttons (1 through 4) and a progress bar which increases by some amount with a timer. Right now I have each…
darkf
  • 145
  • 2
  • 7
1
vote
2 answers

How do you create a vertical linear gradient in adobe flash professional cs5 or cs6

If you go to the color picker and select a linear gradient you always get a horizontal linear gradient. How do you rotate the gradient 90 degrees to create a gradient moving from top to bottom in adobe flash professional cs5 or 6? My problem stems…
trcarden
  • 881
  • 1
  • 9
  • 17
1
vote
1 answer

try to install - iOS6.0.1 and air 3.5.0.880

okay let see if i can explain this right I am trying to install a flash air application on to a iOS6.0.1 device, i keep getting an error "appID failed to install" I am using flash professional CS6 modify a existing application and publishing with…
1
vote
1 answer

AS3 syntax compile errors - expecting semicolon before rightparen

I know this is extremely basic but the following function is generating 2 syntax errors on compile, these are shown below. I can't figure them out. Any help is much appreciated. Game, Layer 'Actions', Frame 2, Line 5 1086: Syntax error: expecting…
1
vote
0 answers

Operating on Multiple Layers in Flash CS6

I'm new to flash, and I've made a few flash animations in Flash CS6, however some functions that I use very often are mind mindbogglingly repetitive because I simply cannot find a way to perform them on multiple layers at a time. Is there a way to…
Zeke
  • 121
  • 1
  • 10
1
vote
3 answers

Flash CS6 Importing sounds

I'm working on a Flash project in CS6 and need to import a sound to my library but I'm having endless problems with it. I'm using external files in Actionscript 3.0 (e.g. I cannot do a URLRequest as it won't work externally, need to import) I'm…
1
vote
1 answer

How to combine 2 flash games in one with menu?

I have created two games in Flash and AS3 in different files and want to combine them with a menu created on a third file. Do I import them or copy paste them? Should the ActionScript be on the game line or should they all be in the same actions…
1
vote
1 answer

Loop and stop separate movie clips in one animation

I'm creating a small flash banner ad for a school project. I have multiple layers of animated snowflakes that are all MovieClips, and at the end of the timeline I have two text items that are MovieClips which slide in. What I can't figure out is how…
Lori Olson
  • 29
  • 1
  • 5
1
vote
1 answer

Action Script 3, Flash Cs6 How do I create a time delay?

I'm making a website and I want to make a time delay between 16 pages, I've done this: var myDelay:Timer = new Timer(700,1); myDelay.addEventListener(TimerEvent.TIMER, showMessage); myDelay.start(); function showMessage(event:TimerEvent):void{ …
gn66
  • 803
  • 2
  • 12
  • 33