Hi, I'm trying to import sound into flash, however, when I do so and set the sync as stream it keeps up with the visuals but it sounds like crap. If I set it...
Hey Eric - I think you need to change how flash is compressing your audio. Go to File -> Publish Settings. Then click on the "Flash" tab. About three ...
Your object needs to implement a toString() method. Then the returned value will be traced: var obj:Object = new Object(); obj.toString = function():String { ...
Ok. Now I remember. I had asked a simillar question about getting the name of an object before and I think I got simillar answers. Basically I'm looking for...
Have you tried a for-in loop? ** var obj:Object = new Object(); obj.toString = function():String{ var returnVal:String = ""; for(var prop:String in this){ ...
There are methods out there... they use it in the dump variable within the XrayLog and XrayLogging api... Not sure how dependable they are, though. In AS9, i...
Dustin, This looks good. I'm going to try to write something like this using recursion incase of composite objects. Your suggestion of excluding functions is...
Like Scott Said, in AS3 you can use the mx.utils.ObjectUtil class to do some nice debugging, but that's only available inside the Flex Framework: Dustin Tauer ...
Here, I whipped up a recursive one for you. function objectToString(obj:Object, depth:Number):String { if(depth == null) depth = 0; var output:String = ""; ...
Thanks Danny! Saviz ... From: Danny Patterson To: flashmn@yahoogroups.com Sent: Tuesday, July 03, 2007 8:30 AM Subject: RE: [flashmn] AS 2.0 question on...
Hi, Awhile back I posted some questions as to what logging systems are easiest to use aside from trace (specially since trace is no good outside of the ide)....
I am trying to build an image slider that is loaded dynamically from an xml file. The images would scroll right or left depending on direction of the mouse and...
Hello! So I'm happily skinning the UIScrollBar and I found some odd behavior. It doesn't look like you can change the actual width of the scrollbar, or the...
I have had this issue... I don't think its relative to cs3.. Is the actual component editable? Reason I ask is because sometimes the default components are...
Dear FlashMN Members, I am in need of a Flash Consultant, to do a Flash Movie, including music & images. Starting 7/15 +/-; Rate TBD More details to follow for...
Hi, Just a little tid bit I found out about related to Lynda.com courses. I know of a few folks in the group that have Lynda.com accounts to learn about tools...
Hello everyone, I am moving to the Twin Cities in September. I am looking for a WebDesigner / Flash Developer job. Please check out my online portfolio at...
Hi Robert - Welcome to the FlashMN group! Once you get here, feel free to attend our monthly meetings. The group meets on the third Wednesday of every month...
Below is a "for" loop in which I am trying to convert "i" to a string. My goal is to determine which cycles of the loop are products of 10, or as attempted in...
Is this what you are going for? for (i=0; i<numberOfObjects; i++) { var numString:String = String(i); trace(i+ " " + typeof(numString)) var lastPlace:String =...
... determine which cycles of the loop are products of 10, or as attempted in the loop, end with "0". My problem is that "i" is typing as a number in the first...
Thank you both, Matt & Nate. Matt, the modulus operator is just what I was looking for. I knew I was going about solving the problem in an overly complicated...
What I did is called casting. In this case, the loop variable is a string but could be cast as a number since it's a number as a string. Another example would...
My man. ... My man. On Jul 14, 2007, at 4:18 PM, Nate Pacyga wrote: What I did is called casting. In this case, the loop variable is a string but could be...