[Flashcoders] Dynamically creating swf

2006-10-06 Thread Abhijit Malpani
Hi, I want to create a swf file through the c# .net application. It's a desktop application. The c# application file will capture some images and audio from user's machine. The info about audio and images will be saved somewhere in an xml. I want to create a swf out of all this data created

RE: [Flashcoders] Dynamically creating swf

2006-10-06 Thread Pranav Negandhi
I've never created a .swf dynamically, but I suppose it's a fairly common task. A quick search on Google threw up the following - http://osflash.org/doku.php?id=sharpflash http://www.swfkit.com/products.html#activex http://www.globfx.com/products/neoswiff/ (also check

Re: [Flashcoders] Hough transform

2006-10-06 Thread Martin Wood
I dont have a simple way to do it but I can point you to some teaching materials so you can learn how to do it. http://www.cogs.susx.ac.uk/users/davidy/teachvision/vision0.html There are some good descriptions of implementing the hough transform and other techniques for finding shapes like

Re: [Flashcoders] Hough transform

2006-10-06 Thread Matthias Dittgen
What are you trying to do, dan? 2006/10/6, Martin Wood [EMAIL PROTECTED]: I dont have a simple way to do it but I can point you to some teaching materials so you can learn how to do it. http://www.cogs.susx.ac.uk/users/davidy/teachvision/vision0.html There are some good descriptions of

Re: [Flashcoders] flv not playing in IE with Flash 9

2006-10-06 Thread Hans Wichman
Hi, don't know if it helps, but for example ._url might yield something different in flash 9 then in flash 8. Which means the resulting path in 9 is different from that in 8, which might in turn cause content to break. Not saying that was the problem here, but it might well be. greetz JC On

[Flashcoders] ... client server flash dev

2006-10-06 Thread Guy Parton
hi everyone, last night i received an email reviewing a very well designed site (visually) ... and then i came to the following line in the article : SQL statements are sent directly from in flash via PHP to access records from the database... now i have not developed a flash application in

Re: [Flashcoders] ... client server flash dev

2006-10-06 Thread Seb L
It's not something that I personally would do, but then I generally avoid programming the back-end systems at all these days... :-) But yeah, SQL in the Flash seems wrong! Seb On 06/10/06, Guy Parton [EMAIL PROTECTED] wrote: hi everyone, last night i received an email reviewing a very well

Re: [Flashcoders] ... client server flash dev

2006-10-06 Thread Sven Dens
Guy, Probably they're not actually sending the SQL from within the .swf, but are making a call in Flash through AMFPHP. It's in the PHP service on the server that the actual SQL-request happens. AMFPHP then returns a binary VO to Flash for you to use. Check out http://www.amfphp.org/ if you

RE: [Flashcoders] flv not playing in IE with Flash 9

2006-10-06 Thread Mike Mountain
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_04157 Does this help? M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ammon Lauritzen Sent: 06 October 2006 00:01 To: Flashcoders mailing list Subject: Re: [Flashcoders] flv not

Re: [Flashcoders] geometry // oval around text

2006-10-06 Thread Matthias Dittgen
Hello Andreas, your CatmullRomSpline is really impressive, but it draws not a real ellipse. If it would, this code should produce a circle, right? var points:Array = new Array( {x: 0, y: 0}, {x: 0, y: 50}, {x:50, y: 50}, {x:50, y: 0}, {x: 0, y: 0}); var

Re: [Flashcoders] flv not playing in IE with Flash 9

2006-10-06 Thread Jim Berkey
I notice that you are using: so.addParam(wmode, transparent); Do you need that? I've heard that the wmode paramater can do strange things to some browsers? *** REPLY SEPARATOR *** On 10/5/2006 at 1:49 PM Ammon Lauritzen wrote: Ok, simple issue really, and I seem to have found

[Flashcoders] Movieclip event hook back to class instance?

2006-10-06 Thread Daniel Forslund|Lists
Hi all! I have a (hopefully not too ignorant) question relating to movieclips created on the fly. Basically, I have a preloader class that is generic and reusable. It's called from whatever object that does dynamic loading of content and then in turn invokes a movieclip from a passed

[Flashcoders] Dynamically creating swf

2006-10-06 Thread Abhijit Malpani
Thanks Pranav, creating runtime swf may be a common task, but I am looking something more challenging part of swf creation i.e. : embedding runtime audio and images to create a synched movie out of it, for that I want to write my custom code and don't want to use any products on the shelf. :-)

RE: [Flashcoders] Dynamically creating swf

2006-10-06 Thread Pranav Negandhi
I tried to download the SDK from Adobe's site, but it just gave me a form to fill up. I was told I'd be emailed at a later date about the licensing details. The best I can find as of now is Ming, available at http://www.osflash.org/ming. It's a C library, but maybe you could drop into it from

Re: [Flashcoders] [JOB] Flash developer, Cambridge, UK

2006-10-06 Thread Zárate
Hi guys, We keep searching someone for this role, maybe because I don't know my own email address: juan.delgado * tribalgroup.co.uk ¬¬ On 10/4/06, Zárate [EMAIL PROTECTED] wrote: Ummm... I think we're open to all options but my feeling is that on-site freelancers would be better. Anyway, if

[Flashcoders] Error check for parseXML()

2006-10-06 Thread Mendelsohn, Michael
Hi list... According to the help docs, public parseXML(value:String) : Void doesn't return an integer or anything to indicate successful parsing of the xml. How can I be certain that I've passed in some error free xml and it was able to parse? Thanks, - Michael M.

[Flashcoders] OT: sold laptop, need to release Studio 8?

2006-10-06 Thread Count Schemula
I just sold my laptop. I can't really find how to release my serial number for Studio 8 before I reformat the drive. Does this still have to be done? I'm buying another laptop, so, I want intall on that with no hassles. Thanks! -- count_schemula a

Re: [Flashcoders] Error check for parseXML()

2006-10-06 Thread Gustavo Teider - Adobe Flash Developer
Mendelsohn, Michael escreveu: Hi list... According to the help docs, public parseXML(value:String) : Void I think that when did you use :Void , the function doesn´t return any value ... try it public parseXML(value:String):String { } -- Gustavo Teider ( gugateider )

Re: [Flashcoders] Error check for parseXML()

2006-10-06 Thread Michael Stuhr
Mendelsohn, Michael schrieb: Hi list... According to the help docs, public parseXML(value:String) : Void doesn't return an integer or anything to indicate successful parsing of the xml. How can I be certain that I've passed in some error free xml and it was able to parse? the XML-Object

RE: [Flashcoders] ... client server flash dev

2006-10-06 Thread Mark Lapasa
Wow, could you give me the URL of the site so I can make a flash client that will drop all their tables in the database? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Sven Dens Sent: Friday, October 06, 2006 6:23 AM To: Flashcoders mailing list Subject:

Re: [Flashcoders] flv not playing in IE with Flash 9

2006-10-06 Thread Ammon Lauritzen
On 10/6/06, Hans Wichman [EMAIL PROTECTED] wrote: don't know if it helps, but for example ._url might yield something different in flash 9 then in flash 8. Which means the resulting path in 9 is different from that in 8, which might in turn cause content to break. Not saying that was the problem

Re: [Flashcoders] flv not playing in IE with Flash 9

2006-10-06 Thread Ammon Lauritzen
On 10/6/06, Mike Mountain [EMAIL PROTECTED] wrote: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_04157 Does this help? That might have helped, but the problem wasn't with loading the SWF. It was with the SWF in turn loading the FLV. We had the following structure: something.html

Re: [Flashcoders] flv not playing in IE with Flash 9

2006-10-06 Thread Ammon Lauritzen
On 10/6/06, Jim Berkey [EMAIL PROTECTED] wrote: I notice that you are using: so.addParam(wmode, transparent); Do you need that? I've heard that the wmode paramater can do strange things to some browsers? Yeah, we did need the transparent because of the skin we were using for our player. We

Re: [Flashcoders] Error check for parseXML()

2006-10-06 Thread Anggie Bratadinata
How about xmlobj.status ? If the xml is successfully loaded and parsed, you get 0 on the output panel. Otherwise, you get a negative number (-2 , ... -10). -2: A CDATA is not closed -3: The initial XML declaration is malformed -4: The DOCTYPE declaration is malformed -5: A comment has no closed

RE: [Flashcoders] Class Problem

2006-10-06 Thread Merrill, Jason
AS2 101. Try http://www.amazon.com/Essential-ActionScript-2-0-Colin- Moock/dp/0596006527/s r=8-1/qid=1160106358/ref=sr_1_1/104-8535662-7712736?ie=UTF8s=books Unfortunately the condescending attitudes have been pretty thick her on the list lately. Victor, pay no mind to the attitude, your

RE: [Flashcoders] Dynamically creating swf

2006-10-06 Thread Merrill, Jason
Create a generic .swf that reads media externally based on webservice or XML data. Have c# copy paste folders on the filesystem that contain the .swf, XML, media. Have c# update the XML to reflect the different .swf contents. Jason Merrill Bank of America Learning Organization

Re: [Flashcoders] Class Problem

2006-10-06 Thread Victor Gaudioso
Thanks Jason, I REALLY appreciate it. - Original Message - From: Merrill, Jason [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Friday, October 06, 2006 8:58 AM Subject: RE: [Flashcoders] Class Problem AS2 101. Try

RE: [Flashcoders] geometry // oval around text

2006-10-06 Thread Andreas Weber
Sorry, wasn't aware that you were looking for a real ellipse, I thought something nicely ovalish, kind-of-roundish would do :-) You'll find a bit more on CatmullRom here: http://www.mvps.org/directx/articles/catmull/ hth -- Andreas Weber -Original Message- From: [EMAIL

Re: [Flashcoders] Class Problem + Bad attitudes

2006-10-06 Thread slangeberg
Unfortunately the condescending attitudes have been pretty thick her on the list lately. I've noticed the same thing here and on a local Flash list. Not sure if it's because the programmers who're drawn to Flash tend to be tender young bas+ards, or is it just that programmers in general are

RE: [Flashcoders] Movieclip event hook back to class instance?

2006-10-06 Thread Alain Rousseau
Hi Dan, I think that what you'll have to do is create your own event and dispatch it using the EventDispatcher Class. First you'll need to initialize your outro mc with event dispatcher // in mc timeline's first frame import mx.events.EventDispatcher; var addEventListener:Function; var

Re: [Flashcoders] Movieclip event hook back to class instance?

2006-10-06 Thread slangeberg
My problem is finding a way for the preloader class instance to tell when the movieclip reaches a certain frame or frame label Actually, I prefer to set things up in an event-based model. I don't have the code in front of me, but if you look at the EventDispatcher class, you can have whatever

RE: [Flashcoders] Class Problem + Bad attitudes

2006-10-06 Thread Pete Miller
RTFM has been an obligatory response since the day we started using the Internet to ask questions. Its not just programmers. P. -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of slangeberg Sent: Friday, October 06, 2006 1:11 PM To:

RE: [Flashcoders] Error check for parseXML()

2006-10-06 Thread Mike Keesey
Use the XML.status field. var xml:XML = new XML(); xml.ignoreWhite = true; xml.parseXML(someTextVar); if (xml.status == 0) { trace(Success!); } else { trace(Error in XML! Code: + xml.status); } ― Mike Keesey -Original Message- From: [EMAIL PROTECTED]

[Flashcoders] Flash + Web Services problems

2006-10-06 Thread John Braunstein
Liam, Did you ever find out the problem? I’m having the same issue. Everything works locally, but not live. Thanks, John __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: [Flashcoders] centering printed content

2006-10-06 Thread Jim Gay
Does anyone have experience centering a PrintJob? I'm unable to manipulate the location of the printed object on the paper. On Oct 5, 2006, at 13:25, Jim Gay wrote: I'm trying to center my printJob content and I'm unable to do it on the printed page. Is there some kind of limitation on

[Flashcoders] ExternalInterface and FireFox

2006-10-06 Thread INK
Hi, List! This is totally crazy! Can anyone confirm that ExternalInterface is working in WIN 9,0,16,0 FP and Firefox/1.5.0.7 ? I am trying to execute an example from the manual. It's working OK in IE But nothing happens in FF. According to manual null will be returned if the call failed. I

Re: [Flashcoders] centering printed content

2006-10-06 Thread Dave Wood
Does anyone have experience centering a PrintJob? I'm unable to manipulate the location of the printed object on the paper. One option is to include a large page-sized rectangle behind the visible content and set it's _alpha to 0. Centre your visible content within this area. David

Re: [Flashcoders] ExternalInterface and FireFox

2006-10-06 Thread Gustavo Teider - Adobe Flash Developer
INK escreveu: Hi, List! This is totally crazy! Can anyone confirm that ExternalInterface is working in WIN 9,0,16,0 FP and Firefox/1.5.0.7 ? I am trying to execute an example from the manual. It's working OK in IE But nothing happens in FF. According to manual null will be returned if the

[Flashcoders] What's the role of Halo VScrollBar Assets' BtnUpArrow (was: Scrollpane thumb problem)

2006-10-06 Thread Mendelsohn, Michael
Hi list... I had a problem where the scrollbar component thumb was moving up too high over the up arrow. I figured it out, but I'm puzzled by something. In my Halo skins for VSCrollBarAssets, the BtnUpArrow was resized smaller, causing the problem. But, it seems to me that that this mc in the

[Flashcoders] BitmapData security (rendering problems)

2006-10-06 Thread Benjamin Dobler
Hi All, i have a strange problem with the BitmapData draw()-method. I have an application that loads swfs from another domain and draws them on Stage. I have set all security relevant things like System.allowDomain(). The images loads fine and the draw method works most of the time. The

Re: [Flashcoders] centering printed content

2006-10-06 Thread Jim Gay
Does anyone have experience centering a PrintJob? I'm unable to manipulate the location of the printed object on the paper. One option is to include a large page-sized rectangle behind the visible content and set it's _alpha to 0. Centre your visible content within this area. David

Re: [Flashcoders] geometry // oval around text

2006-10-06 Thread Matthias Dittgen
You don't need to excuse, Andreas! This way I found your really cool implementations of some very useful spline algorithm. I really like the LineGeneralization (http://www.motiondraw.com/md/as_samples/t/LineGeneralization/demo.html), that's awesome! I'll try Danny's suggestions after the weekend.

Re: [Flashcoders] BitmapData security (rendering problems)

2006-10-06 Thread slangeberg
Not sure if it's related, but does the foreign server have your file's domain in their crossdomain.xml file? http://www.crossdomainxml.org/ Scott On 10/6/06, Benjamin Dobler [EMAIL PROTECTED] wrote: Hi All, i have a strange problem with the BitmapData draw()-method. I have an application

AW: [Flashcoders] BitmapData security (rendering problems)

2006-10-06 Thread Benjamin Dobler
Yeah it has a allowDomain=*. The swf are loaded and BitmapData works but with the problems described so it should not be a security problem. But anyway thanks Benz -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] Im Auftrag von slangeberg

[Flashcoders] create and save flv's dynamically

2006-10-06 Thread Jamie S
Hi All, I've been interested in developing an online video editing tool similar to jumpcut.com, eyespot.com etc. I know how to upload video clips trough the flash client, convert them to flv's with ffmpeg and display them back in the client with cute thumbnails. But how do I let people combine

[Flashcoders] i want to get a wallop Invitation

2006-10-06 Thread 赵洪日
i hope to get a wallop Invitation,if anyone have,please send to me,thanks very much___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you

Re: [Flashcoders] OT: sold laptop, need to release Studio 8?

2006-10-06 Thread Ramses Moreno [cuatromedios]
Look at this page: http://www.adobe.com/products/activation/version2/ they say: What if I would like to move the software to a new computer? Simply uninstall your the software from your old computer and reinstall it on your new computer.I have never do this, but I imagine you should also be

Re: [Flashcoders] OT: sold laptop, need to release Studio 8?

2006-10-06 Thread 赵洪日
what meaning - Original Message - From: Ramses Moreno [cuatromedios] [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Saturday, October 07, 2006 11:25 AM Subject: Re: [Flashcoders] OT: sold laptop, need to release Studio 8? Look at this page: