Re: [Flashcoders] A 3-way FMS chat rooms

2010-01-08 Thread Nate Beck
An oldie but a goodie... Programming Flash Communication Server (Brian Lesser) walks you through this exact thing. http://www.amazon.com/dp/0596005040?tag=programmingfl-20camp=14573creative=327641linkCode=as1creativeASIN=0596005040adid=1TBGR6KPT5NPEVWM4B4M; Another option would be to purchase

Re: [Flashcoders] Missing wait(), notify(), sleep() in AS3

2009-08-21 Thread Nate Beck
Flash Player is single threaded... which is why there isn't a sleep command. If you slept and didn't allow other code to execute... your application would just freeze. And that's not what you want. I don't see where the problem is. If I request a url... then get the response. I could just do

Re: [Flashcoders] Flash vs Flex - could you point me at an old thread please?

2009-07-16 Thread Nate Beck
Hey Allandt, I posted a while ago on my blog about Flash vs Flex in regards to widget development. http://blog.natebeck.net/2009/01/widget-development-on-the-flash-platform/ It's not a comprehensive list of pros and cons for each... but it might give you some ideas. Cheers, Nate On Thu, Jul

Re: [Flashcoders] for the love of your own personal god... sign up and vote

2009-07-13 Thread Nate Beck
There are a lot of things lacking at the moment. - Being able to work with the sound using things like computeSpectrum - Creating voice effects - Recording the audio to the local machine from the local machine (no server) Just to name a few... the list goes on. Did you read comments

Re: [Flashcoders] renaming files with air

2009-06-30 Thread Nate Beck
), it's definitely the same if you want to rename a file in Unix -- i.e. mv origFile newFile - Taka On Mon, Jun 29, 2009 at 5:11 PM, Nate Beck n...@tldstudio.com wrote: Why would they need to put in an rename function if they already have a move method..? They do the same thing. On Mon

Re: [Flashcoders] ExternalInterface

2009-06-29 Thread Nate Beck
What browsers are you testing in? Also, does the client have some sort of Ad Blocker? On Sat, Jun 27, 2009 at 5:57 AM, BOYD SPEER bsp...@shaw.ca wrote: I am using ExternalInterface to get the browser to load a .swf into an iFrame (a menu choice) and it works on all five of my computers here

Re: [Flashcoders] renaming files with air

2009-06-29 Thread Nate Beck
Why would they need to put in an rename function if they already have a move method..? They do the same thing. On Mon, Jun 29, 2009 at 11:49 AM, Anthony Pace anthony.p...@utoronto.cawrote: Am I mistaken, or do I have to use moveTo() to rename a file? it seems kind of stupid to me, that they

Re: [Flashcoders] blip.tv api?

2009-06-19 Thread Nate Beck
and password are in the prompt. - Original Message - From: Nate Beck n...@tldstudio.com To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, June 19, 2009 5:17 AM Subject: Re: [Flashcoders] blip.tv api?  To try and make this a little more clear.  You're basically

Re: [Flashcoders] blip.tv api?

2009-06-18 Thread Nate Beck
Did you try... http://www.google.com/search?q=blip.tv+api First one on there. On Thu, Jun 18, 2009 at 5:33 AM, Fabio Pinattifpina...@gmail.com wrote: Dear Coders, I'm wondering if exists some api similar to youtube, to get blip.tv ( http://blip.tv/) videos.. Some advice? Thank you --

Re: [Flashcoders] blip.tv api?

2009-06-18 Thread Nate Beck
that api can work with flash. I see just some zips with java and weird extension files, but no way to call/integrate them from flash. That's the kind of api I asked for, since it's a flash forum. ;) Clear now? Thanks! On Thu, Jun 18, 2009 at 7:35 PM, Nate Beck n...@tldstudio.com wrote: Did

Re: [Flashcoders] blip.tv api?

2009-06-18 Thread Nate Beck
the kind of api I asked for, since it's a flash forum. ;) Clear now? Thanks! On Thu, Jun 18, 2009 at 7:35 PM, Nate Beck n...@tldstudio.com wrote: Did you try... http://www.google.com/search?q=blip.tv+api First one on there. On Thu, Jun 18, 2009 at 5:33 AM, Fabio Pinattifpina...@gmail.com

Re: [Flashcoders] CSS and flash

2009-05-04 Thread Nate Beck
http://tinyurl.com/cwun3b The Actionscript.org and Kirupa results should be able to get you started. On Mon, May 4, 2009 at 2:33 PM, Karl DeSaulniers k...@designdrumm.comwrote: Hello List, I am trying to embark on a journey with Flash and CSS. (Actually just trying to please the bosses) I

Re: [Flashcoders] UK time clock

2009-04-22 Thread Nate Beck
Timezones aren't supported in the Flash Player... you only have UTC time... and then it derives your local time based on your computers timezone offset. I've talked about this quite a bit on FlexCoders (second half of the conversation): http://www.nabble.com/flex-date-and-timezone-td21695609.html

Re: [Flashcoders] UK time clock

2009-04-22 Thread Nate Beck
computer's time is set later than UTC, the return value will be negative. 3) Calculate the offset (in minutes) between the clients timezone and your target timezone. 4) Calculate your clock's values from there. HTH, Nate On Wed, Apr 22, 2009 at 12:17 PM, Nate Beck n...@tldstudio.com wrote: Timezones

Re: [Flashcoders] Looking for a configurable Flash Live Chat Box With Rooms Optional

2009-03-17 Thread Nate Beck
If you're looking to get setup with very little up front money. I'd recommend using Influxis (a Flash Media Server) hosting company. As you can see in their applications, they have text chat applications. http://influxis.com/applications/ You of course could also build your own with their

Re: [Flashcoders] Capture sound input in Flash as MP3?

2009-03-09 Thread Nate Beck
FFMPEG does support the NellyMoser Asao codec (which the Flash Player uses). It says so in the 0.5 changelog. http://www.ffmpeg.org/changelog.html Cheers On Sat, Mar 7, 2009 at 1:25 AM, Anthony Pace anthony.p...@utoronto.cawrote: Hi, Extracting the audio from the flv is a great idea. I

Re: [Flashcoders] Re: include directive ...

2009-03-09 Thread Nate Beck
We had a conversation about this on FlexCoders a little while ago. Here were my thoughts on using include: http://blog.natebeck.net/2009/01/tip-of-the-day-when-to-use-include/ On Sat, Mar 7, 2009 at 9:01 PM, SJF sjf...@gmail.com wrote: Thanks All, I have to externalize the AS in this

Re: [Flashcoders] OOP AS3 learning

2009-03-05 Thread Nate Beck
I learned OOP by reading Yard's Object-Oriented for Flash 8. I also own the version updated for AS3, Object-Oriented ActionScript 3.0. Todd's books really are a great place to get started, I would read the ActionScript Design Patterns book after reading Todd's book. The as3dp book is excellent

Re: [Flashcoders] advice to ms word/xml

2009-03-05 Thread Nate Beck
. emacs ;) On Thu, Mar 5, 2009 at 2:40 PM, Bob Wohl bob.w...@gmail.com wrote: or Aptana! /*ducks*/ On Thu, Mar 5, 2009 at 3:31 PM, Cor c...@chello.nl wrote: Or FlashDevelop -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com

Re: [Flashcoders] Capture sound from computer speakers?

2009-02-20 Thread Nate Beck
What you hear, in your speakers is audio output... not audio input. So to do what you want, you need to somehow turn your audio output into an input. Here are few ideas: - I used to have a Sound Blaster sound card that had a driver that would loop the audio out back into the input. There

Re: [Flashcoders] Fullscreen Mode with TWO projectors

2009-02-18 Thread Nate Beck
Bernice - visit http://chattyfig.figleaf.com/mailman/listinfo/flashcoders If you want to unsubscribe... On Wed, Feb 18, 2009 at 9:07 PM, bernice guerrero bernic...@gmail.comwrote: Stop the email please thank you On Feb 18, 2009 10:04 PM, Randy Tinfow rtin...@yahoo.com wrote: Doing a

Re: [Flashcoders] AS3 Fullscreen mode w/ Windows Projectors

2009-02-17 Thread Nate Beck
Ah, now it makes sense, I was just unable to figure out where you would use a projector in place of an AIR app now-a-days. But that makes total sense. On Tue, Feb 17, 2009 at 2:00 AM, Ian Thomas i...@eirias.net wrote: Yup - makes sense to me. :-) Projectors are there for a reason. :-) Ian

Re: [Flashcoders] AS3 Fullscreen mode w/ Windows Projectors

2009-02-16 Thread Nate Beck
Just out of curiosity... Why are you deploying your application as a stand-alone projector when you could deploy it as an Adobe AIR application? On Mon, Feb 16, 2009 at 2:03 PM, Glen Pike postmas...@glenpike.co.ukwrote: Hi, I don't think that updating the FP updates the IDE one normally - I

Re: [Flashcoders] Best way to access my main class?

2009-02-05 Thread Nate Beck
Option 3! Always opt to use event based architecture. It promotes loose coupling of your components. Although it might be a bit more code, you will be able to use BouncingBall within many games, or other applications. On Thu, Feb 5, 2009 at 10:02 AM, Merrill, Jason

Re: [Flashcoders] Does Flash fire any event(s) when...

2009-02-04 Thread Nate Beck
Use ExternalInterface and close out the browser using Javascript. On Wed, Feb 4, 2009 at 7:31 AM, Cor c...@chello.nl wrote: I have my swf in a html-page, but it is set to fullscreen. I create a close button. But I can't seem to figure out how to close the swf and at the same time the html

Re: [Flashcoders] OT: Internet Explorer 8

2009-02-04 Thread Nate Beck
I use: http://browsershots.org/ To quickly check rendering in different browsers. On Wed, Feb 4, 2009 at 8:39 AM, jonathan howe jonathangh...@gmail.comwrote: Regarding being able to test in older versions of IE (since you can't run parallel versions). I used this program for a little while:

Re: [Flashcoders] Garbage Collection difficulty

2009-01-28 Thread Nate Beck
at 8:31 AM, Nate Beck n...@tldstudio.com wrote: It was my understanding that Garbage Collection doesn't always occur right away. When you have orphaned objects sitting on the heap, they are * eligible* for garbage collection. That doesn't mean they will be removed from memory right away

Re: [Flashcoders] Garbage Collection difficulty

2009-01-28 Thread Nate Beck
It was my understanding that Garbage Collection doesn't always occur right away. When you have orphaned objects sitting on the heap, they are * eligible* for garbage collection. That doesn't mean they will be removed from memory right away. Especially if you're testing for JUST that to happen.

Re: [Flashcoders] [JOB] FLEX Consultant, New Jersey

2009-01-16 Thread Nate Beck
It's okay... at least it's not as bad as when the CEO of the startup I worked at decided to reply-all to the entire company. Telling his partner that we've run out of money, and needed to lay off half of the company. That was an interesting day. On Fri, Jan 16, 2009 at 9:09 AM, Linda Weller

Re: [Flashcoders] accessing variables - AS3

2009-01-12 Thread Nate Beck
this[stringValue + Amt] if you're trying to do it within the same class. On Mon, Jan 12, 2009 at 12:28 PM, Manish Jethani manish.jeth...@gmail.comwrote: On Tue, Jan 13, 2009 at 1:51 AM, Eric E. Dolecki edole...@gmail.com wrote: I have forgotten how to do this... I'd like to set some variables

Re: [Flashcoders] Partially drawing a graphic?

2009-01-12 Thread Nate Beck
How are you storing the vector art? You need a way to parse out the data so that you can choose which lines to draw. Degrafa is an excellent way to go. http://www.degrafa.org/ I don't know Degrafa well enough to tell you if there is something already in there that will make what you're trying to

Re: [Flashcoders] Partially drawing a graphic?

2009-01-12 Thread Nate Beck
something in the api that will help. http://partners.adobe.com/public/developer/en/illustrator/sdk/AIJavaScriptReference.pdf On Mon, Jan 12, 2009 at 7:04 PM, Nate Beck n...@tldstudio.com wrote: How are you storing the vector art? You need a way to parse out the data so that you can choose

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-10 Thread Nate Beck
Dave, I was thinking the same thing. After reading through this thread again, I realized that this client to client thing can be handled using a simple server. And there are already many open-source solutions out there that will accomplish this behavior. Red5, WebORB and BlazeDS all support

Re: [Flashcoders] get PROP from obj.PROP

2009-01-09 Thread Nate Beck
I'm a little confused about what you are trying to do exactly, but using flash.utils.Proxy might be able to help solve your problem. On Fri, Jan 9, 2009 at 6:40 AM, Mendelsohn, Michael michael.mendels...@fmglobal.com wrote: Hi list... I'm passing a var to this signature: private function

Re: [Flashcoders] get PROP from obj.PROP

2009-01-09 Thread Nate Beck
No problem. Proxies are way cool.. I gave a presentation about them last night at the Seattle Flex User Group. I tell you this because I want to show off this photo. http://natebeck.net/images/superprox.jpg Shirts coming soon :D On Fri, Jan 9, 2009 at 10:31 AM, Mendelsohn, Michael

Re: [Flashcoders] Auto Reply: Flashcoders Digest, Vol 16, Issue 11

2009-01-09 Thread Nate Beck
Second that. On Fri, Jan 9, 2009 at 9:55 AM, Joel Stransky stranskydes...@gmail.comwrote: Would you please BAN this guy!? Sheesh. 2009/1/9 j...@masterkitchen.de Vielen Dank für Ihre Nachricht. Ich bin bis einschließlich 9. Januar 2009 nicht erreichbar. In dringenden Fällen wenden Sie

Re: [Flashcoders] Auto Reply: Flashcoders Digest, Vol 16, Issue 11

2009-01-09 Thread Nate Beck
it's not social networking invite spam... Anthony Pace wrote: I hate when people have auto responders. I am for banning him. Nate Beck wrote: Second that. On Fri, Jan 9, 2009 at 9:55 AM, Joel Stransky stranskydes...@gmail.com wrote: Would you please BAN this guy!? Sheesh. 2009/1/9 j

Re: RE : [Flashcoders] create object with getDefinition and pass parameters using apply ?

2009-01-09 Thread Nate Beck
Hey Patrick, I've run into the exact same issue that you have. Actionscript doesn't support overloaded methods or constructors at this time, although there is talk that they are going to add that support at some point in the future. I have not to this day, found a way to use the apply method on

Re: [Flashcoders] get PROP from obj.PROP

2009-01-09 Thread Nate Beck
The presentation is at: http://talks.natebeck.net On Fri, Jan 9, 2009 at 11:57 AM, Mendelsohn, Michael michael.mendels...@fmglobal.com wrote: Nate, have you got any speaker notes posted from your talk? - Mike No problem. Proxies are way cool.. I gave a presentation about them last

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Nate Beck
http://www.amazon.com/Head-First-Java-Kathy-Sierra/dp/0596009208 Enjoy! :) On Fri, Jan 9, 2009 at 1:10 PM, Omar Fouad omarfouad@gmail.com wrote: Ok but I don't know Java... On Fri, Jan 9, 2009 at 10:43 PM, Weyert de Boer w...@innerfuse.biz wrote: If so, the code should be available on

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Nate Beck
...@utoronto.cawrote: that is mean but funny... What languages do you know? Nate Beck wrote: http://www.amazon.com/Head-First-Java-Kathy-Sierra/dp/0596009208 Enjoy! :) On Fri, Jan 9, 2009 at 1:10 PM, Omar Fouad omarfouad@gmail.com wrote: Ok but I don't know Java... On Fri, Jan 9

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Nate Beck
Good to hear Omar! I hate nagging bosses. On Fri, Jan 9, 2009 at 3:22 PM, Omar Fouad omarfouad@gmail.com wrote: Guys when there are deadlines and a Boss bugging you 24/7 there is no time to pick a book and learn a language definitely different from the language you are being writing for

Re: RE : [Flashcoders] create object with getDefinition and pass parameters using apply ?

2009-01-09 Thread Nate Beck
: flashcoders-boun...@chattyfig.figleaf.com [mailto: flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Nate Beck Sent: Friday, January 09, 2009 11:33 AM To: Flash Coders List Subject: Re: RE : [Flashcoders] create object with getDefinition and pass parameters using apply ? Hey Patrick

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Nate Beck
though... Since you know c#, just replace where it says java with c# that is somewhat similar; however, I do completely understand this is sometimes easier said than done. http://www.google.ca/search?hl=enq=simple+socket+server+in+c%23btnG=Searchmeta= Nate Beck wrote: Good

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Nate Beck
:D. But yes I will do it for personal projects. I also think I might create a custom library using C#/AIR bridging, that would be cool, to extend the AIR capabilities. On Sat, Jan 10, 2009 at 2:34 AM, Nate Beck n...@tldstudio.com wrote: The problem... is that once you start introducing OS

Re: [Flashcoders] Looking for actionscript video code

2009-01-08 Thread Nate Beck
Also, using the Adobe Media Encoder ( http://www.communitymx.com/content/article.cfm?cid=77EE2) which installs with CS3 and CS4 is an extremely easy way to work with video files, adding cue points, etc... Cheers, Nate http://blog.natebeck.net

Re: [Flashcoders] RE: Interactive Developer, NYC | 90-100k (Beau Gould (OSS))

2009-01-05 Thread Nate Beck
Actually, that's pretty standard for a quality Flash Developer. Especially in areas where there are loads of start-ups... NYC, Seattle, Bay Area. http://www.indeed.com/salary?q1=Flashl1=Washingtontm=1 On Mon, Jan 5, 2009 at 9:42 AM, Joel Stransky stranskydes...@gmail.comwrote: That's about the

Re: [Flashcoders] How to access var passed in URL from AS2 class

2008-12-16 Thread Nate Beck
http://www.mydomain.com/index.html?passedPage=180 This won't pass into flash as a flashvar. You have a few options though. - Use Javascript to grab the query string and then write it in as a flashvar or query string to the swf. (ex: MySwf.swf?passedPage=180 - Make an ExternalInterface

Re: [Flashcoders] Timer (AS3 newbie question)

2008-12-16 Thread Nate Beck
Without getting too technical, you don't want to use timers move things. You want to use frames instead of timers. Save yourself some headache and don't use timers for movement. (unless you're using them to invalidate properties and such, but that's a more complex topic) Now if you want the

Re: [Flashcoders] How to access var passed in URL from AS2 class

2008-12-16 Thread Nate Beck
...@chattyfig.figleaf.com] On Behalf Of Nate Beck Sent: Tuesday, December 16, 2008 10:35 AM To: Flash Coders List Subject: Re: [Flashcoders] How to access var passed in URL from AS2 class http://www.mydomain.com/index.html?passedPage=180 This won't pass into flash as a flashvar. You have a few

Re: [Flashcoders] What kind of Movies will play directly in a Flash Page

2008-09-10 Thread Nate Beck
WMV = Microsoft... therefore without converting it, the only to do what you want is to use Silverlight. Cheers, Nate On Wed, Sep 10, 2008 at 9:06 AM, Steve Abaffy [EMAIL PROTECTED] wrote: Hello, I have a client that has a .wmv movie and wants to know how you can get it to

Re: [Flashcoders] What kind of Movies will play directly in a Flash Page

2008-09-10 Thread Nate Beck
Make sure your source is relative to your website and not a path like: DO: movie.flv DON'T: C:\foo\bar\movie.flv On Wed, Sep 10, 2008 at 9:57 AM, Steve Abaffy [EMAIL PROTECTED] wrote: I have found that using a FLVPlayback component will play the movie. I have converted the moive and it will