Re: [Flashcoders] Embed fonts problem

2006-09-20 Thread Matthias Dittgen
Hello Leonardo, please try the following: in your publishing settings dialog, enable the size report option. This will show you your exported fonts and their names in the output window (F2). There you should see your "Arial" exported. If you see there for example an "Arial 11px" or the like, you

Re: [Flashcoders] Hiding MD5 shared secret

2006-09-20 Thread David Rorex
hide the secret in many different places throughout the swf, and then combine them together to produce the actual code (using some odd formula). name them things that make it seem related to something else. part of the shared secret should also come from the server, so that it is different every t

Re: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread Burak KALAYCI
Hi Mike, I've just sent my contact information to you off-list. Best regards, Burak Burak KALAYCI, Manitu Group http://www.buraks.com http://www.manitugroup.com - Original Message - From: "Michiel Nolet" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, September 21,

RE: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread Michiel Nolet
Not at all, that is awesome, you don't understand how many hours I've been trying to find that info. I also have plenty more flash files to get the code from :). It's actually kind of interesting that they use javascript that checks useragent, timezone, etc. on whether a pop should be launched or

Re: [Flashcoders] SMIL xml parsing weirdness.

2006-09-20 Thread Claus Wahlers
Everything comes across fine but that one attrubute. You probably did ".attributes.system-bitrate". Both ".attributes.system" and "bitrate" are undefined. The "-" then converts it into a Number, thus NaN. Cheers, Claus. -- claus wahlers côdeazur brasil http://codeazur.com.br

Re: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread Burak KALAYCI
Hi, Micha, thanks, you were quick :) Mike, you can write to me directly off-list if you have any questions about ASV. Best regards, Burak Burak KALAYCI, Manitu Group http://www.buraks.com http://www.manitugroup.com - Original Message - From: "Michael Stuhr" <[EMAIL PROTECTED]> To: "Fla

RE: [Flashcoders] SMIL xml parsing weirdness.

2006-09-20 Thread Ryan Potter
Thanks Claus. I coppied your code and it worked. Yet it is almost the same as mine. Thanks again. Ryan -Original Message- From: [EMAIL PROTECTED] on behalf of Claus Wahlers Sent: Wed 9/20/2006 4:20 PM To: Flashcoders mailing list Cc:

RE: [Flashcoders] SMIL xml parsing weirdness.

2006-09-20 Thread Ryan Potter
Yep. That is one if the weird parts. Everything comes across fine but that one attrubute. -Original Message- From: [EMAIL PROTECTED] on behalf of Merrill, Jason Sent: Wed 9/20/2006 4:17 PM To: Flashcoders mailing list Cc: Subject: RE

Re: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread Michael Stuhr
Michiel Nolet schrieb: I am more than willing to shell $59.95 for asv, I just want to make sure it can extract stuff that other toosl couldn't. I've tried the free command line ones, and shell out $30 for some crappy software that plain didn't work. Could you copy paste some sample lines of mor

RE: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread Michiel Nolet
I am more than willing to shell $59.95 for asv, I just want to make sure it can extract stuff that other toosl couldn't. I've tried the free command line ones, and shell out $30 for some crappy software that plain didn't work. Could you copy paste some sample lines of more informative code you're

[Flashcoders] Flash IDE feature request

2006-09-20 Thread Patrick Matte
It would be nice if a list of all the library MovieClips with a linkageID would appear when you type attachMovie ! I don't know how it works in AS3, addChild I guess. Anyway, all the linkageIDs in a list, that would be nice. ___ Flashcoders@chattyfig.fi

Re: [Flashcoders] Object.registerClass

2006-09-20 Thread slangeberg
Mark said: pass the movieclip into the constructor of the movieclip Did you mean to say: pass the movieclip into the constructor of the class? Scott On 9/20/06, Mark Lapasa <[EMAIL PROTECTED]> wrote: What I normally do in this case is pass the movieclip into the constructor of the moviecl

Re: [Flashcoders] SMIL xml parsing weirdness.

2006-09-20 Thread Claus Wahlers
Works for me: var self:MovieClip = this; var xml:XML = new XML(); xml.ignoreWhite = true; xml.onLoad = function(ok:Boolean) { self.doStuff(ok); } xml.load("soap.xml"); stop(); function doStuff(ok:Boolean):Void { var bitrate:String = xml.firstChild.firstChild.nextSibling.firstChild.firstChild.

RE: [Flashcoders] SMIL xml parsing weirdness.

2006-09-20 Thread Merrill, Jason
It could be. Can you get to >-Original Message- >>From: [EMAIL PROTECTED] [mailto:flashcoders- >>[EMAIL PROTECTED] On Behalf Of Ryan Potter >>Sent: Wednesday, September 20, 2006 6:06 PM >>To: Flashcoders mailing list >>Subject: [Flashcoders] SMIL xml parsing weirdness. >> >>Hello list. >>

Re: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread Michael Stuhr
Michiel Nolet schrieb: All I see on decompiling is things like: var eval ("\x01") = 930; while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (eval ("\x01") == 930) { eval ("\x01") = eval ("\x01") - 695} ,

[Flashcoders] SMIL xml parsing weirdness.

2006-09-20 Thread Ryan Potter
Hello list. I have been working on parsing a smil xml file so that I can detect bandwidth for an flv player. I am getting the xml output from a PHP script and I am using xml.sendAndLoad(). That all works just fine. I can get the xml object back and I can parse through it and get the data out wi

Re: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread John Dowdell
Michiel Nolet wrote: - User visits his favorite website, say, www.joesblog.com - Joesblogs puts some ads on his site and sell his inventory to an adnetwork - Adnetwork doesn't know this "matchservice.com" ad is a scam, and serves the user a nice 468x60 flash banner of rmatchservice.com - If the u

RE: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread Michiel Nolet
All I see on decompiling is things like: var eval ("\x01") = 930; while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (while (eval ("\x01") == 930) { eval ("\x01") = eval ("\x01") - 695} , eval ("\x01") == 67) {

Re: [Flashcoders] HTTP post request in the background

2006-09-20 Thread Bill Abel
This works. Thanks so much! Here's the final code... // *** Post data to Sales Closer *** import mx.utils.Delegate; function onResponseComplete(success:Boolean):Void { trace("Completed"); } function processForm() { //process phone number var full_phone_number = phone_tb

RE: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread Michiel Nolet
Not quite sure what the 'prior errorsafe javascript' implementation is. User experience is as follows: - User visits his favorite website, say, www.joesblog.com - Joesblogs puts some ads on his site and sell his inventory to an adnetwork - Adnetwork doesn't know this "matchservice.com" ad is a sca

Re: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread John Dowdell
Michiel Nolet wrote: I'm in the online advertising industry and I've been trying to track down an squash a scam that has been hitting the industry. There is a party out there (errorsafe.com) that is embedding some very nasty code in their flash ads that depending on several factors will popup

RE: [Flashcoders] Object.registerClass

2006-09-20 Thread Mark Lapasa
What I normally do in this case is pass the movieclip into the constructor of the movieclip a.k.a. Decorator Design Pattern http://en.wikipedia.org/wiki/Decorator_pattern So rather than other objects dealing with the movieclip directly, they deal with the interface of the class you decorate the m

Re: [Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread Michael Stuhr
Michiel Nolet schrieb: Dear List, First off, apologies if this is the wrong forum for this question. Some background -- I'm in the online advertising industry and I've been trying to track down an squash a scam that has been hitting the industry. There is a party out there (errorsafe.com) tha

Re: [Flashcoders] HTTP post request in the background

2006-09-20 Thread Gustavo Teider - Adobe Flash Developer
Bill Abel escreveu: Here is what I have now with only the .send method. I tried using sendAndLoad(url, null, "POST")...as well as several different ways. This is my currently working version. I've commented out the parts that I need to work. The function process the phone number and then pu

[Flashcoders] Object.registerClass

2006-09-20 Thread Patrick Matte
Flash help says that registerClass works with the attachMovie method but I was wondering if there was any way to register a class to a MovieClip created with the createEmptyMovieClip method. ___ Flashcoders@chattyfig.figleaf.com To change your subscript

RE: [Flashcoders] HTTP post request in the background

2006-09-20 Thread Mike Keesey
You should use something along these lines: import mx.utils.Delegate; function onResponseComplete(success:Boolean):Void { // Do something in response. } var request:LoadVars = new LoadVars(); // Set up variables in request. var response = new LoadVars(); response.onLoad = Delegate.create(t

Re: [Flashcoders] HTTP post request in the background

2006-09-20 Thread Bill Abel
Here is what I have now with only the .send method. I tried using sendAndLoad(url, null, "POST")...as well as several different ways. This is my currently working version. I've commented out the parts that I need to work. The function process the phone number and then puts everything into

[Flashcoders] Decompiling some sketchy flash code

2006-09-20 Thread Michiel Nolet
Dear List, First off, apologies if this is the wrong forum for this question. Some background -- I'm in the online advertising industry and I've been trying to track down an squash a scam that has been hitting the industry. There is a party out there (errorsafe.com) that is embedding some ve

Re: [Flashcoders] HTTP post request in the background

2006-09-20 Thread Gustavo Teider - Adobe Flash Developer
Bill Abel escreveu: How do you post an array to a server side-script without loading the script's URL in the browser. I can post data using Ruby's Net::HTTP and it works great in a rails app. I want to do the same thing in Flash. LoadVars.send will only work if I load the script's URL into t

[Flashcoders] HTTP post request in the background

2006-09-20 Thread Bill Abel
How do you post an array to a server side-script without loading the script's URL in the browser. I can post data using Ruby's Net::HTTP and it works great in a rails app. I want to do the same thing in Flash. LoadVars.send will only work if I load the script's URL into the browser. This

[Flashcoders] solution: FLVplayer and cuepoints

2006-09-20 Thread til
I solved my own problem :)) Vid1.autoRewind=false; // I didnt have that before in the button function: Vid1.stop(); Vid1.seek(player.findCuePoint("cuePt8")["time"]-0.25); // I'm moving a quarter second before the actual cuepoint to ensure the video gets it. Without the stop though, it didnt wor

[Flashcoders] Re: FLVplayback and cuepoints

2006-09-20 Thread til
Hi, here's another attempt to simplify the problem: There's a FLV file with AS cuepoints. When I play it, my actions perform as expected (I see trace output at every cue point). THE PROBLEM: A button that seeks to a cuepoint -- Vid1.seek(8); -- plays video at expected position (8 seconds into

RE: [Flashcoders] NetConnection Fail Error

2006-09-20 Thread INK
Hi there! The reason is: rtmp://localhost/ - this is how you se you computer. As for the others in local network be sure to change connection string to you local ip address. Must be something like 192.168.0.XXX Or whatever. Depends on your network conf. -Original Message- From: [EMAIL PR

[Flashcoders] NetConnection Fail Error

2006-09-20 Thread [EMAIL PROTECTED]
Any idea why? I'm trying to publish a live video on my local network... Locally on my pc works fine, feed and player, but when i go lo local host feed still working but no one can see the cam. here is my code: feed: var nc:NetConnection = new NetConnection(); nc.connect("rtmp://localhost/vide

Re: [Flashcoders] >> MC not pressed

2006-09-20 Thread Marc Hoffman
What I usually do is two steps: Step 1: go through all the clips and scale them to 50. Step 2: scale the pressed clip back to 300. If you have a lot of clips, you should put them in an array. If they're all nested in a parent clip, with nothing else in that clip, you can use a for...in functi

Re: [Flashcoders] >> MC not pressed

2006-09-20 Thread Gustavo Teider - Adobe Flash Developer
Laurent CUCHET escreveu: There is a lot of mc but I take to explain the case : They are name A_mc, B_mc and C_mc If I press one clip its scale get 300. How can I do in the same time get 50 to the other not pressed ? A_mc.onPress = B_mc.onPress = C_mc.onPress = function() { this._xscale = th

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Bbt Lists
Duncan Reid wrote: One thing you can try is to give your image an id so it's seen as a "MovieClip" within the textfield, then you can run a checker to see when it's loaded then redraw the scrollbar... so to access it you would path: textfieldname.mcID. hope this helps some, Dunc Ah! I will tr

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Bbt Lists
Gustavo Teider - Adobe Flash Developer wrote: Gustavo Teider - Adobe Flash Developer wrote: your image its loading in html textfield with This is correct. It is an html field with the img tag (in this case). I am offsite at another location, so I do not have my files with me to post. But th

RE:[Flashcoders] Disable Row in ListBox Component

2006-09-20 Thread azsl1326-email
Perfect ... thanks! Wed Sep 20 12:22:58 EDT 2006 Michael Stuhr wrote: >i think you have to do this manually. >you either create a cellrenderer for your list and handle it this way (look in >the help for >cellRenderer API) or you could : > >var list:mx.controls.List; > >list.addItem({label:"F

[Flashcoders] >> MC not pressed

2006-09-20 Thread Laurent CUCHET
There is a lot of mc but I take to explain the case : They are name A_mc, B_mc and C_mc If I press one clip its scale get 300. How can I do in the same time get 50 to the other not pressed ? A_mc.onPress = B_mc.onPress = C_mc.onPress = function() { this._xscale = this._yscale = 300; }; Thank

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Duncan Reid
One thing you can try is to give your image an id so it's seen as a "MovieClip" within the textfield, then you can run a checker to see when it's loaded then redraw the scrollbar... so to access it you would path: textfieldname.mcID. hope this helps some, Dunc On 9/20/06, Bbt Lists <[EMAIL P

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Gustavo Teider - Adobe Flash Developer
Bbt Lists escreveu: Gustavo Teider - Adobe Flash Developer wrote: use setScrollTarget scrollbar.setScrollTarget(your_textfield); is this ? But how do you tell if the data is actually done loading? I mean for example, i have a field that loads a jpg in, and since the jpg takes a little l

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Gustavo Teider - Adobe Flash Developer
Bbt Lists escreveu: Gustavo Teider - Adobe Flash Developer wrote: use setScrollTarget scrollbar.setScrollTarget(your_textfield); is this ? But how do you tell if the data is actually done loading? I mean for example, i have a field that loads a jpg in, and since the jpg takes a little l

Re: [Flashcoders] Associate clip with class

2006-09-20 Thread Francis Turmel
hrm actually heres a slightly revised version. Hope this helps class ca.nectere.utils.ClassUtils{ //create a movieClip and associate a class with it static public function CreateWithClass( classRef:Function, target:MovieClip, name:String, depth:Number, params:Object ){ if (depth ==

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Marc Hoffman
Good point, and I don't know of an elegant answer. But one hack would be to simultaneously load your images into hidden clips using MovieClipLoader, and set up some onInit calls that would tell you when all the images have been downloaded. Marc At 09:20 AM 9/20/2006, you wrote: Gustavo Teid

Re: [Flashcoders] Disable Row in ListBox Component

2006-09-20 Thread Michael Stuhr
[EMAIL PROTECTED] schrieb: Hello All --- Is it possible to disable a row or number of (specific) rows in a ListBox without disabling the entire ListBox? i think you have to do this manually. you either create a cellrenderer for your list and handle it this way (look in the help for cellRende

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Bbt Lists
Gustavo Teider - Adobe Flash Developer wrote: use setScrollTarget scrollbar.setScrollTarget(your_textfield); is this ? But how do you tell if the data is actually done loading? I mean for example, i have a field that loads a jpg in, and since the jpg takes a little longer, the scroll bar

[Flashcoders] OT: Nodebox

2006-09-20 Thread bitstreams
Hi Read a recent post on Brendan Dawes site about a python based graphics tool, similar to Processing, called Nodebox. Has anyone used it? How does it compare with processing? Jim Bachalo [e] jbach at bitstream.ca [c] 416.668.0034 [w] www.bitstream.ca -

Re: [Flashcoders] Associate clip with class

2006-09-20 Thread Francis Turmel
If this can be useful to anyone, I modified Danny's class to fit my needs and used it on several projects so far. Works like a charm. class ca.nectere.utils.ClassUtils{ //create a movieClip and associate a class with it static public function CreateWithClass( classRef:Function, target:Mov

[Flashcoders] Disable Row in ListBox Component

2006-09-20 Thread azsl1326-email
Hello All --- Is it possible to disable a row or number of (specific) rows in a ListBox without disabling the entire ListBox? Thanks for any and all replies. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archi

Re: [Flashcoders] Hiding MD5 shared secret

2006-09-20 Thread Marcelo de Moraes Serpa
I think SWF Encrypt could do the job in this case. Manually, you could keep the "shared secret" in an ecnrypted form and then decrypt it at runtime when needed. Or it could be loaded from a server... just some thoughts. On 9/20/06, Toon Van de Putte <[EMAIL PROTECTED]> wrote: Hi, I'm building

Re: [Flashcoders] Associate clip with class

2006-09-20 Thread Adam Pasztory
I'm not a big fan of using Object.registerClass(). I find it creates a dependency between code and art assets that can be problematic. If your MovieClip is changed, your won't be able to instantiate anymore. Another problem with registerClass() is that it makes it difficult to change the source

[Flashcoders] Hiding MD5 shared secret

2006-09-20 Thread Toon Van de Putte
Hi, I'm building a Flash game that'll store a player's score in a database. To make sure the posts are coming from the swf, we're using MD5 to hash some (variable) player data together with a shared secret. This works fine, until someone downloads and decompiles the swf, and finds the shared secr

Re: [Flashcoders] Find item in array

2006-09-20 Thread Tyler Wright
He's right, and declaring the variable i inside of the loop rather than before actually (weirdly) runs faster. I don't know what pcode it produces, but I know CPU doesn't care about pcode. I think the only way to test speed is timing the thing. It's all very interesting, but I doubt even 10 ms of

Re: [Flashcoders] Associate clip with class

2006-09-20 Thread slangeberg
Eka, Can you tell us what you're trying to accomplish with that DisplayFactory? Usage example? Scott On 9/20/06, eka <[EMAIL PROTECTED]> wrote: Hello :) with Vegas : http://osflash.org/vegas you can use the class DisplayFactory : http://svn1.cvsdude.com/osflash/vegas/AS2/trunk/src/vegas/u

RE: [Flashcoders] OT- subscribe to Flashcomm list

2006-09-20 Thread Wade Arnold
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [a /] Sent: Wednesday, September 20, 2006 8:01 AM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] OT- subscribe to Flashcomm list I'm glad to see I'm not the only one experiencing the failure of th

Re: [Flashcoders] 3rd party editor: FD

2006-09-20 Thread eric dolecki
Thank you :) Also, I found a plugin for the Firefox-like Find. Its not as elegant as SEPY's but it works. - e. On 9/20/06, André Goliath <[EMAIL PROTECTED]> wrote: Simply highlight it and hit F3 :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of eric

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Gustavo Teider - Adobe Flash Developer
dnk escreveu: Hi - I have had a few times where I need to call the redraw() function to recreate my scrollbars after the data is loaded But I obviously need to wait until the data is completed. The times I seem to have the issues is when loading something that takes a bit longer (IE an imag

Re: [Flashcoders] a question of geometry

2006-09-20 Thread Charles Parcell
It is a great book! Plus, we have the added benifit of having access to the man here on the list! Charles P. On 9/19/06, Andreas R <[EMAIL PROTECTED]> wrote: Whoa, thanks for pointing me to that book. Just ordered it :) sounds like exactly what i need. - A Charles Parcell wrote: > This is

RE: [Flashcoders] 3rd party editor: FD

2006-09-20 Thread André Goliath
Simply highlight it and hit F3 :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of eric dolecki Sent: Wednesday, September 20, 2006 3:19 PM To: Flashcoders mailing list Subject: [Flashcoders] 3rd party editor: FD I think I'll jump to FlashDevelop and was

[Flashcoders] 3rd party editor: FD

2006-09-20 Thread eric dolecki
I think I'll jump to FlashDevelop and was wondering how I can highlight a bit of code, and then search for matching code throughout my document - I am looking for that but haven't found it yet. Its something I do rather frequently. A Firefox-like quick search would be awesome too - can't find anyt

RE: [Flashcoders] OT- subscribe to Flashcomm list

2006-09-20 Thread [a /]
I'm glad to see I'm not the only one experiencing the failure of the FComm list [a/] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gadi Sent: 20 September 2006 09:28 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] OT- subscribe to Flashcomm

Re: [Flashcoders] >> ColorTransform

2006-09-20 Thread Nehal Gandhi
Try this --- import flash.geom.ColorTransform; import flash.geom.Transform; var colorTrans:ColorTransform = new ColorTransform(); var trans:Transform = new Transform(my_mc); var restoreTrans:ColorTransform = new ColorTransform(); blue_btn.onRelease = function() { colorTrans.r

[Flashcoders] AS3: List of dispatched events from any EventDispatcher in run-time

2006-09-20 Thread Tomas Lehuta
Hello ActionScripters, is it somehow possible in ActionScript 3.0 to retrieve the list of all events that any subclass of EventDispatcher dispatches? I need to add event listeners dynamically at run-time and would like to check if the event type is valid for given EventDispatcher. Thanks for com

Re: [Flashcoders] FLVPlayer and addASCuePoint

2006-09-20 Thread Muzak
Dispatch a 'cuePoint' event when a seek occurs. Also listen for the 'ready' event, and add cuePoints in the event handler. import mx.utils.Delegate; // function buttonReleaseHandler() { trace("Application ::: buttonReleaseHandler"); var cp:Object = _player.findCuePoint("cuePt8"); // create prop

[Flashcoders] >> ColorTransform

2006-09-20 Thread Laurent CUCHET
There is an mc with mutltiple colors I apply color change but I dont know how to restore original state Have you got an Idea please import flash.geom.ColorTransform; import flash.geom.Transform; var colorTrans:ColorTransform = new ColorTransform(); var trans:Transform = new Transform(my_mc); tr

Re: [Flashcoders] Using a swf as an animated texture in direct X

2006-09-20 Thread Ian Thomas
Hi Mike, Off the top of my head, I don't think you can do it directly. However, presumably you could render the Flash movie using the ActiveX control, grab the rendered frame as an image, and feed that in to DirectX on every update. How exactly to render from the ActiveX control to an off-scr

[Flashcoders] Using a swf as an animated texture in direct X

2006-09-20 Thread Mike Mountain
Anyone know if it's possible to use an animated swf as a texture for a directX object? Cheers M ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] OT- subscribe to Flashcomm list

2006-09-20 Thread Gadi
Hi coders, sorry for the OT. FlashComm subscription page seem to be down, any other way I can subscribe? Best regards, gadi ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figle