Re: [Flashcoders] print function in AS2

2008-02-15 Thread Gabriel Laet
/flashcoders -- ~Gabriel Laet ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] How to obtain html attributes from instanced movieclip

2007-05-30 Thread Gabriel
Hello list, I'm loading a HTML file into a textarea. I see it and everything works just fine. I need to do something like this: img src='imgViewer' id='testmc' *file='miImageFile.jpg'*/ when mi imgViewer class is instanced I get a trace in the constructor, so the class is well instanced.

[Flashcoders] amf-php, AS2, mysql, and multilanguage website

2006-07-15 Thread Gabriel
Hi all, can someone put a step by step guide about what are the correct steps to have a front(in flash) that connects to a MySql with AMFPHP, so this front would be multilanguage, meaning english, spanish, german, russian and , maybe, a lot (occidental) more... thanks to all GaB

Re: [Flashcoders] euro symbol fight

2006-07-07 Thread Gabriel
I agree, but the question is how? Ron Wheeler wrote: If you want it to work It is probably easier to do every single one than just some. Ron Gabriel wrote: I access it with AMFPHP, are you saying I have to modify every single object returned from AMF? thanks Ron Wheeler wrote: Who

Re: [Flashcoders] euro symbol fight

2006-07-06 Thread Gabriel
I access it with AMFPHP, are you saying I have to modify every single object returned from AMF? thanks Ron Wheeler wrote: Who controls my_flash_service.php. That is the spot where the escaping should be done. Ron Gabriel wrote: Is a good idea, but I cannot do that because, most

Re: [Flashcoders] euro symbol fight

2006-07-05 Thread Gabriel
'escaping' the text before you send to amfphp, and 'unescaping' the text after you recieve it back? escaping = turning all non-standard characters into things like %12%34%56 unescaping = reverse of above process -David R On 7/4/06, Gabriel [EMAIL PROTECTED] wrote: thanks Serge yes, it has

Re: [Flashcoders] euro symbol fight

2006-07-04 Thread Gabriel
is %E2%82%AC So you could use something like: my_txt.htmlText = unescape(%E2%82%AC); Greetz, Bernard -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Gabriel Verzonden: dinsdag 4 juli 2006 9:10 Aan: Flashcoders mailing list Onderwerp: [Flashcoders

Re: [Flashcoders] euro symbol fight

2006-07-04 Thread Gabriel
or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- Gabriel Belvedere www.antares.es http://www.antares.es

Re: [Flashcoders] Printing without print dialog box in an exe

2006-05-29 Thread Gabriel
Rishi, you can do that with SWF Studio (Northcode http://www.northcode.com/). It's really easy. GaB rishi wrote: Hi I need to give a print command from flash without opening the print dialog box. I have my application embedded in VB. I want to know the proposed solutions. I know this

Re: [Flashcoders] converting/printing swf to eps

2006-04-10 Thread Gabriel
it gets easier. Otherwise you need to send data to the server and let the server create a new eps. Where do the eps files get used? ROn Gabriel wrote: I've already said what I need to do, pick a premade draw, and allow the user to change the blanks to color, like in a paint app for kids

Re: [Flashcoders] converting/printing swf to eps

2006-04-09 Thread Gabriel
or is the color changed once and requested from a server. It might save a lot of time if you actually described what you want to do in enough detail so we can get to the right solution in the next 4 or 5 weeks. Ron Gabriel wrote: hi Ron, I already have it done this way. A postscript printer

Re: [Flashcoders] converting/printing swf to eps

2006-04-07 Thread Gabriel
to create the file? If you download the Adobe generic PostScript driver, set the output to file and to be eps rather than PostScript and you should be able to print your Flash to eps. Ron Gabriel wrote: Ok, I'll try to put it simple. I have researched about the eps, I opened it, changed

Re: [Flashcoders] converting/printing swf to eps

2006-04-06 Thread Gabriel
must not have had a life then, I guess - the kids were small and we were to tired to go out. Ron Gabriel wrote: Ok, sounds good, but I don't see clearly how to convert my already drawn eps/whatever into commands so can rewrite a svg an then save it. I can make instructions for writing the svg

Re: [Flashcoders] converting/printing swf to eps

2006-04-05 Thread Gabriel
,move, draw...) Check the Batik site and open an SVG file in a text editor to see what is inside. Ron Gabriel wrote: What I need is to import the drawing, that's why I choose eps (but the only real need is that it must be vectorial), Not really to export the image created by the user

Re: [Flashcoders] converting/printing swf to eps

2006-04-03 Thread Gabriel
Hey Ron...what I want to do is generate content in client side flash, pass it to the server (php or whatever) print this content to an eps, and return the eps to the client. thanks Ron Wheeler wrote: What exactly do you want to do? Ron Gabriel wrote: Hi everybody... anybody knows

Re: [Flashcoders] converting/printing swf to eps

2006-04-03 Thread Gabriel
to some of them? thanks GaB. David Rorex wrote: How are the swf's generated in the first place? Instead of doing something-swf-eps you can do: something-swf something-eps -David R On 3/30/06, Gabriel [EMAIL PROTECTED] wrote: I save a swf to the server, and I need to retrieve an eps from

Re: [Flashcoders] converting/printing swf to eps

2006-04-03 Thread Gabriel
you work with SVG drawings. What do you want to do with the output- what is magical about EPS for you? Ron Gabriel wrote: I generate the content of the swf on the client app, let's say a free drawing, then I want to print it to the *server printer* (?). The point is...I need an eps from

Re: [Flashcoders] converting/printing swf to eps

2006-03-31 Thread Gabriel
I save a swf to the server, and I need to retrieve an eps from it...any idea? Ron Wheeler wrote: What exactly do you want to do? Ron Gabriel wrote: Hi everybody... anybody knows a solution to convert/print from the server side a swf to eps?. cheers, GaB

[Flashcoders] converting/printing swf to eps

2006-03-30 Thread Gabriel
Hi everybody... anybody knows a solution to convert/print from the server side a swf to eps?. cheers, GaB ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] wait or sleep

2006-03-21 Thread Gabriel Belvedere
you don't need a wait, the way you are doing its correct, except for the order mclip.onLoad() { continue(); } mclip.loadMovie(); if you end your code right after the loadmovie it will continue on the onLoad. cheers GaB. ___

Re: [Flashcoders] Encrypting data

2006-03-14 Thread Gabriel Belvedere
Are you trying to do this with getURL?? this is what do you mean or I'm missing something? I did it for my game at inbyted.com and I did it with amfphp and in the live HTTP headers you just see the connection to the gateway. I think it's pretty transparent... regards... GaB www.inbyted.com On

Re: [Flashcoders] standalone+amfphp doesn't work

2006-01-17 Thread Gabriel
, this could be more accurate, but what is the solution what do you think? Gabriel Cosmin Cimpoi wrote: If you have flash player 8 then check this out about local swf security: http://cosmincimpoi.blogspot.com/2005/12/security-changes-in-flash-player-8.html You'll probably need to export

Re: [Flashcoders] standalone+amfphp doesn't work

2006-01-08 Thread Gabriel
nope...windows JesterXL wrote: Is it a Mac projector? - Original Message - From: Gabriel [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, January 05, 2006 2:37 AM Subject: Re: [Flashcoders] standalone+amfphp doesn't work What do you

[Flashcoders] standalone+amfphp doesn't work

2006-01-04 Thread Gabriel
Hi all, I have a standalone movie connecting to amfphp. It doesn't connect or have response from it, but it does if I open the swf with the browser... any idea? thanks a lot... Gab ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] standalone+amfphp doesn't work

2006-01-04 Thread Gabriel
17:34:54 +0100 Gabriel [EMAIL PROTECTED] wrote: Hi all, I have a standalone movie connecting to amfphp. It doesn't connect or have response from it, but it does if I open the swf with the browser... any idea? thanks a lot... Gab ___ Flashcoders