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-20&camp=14573&creative=327641&linkCode=as1&creativeASIN=0596005040&adid=1TBGR6KPT5NPEVWM4B4M&; Another option would be to purch

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] mac vs pc

2009-08-10 Thread Nate Beck
100% Mac here, I've been using the latest beta build of Flash Builder 4 (a few hiccups, but no show stoppers) and Adobe Flash CS4. On Mon, Aug 10, 2009 at 12:02 PM, FlashDev wrote: > 100% Win XP Prof (Waiting for 7 to be shipped), CS4 & FlashDevelop > > We use a mac to test websites and air appl

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 16,

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 o

Re: [Flashcoders] renaming files with air

2009-06-30 Thread Nate Beck
This is the way it's done, almost universally in programming (as far as I >> know), 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 wrot

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 wrote: > Am I mistaken, or do I have to use moveTo() to rename a file? it seems > kind of stupid to me, that they wouldn't just put a ren

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 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 but the > cli

Re: [Flashcoders] blip.tv api?

2009-06-19 Thread Nate Beck
ined here: >> http://wiki.blip.tv/index.php/Blip.tv_API >> >> username and password are in the prompt. >> >> >> - Original Message - From: "Nate Beck" >> To: "Flash Coders List" >> Sent: Friday, June 19, 2009 5:1

Re: [Flashcoders] blip.tv api?

2009-06-18 Thread Nate Beck
be rude earlier, after re-reading my emails I may have come across that way. I apologize. Cheers, Nate On Thu, Jun 18, 2009 at 8:00 PM, Nate Beck wrote: > From developer wiki that I referenced in my previous post... "You may > be particularly interested in the main blip.tv API, which is built

Re: [Flashcoders] blip.tv api?

2009-06-18 Thread Nate Beck
idn't get how 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 1

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 Pinatti 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 > > -- > Fabio Pi

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 wrote: > Hello List, > I am trying to embark on a journey with Flash and CSS. > (Actually just trying to please the bosses) > I think I was told th

Re: [Flashcoders] UK time clock

2009-04-22 Thread Nate Beck
o equal UTC. If your 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 w

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.htm

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 sourc

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 wrote: > Thanks All, > > I have to externalize the AS in this application because

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 wrote: > Hi, > > Extracting the audio from the flv is a great idea. > > I originally wanted to

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 wrote: > or Aptana! > /*ducks*/ > > On Thu, Mar 5, 2009 at 3:31 PM, Cor wrote: > > > Or FlashDevelop > > > > -Original Message- > > From: flashcoders-boun...@chattyfig.figleaf.com > > [mailto:flashcoders-boun...@chattyfig.figleaf.c

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 excelle

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 w

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 wrote: > Stop the email please thank you > > On Feb 18, 2009 10:04 PM, "Randy Tinfow" wrote: > > Doing a project which has two fullscreen pro

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 wrote: > Yup - makes sense to me. :-) > > Projectors are there for a reason. :-) > > Ian > > On Tue,

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 wrote: > Hi, > > I don't think that updating the FP updates the IDE one normally - I have > never worked ou

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 < jason.merr...@bankofamerica

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 wrote: > 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: > http://www.my-debu

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 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 page correctl

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] Garbage Collection difficulty

2009-01-28 Thread Nate Beck
d, Jan 28, 2009 at 8:31 AM, Nate Beck 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 > f

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 wrote

Re: [Flashcoders] Partially drawing a graphic?

2009-01-12 Thread Nate Beck
Maybe there's 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 wrote: > > > How are you storing the vector art? > > You need a way to

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 a

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 wrote: > On Tue, Jan 13, 2009 at 1:51 AM, Eric E. Dolecki > wrote: > > I have forgotten how to do this... I'd like to set some variables like > this > > a var exists... > >

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 concu

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 wrote: > > > The problem... is that once yo

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

2009-01-09 Thread Nate Beck
gt;> somewhat similar; however, I do completely understand this is sometimes > >> easier said than done. > >> > >> > >> > http://www.google.ca/search?hl=en&q=simple+socket+server+in+c%23&btnG=Search&meta= > >> > >> > >> Nate Beck

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

2009-01-09 Thread Nate Beck
t! But at least > > it works, it could have been worse... > > > > -Original Message- > > From: flashcoders-boun...@chattyfig.figleaf.com [mailto: > > flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Nate Beck > > Sent: Friday, January 09, 2009 11

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 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 years. > > I've found a

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

2009-01-09 Thread Nate Beck
gt; 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 >> wrote: >> >>

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 wrote: > Ok but I don't know Java... > > On Fri, Jan 9, 2009 at 10:43 PM, Weyert de Boer wrote: > > > If so, the code should be available on Google Code somewhere. > > > >> Hi

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 > l

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 a

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

2009-01-09 Thread Nate Beck
liday... > > ... at least 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. >>>

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 wrote: > Would you please BAN this guy!? Sheesh. > > 2009/1/9 > > > Vielen Dank für Ihre Nachricht. > > > > Ich bin bis einschließlich 9. Januar 2009 nicht erreichbar. In dringenden > > Fällen wenden Sie sich bitte an Herrn Peer Schmidt-

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 < michael.men

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 functi

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=Flash&l1=Washington&tm=1 On Mon, Jan 5, 2009 at 9:42 AM, Joel Stransky wrote: > That's about the going rate in my area

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

2008-12-16 Thread Nate Beck
riable2")); > so.write("flashcontent"); > > > > Take care > > -Original Message- > From: flashcoders-boun...@chattyfig.figleaf.com > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Nate Beck > Sent: Tuesday, December 16, 2008 10:35 AM

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 thin

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 c

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 wil

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 i