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
2
votes
2 answers

Trouble with null reference on stage properties in AS3

I am making a website in Flash, coded in flashbuilder. Whenever I try to export my code I get the same error again and again (TypeError = see below). I think the problem has something to do with the stage of my project. Whenever I change the var…
W4cko
  • 23
  • 1
  • 3
2
votes
1 answer

Loads a new movieclip/swf file on Button Click in AS3

Good day. I am creating a library like flash file for our game. I am using adobe flash cs5 with as3 and adobe indesign. I am still very new at flash(a real newbie) and i am wondering if anyone could help me in my problem. DESCRIPTION: I have a…
MisaChan
  • 279
  • 1
  • 5
  • 15
2
votes
1 answer

Test Flash on Android device via USB

I am currently learning Actionscript 3.0, mainly to start developing mobile games for Android. Device central is really useful to emulate the Flash content running on devices, but I thought there was a way to test directly on the device itself via…
Jort
  • 1,401
  • 8
  • 23
  • 39
2
votes
2 answers

Extracting VideoFrames from a SWF

I have a SWF that I want to extract VideoFrames from. They appear under this name when the SWF is opened with 7-Zip (VideoFrame). Obviously, extracting them in that manner accomplishes nothing, as they are not in any recognizable image format. I…
Unsigned
  • 9,640
  • 4
  • 43
  • 72
2
votes
2 answers

How to access bgcolor from swfobject?

Flashbuilder generates a html where the bgcolor is stored(through javascript): ... var swfVersionStr = "10.0.0"; var xiSwfUrlStr =…
algro
  • 639
  • 4
  • 8
  • 25
2
votes
2 answers

1119:Access of possibly undefined property Click through a reference with static type Class

I am making an edutainment game using flash cs5, I'm really new at using flash, in fact we never yet tackle it at school, but I insist on learning about it. In my codes, I encountered this error C:\Users\acer\Desktop\JikanLibrary\Main.as, Line 16 …
MisaChan
  • 279
  • 1
  • 5
  • 15
2
votes
1 answer

gotoAndPlay/gotoAndStop not working with numeric frame labels

For reasons beyond my control, I am currently working on a series of flash files, which have numeric frame labels. This causes a problem, because Flash seems to treat strings the same as integers when using gotoAndPlay/gotoAndStop. Screenshot: For…
producerism
  • 344
  • 4
  • 17
2
votes
1 answer

Flash CS5 Handling "file does not exist" Error in a FileMode.READ situation

I'm working on a flash game in Flash CS5 Professional that will eventually be running on an iPhone (hence the iOS tag). I am currently designing the save game portion of the code and I'm trying to set up what happens when someone runs the game for…
FlashNoob468
  • 175
  • 1
  • 17
2
votes
1 answer

Dashed guides when I edit components in Flash CS 5.5

How can I use those very useful guides that indicate which parts of component must be resized and which not? What is a proper name for them? How I can create them for a new component that I create from scratch? Please see picture to understand what…
Worker
  • 2,411
  • 6
  • 29
  • 55
2
votes
2 answers

Flash CS5 reference a display object from a class other than the document class

Using Flash CS5 Professional I have created a symbol, dragged it onto the stage, and given it an instance name of GreenLight1. If I want to make this visible from the document class, I can simply do the GreenLight1.visible=true; and poof it's good…
FlashNoob468
  • 175
  • 1
  • 17
2
votes
0 answers

Flash CS5 won't publish

I am trying to publish a project from Flash CS5 to an swf. The problem I'm facing is that the file will simply not publish. Flash will not throw any error messages, and just cancel the publish automatically. Anyone got any ideas?? Greatly…
JDos
  • 43
  • 7
2
votes
1 answer

Flash Programming Local To Global problem

I've got this weird problem and i just cant figure it out. I'm using the localToGlobal to get the coordinates for my character and do a hittestpoint on a level clip. Everything works fine in flash player 10.1. r52 But then i open the exact same .swf…
Erik
  • 21
  • 3
2
votes
1 answer

Flash CS5 compiler options broken?

(Haven't received any love on Adobe forums, so trying this here) So, I've formally logged a bug against this with Adobe as I've been beating my head against a wall trying to understand why this won't work, but I'm hoping that it's perhaps something…
deadbeef
  • 53
  • 3
2
votes
1 answer

Alternative for delete

In previous versions of Actionscript, you could use delete in conjunction with Object.registerClass('name', null) to delete class definitions at runtime. Now, according to Adobe documentation, delete will only remove any dynamically attached…
deadbeef
  • 53
  • 3
2
votes
3 answers

I need your help in List box actionscript3.0

import fl.data.DataProvider; import fl.controls.List; var urlLoc:String = new String(); var dp:DataProvider = new DataProvider(); for (var i:uint = 1; i<=5; i++){ dp.addItem( { label:"Channel" +i ,ben : "musicList"+i+".xml"} ); } var list:List…
user838810