Questions tagged [flash-cs5]

Flash CS5 is part of Adobe's Creative Suite released on 30 April 2010. Its main features over its predecessors are the iPhone packager, new text engine (TLF), and code snippets.

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").

1721 questions
3
votes
1 answer

Flash CS5 output on OSX

Solution: I was looking into the wrong library. There are two libraries in mac OSX; Macintosh HD and system. In order to fix this issue need to get to the Macintosh HD and full url is: Macintosh HD/Library/Application…
rex
  • 985
  • 5
  • 28
  • 48
3
votes
3 answers

Reusing library items across Flash projects

What's the best way to re-use library elements across Flash projects. For instance, I created a loading indicator Movie Clip that I want to re-use- Should I export it as a SWF, and then re-import it into other projects? (For some reason when I…
Yarin
  • 173,523
  • 149
  • 402
  • 512
3
votes
1 answer

how do I use netstream.appendBytes() for http dynamic streaming?

I am trying to figure out how to use http dynamic streaming with flash 10.1 but I can't get the basic functions working. What is the syntax for using appendbytes with a video file? package com.player { import flash.display.Stage; import…
user319862
  • 1,797
  • 2
  • 24
  • 32
3
votes
2 answers

Flash CS4 vs Flash CS5 Actionscript - Should I upgrade?

From the perspective of coding, what are the major improvements from Flash CS4 to Flash CS5?
ina
  • 19,167
  • 39
  • 122
  • 201
3
votes
5 answers

Package SWF into an EXE or APP

I am trying to adjust my Flash development workflow so that I am using Flash Builder for all of my coding and multiple FLA files for the user interfaces. I will be creating an ActionScript project in Flash Builder and then having each FLA export a…
Jeremy White
  • 2,818
  • 6
  • 38
  • 74
3
votes
3 answers

Flash CS5 screwed up all my textfields - how can I correct this?

I have an Actionscript project that I was building using Flash CS4. I embedded a font using the follow: [Embed(source="/bin/assets/fonts/MyriadPro-Regular.otf", fontWeight="normal", fontFamily="Myriad Pro")] Then throughout my application in my…
WillyCornbread
  • 837
  • 1
  • 12
  • 21
3
votes
2 answers

As3 - How To Check What IDE the SWF is Running From with Code?

I know this is kind of a strange thing to I want to find, but here is a little backstory as to why I'm trying to do this: I am making an online multiplayer flash game. I am using flash builder and flash professional for writing as3 and working with…
Mc' Flips
  • 1,023
  • 2
  • 9
  • 9
3
votes
2 answers

How to set font style light?

I m making a web site from photoshop sketch. And I have a text wit font-family Segoe Ui and font-style: Light. In photoshop It looks like this: So how to set this in css to p element? p { }
user2950593
  • 9,233
  • 15
  • 67
  • 131
3
votes
1 answer

custom sorting array using object property

Guys i want to sorting an array using sortOn, i very confused because i need some custom sorting array method to get my purpose, this is my array : var C:Node = new Node(); var D:Node = new Node(); var E:Node = new Node(); var F:Node = new Node();…
D2N
  • 57
  • 1
  • 4
3
votes
1 answer

Adobe Flash Professional CS6 for Android: Navigate from One movie-clip to another move-clip using Actionscript 3 class

I have created one 'login page' which is a movieclip. and my another page is 'home' which is another movie clip. so what i want to do is.. i wanna navigate my one move-clip to another movie clip. and `i don'n want to use timeline. just by codding in…
Aadi
  • 1,131
  • 2
  • 16
  • 32
3
votes
3 answers

How do I detect collision detection in flash AS3?

I wanted to create a maze in flash AS3, with the user guiding the character. I tried using this (below) but this will require me to make all the maze walls individual and setting collision detection to each one. Is there an easier way of…
Avtar Brar
  • 93
  • 1
  • 2
  • 12
2
votes
4 answers

Flash FLA file size becoming huge for no good reason

Q1: What is the reason for the enormass bloating of FLA file size, when many edits and saves are made to a FLA file, yet assets are not being added to the library? Q2: What is the best technique to keep FLA files smaller in size? (with the problem…
ktamlyn
  • 4,519
  • 2
  • 30
  • 41
2
votes
2 answers

How to change the radial gradient for oval shape?

I have drawn a circle and applied radial gradient. fine. But when i changed the dimension to oval, the radial gradient is not changing. check the below screen -
Pavan Kumar
  • 1,616
  • 5
  • 26
  • 38
2
votes
1 answer

Flash cs5: Set a variable using a function, then read that variable from a differect function

I have a public variable and I am trying to set it, then read it from a different function: public var str:String; public function DailyVerse() { function create() { str = "hello"; } function take() { var…
Brandon
  • 81
  • 3
  • 10
2
votes
2 answers

Adding 2 decimal number gives wrong result in Action Script

I have a problem with the following statement trace(10.12+13.75) //output 23.869999999999997 Can anybody explain me why is this so and how to get exact 23.87 out of this? Thanks
sameer jain
  • 147
  • 1
  • 1
  • 13