[Flashcoders] Flash - Hardware Interfacing/Communication

2008-08-21 Thread Daniel Boey
Hi people, I've got a project that requires hardware communication between a Flash kiosk-projector and a few hardwares (eg: scanner, biometric fingerprint reader, smart card reader). What is required is that all this are to be operated seamlessly without any other application dialogs popping up

Re: [Flashcoders] AS3 replacing Textfield Constructor

2008-08-21 Thread Dennis - I Sioux
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders __ NOD32 3373 (20080821) Informatie __ Dit bericht is gecontroleerd door het NOD32 Antivirus Systeem. http://www.nod32.nl

Re: [Flashcoders] Flash - Hardware Interfacing/Communication

2008-08-21 Thread Ian Thomas
Hi Daniel, A number of Flash wrappers (i.e. programs to turn Flash movies into .exe files) can handle extensions (.dlls) written in native code. So you could write or buy extensions to interface with almost anything at a system level - without additional dialogs etc. Northcode's SWFStudio

Re: [Flashcoders] Flash - Hardware Interfacing/Communication

2008-08-21 Thread Daniel Boey
Hi Ian, Thanks for the reply. I failed to mention that I be deploying the kiosk with Adobe AIR and because of that wrappers wouldn't be able to support it as per Adobe's licensing for the runtime, unless I'm mistaken which I hope I am. - Daniel - On Thu, Aug 21, 2008 at 3:48 PM, Ian Thomas

Re: [Flashcoders] Flash - Hardware Interfacing/Communication

2008-08-21 Thread Ian Thomas
Hi Daniel, There isn't an easy solution for AIR - can I ask why you're using AIR if it doesn't do what you want it to? There _is_ a way of doing it with AIR, but it's tricky. What you'd need to do is to create a standalone socket server on your host machine that interfaces with the relevant

Re: [Flashcoders] :: uploading Fonts into a live site--possible?

2008-08-21 Thread Juan Delgado
Haven't done it myself, but it should be possible. Just put the *.ttf file on the server (via Flash/HTML and backend, no AIR needed) and then run swfmill *on the server* to create the swf. You need of course full access to the server to install swfmill. Cheers! Juan On Wed, Aug 20, 2008 at

Re: [Flashcoders] Flash - Hardware Interfacing/Communication

2008-08-21 Thread eric e. dolecki
Yup, sockets are your friend. You don't need a wrapper. You can get some software that can open a bunch of ports too serving as your bridge. (Comfoolery does this but only on a application instance per COM port) - get one that allows virtual ports if you need it. On Thu, Aug 21, 2008 at 4:32 AM,

[Flashcoders] Quick Delegate AS2 question

2008-08-21 Thread Ali Drongo
Hi there, I'm using the Delegate class and can't figure out how to call methods of another class. I think there is an easy answer to this, any suggestions whole- heartedly appreciated. Thanks, Ali Here is the syntax I'm using: import Thermometer class Animator{ var

Re: [Flashcoders] Quick Delegate AS2 question

2008-08-21 Thread Ian Thomas
On Thu, Aug 21, 2008 at 3:01 PM, Ali Drongo [EMAIL PROTECTED] wrote: Hi there, I'm using the Delegate class and can't figure out how to call methods of another class. Delegate.create(thermo, allowInteraction) should become Delegate.create(thermo, thermo.allowInteraction) And this line:

[Flashcoders] Googlebot got confused when seeking Flash requests

2008-08-21 Thread Matheus Gorino
Funny thing, but seems that Googlebot got confused when crawling my Flash site. About 4 weeks ago I created a test website to see exactly how Google indexes a Flash site with contents coming from diferent sources: http://seo.matheusgorino.com/ 4 weeks later the only thing that Google has indexed

Re: [Flashcoders] Quick Delegate AS2 question

2008-08-21 Thread Ian Thomas
On Thu, Aug 21, 2008 at 3:26 PM, Ali Drongo [EMAIL PROTECTED] wrote: I presumed as I had given the scope the method would be called in that object. Yeah - it's because the compiler doesn't know what's inside a Delegate or how to use it. It's just looking at the word 'allowInteraction' and

[Flashcoders] RE: how many coders here actually have a degree related to computer science?

2008-08-21 Thread Kevin Mcfarland
Like Kerry, I come from the world of Director (Adobe/Macromedia Director), with 15+ year's experience there. I have a degree in English but never had a problem landing a job, probably because back in the early days of the 90's, good help was hard to find, and then as I gained experience in

Re: [Flashcoders] Flash - Hardware Interfacing/Communication

2008-08-21 Thread Kevin Mcfarland
Daniel - have you thought about using Director? One of the few things its still useful for (kiosks / communication with external devices). OTOH the current version has so many problems and Director in general seems on its way out, so that I can't blame you for wanting to go the Flash

Re: [Flashcoders] how many coders here actually have a degree related to computer science?

2008-08-21 Thread chas warn
One guy may write a function in a few lines - another may take pages of code to do the exact same thing. Who has the more logical brain? Who is the better programmer? My degree and background is in business and accounting. That fundamental knowledge is key to understanding a business system and to

RE: [Flashcoders] how many coders here actually have a degree related to computer science?

2008-08-21 Thread Kerry Thompson
Chas Warn wrote: One guy may write a function in a few lines - another may take pages of code to do the exact same thing. Who has the more logical brain? Who is the better programmer? I'm not sure that's a good criterion. I'm more interested in how well the code performs, how well it is

Re: [Flashcoders] how many coders here actually have a degree related to computer science?

2008-08-21 Thread Helmut Granda
I've been a hiring manager for companies such as Sony and Disney, and the first thing I look at is experience, then a degree--any degree. Though a degree in a relevant field is nice, the fact that you have a degree shows that you're motivated, and can stick with something and see it through

Re: [Flashcoders] how many coders here actually have a degree related to computer science?

2008-08-21 Thread chas warn
Good points Kerry. On Thu, Aug 21, 2008 at 1:07 PM, Kerry Thompson [EMAIL PROTECTED]wrote: Chas Warn wrote: One guy may write a function in a few lines - another may take pages of code to do the exact same thing. Who has the more logical brain? Who is the better programmer? I'm not

RE: [Flashcoders] how many coders here actually have a degree related to computer science?

2008-08-21 Thread Kerry Thompson
Helmut Granda wrote: But i still feel that not having a degree shows that you are not motivated. That's a good rule of thumb, and words to live by (and study by). Of course, we can point to the exceptions--Bill Gates dropped out of Harvard, I believe it was--but the odds are heavily in your

Re: [Flashcoders] Flash - Hardware Interfacing/Communication

2008-08-21 Thread Daniel Boey
Ian / Eric, Has there been any of such implementations carried out that I can take a look at, even snippets of codes or any of that sort? Unfortunately I don't have experience in this although as a programmer I can understand the gist of what you're both telling me so far and able to

RE: [Flashcoders] AS3 replacing Textfield Constructor

2008-08-21 Thread Merrill, Jason
@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders __ NOD32 3373 (20080821) Informatie __ Dit bericht is gecontroleerd door het NOD32 Antivirus Systeem. http://www.nod32.nl ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] how many coders here actually have a degree related to computer science?

2008-08-21 Thread Helmut Granda
Right, and that is why I partially agree with the post I was referring to, specially because life without a college is not for everyone. Going back to my main point I still believe that not having a degree does not necessary mean that you are not motivated. On Thu, Aug 21, 2008 at 7:32 PM, Kerry

RE: [Flashcoders] AS3 replacing Textfield Constructor

2008-08-21 Thread Dave Watts
Yeah, sorry, you've lost me now. the textfields won't give a signal when they are initialized - can you explain that? What kind of signal - hand signals? Tornado siren? I can't go out with you because I need to stay home and wash my hair.? ;) I would guess it means they won't raise

RE: [Flashcoders] AS3 replacing Textfield Constructor

2008-08-21 Thread Merrill, Jason
I would guess it means they won't raise an initialize event, because he's not invoking super() in his subclass's constructor. You mean, like I suggested in my example code? ;) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com