Re: [Flashcoders]

2010-05-06 Thread poste9
I found the problem When I use writeUTFBytes something transform my string and send the data wrong... if I use writeUTF same thing... I tryied writeMultiByte but the string goes to 2 bytes... but i dont know what charset use I really need this, can some one help me? -- Rafael Lúcio http:

[Flashcoders]

2010-05-06 Thread poste9
static public function hex_to_ascii(sText:String):String { var thisHexChar:String; var retString:String = ""; for (var i:int =0; i < sText.length/2; i++) { thisHexChar= sText.charAt(i*2).toString() + sText.charAt((i*2)+1).toString()

[Flashcoders] Flex + Crystal Reports

2010-03-16 Thread poste9
Some one has experiencie with flex + crystal reports to give me some links or tutorials about how to implement this feature on my projects? Ty! -- Rafael Lúcio http://www.hangarnet.com.br ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com h

Re: [Flashcoders] My rights - site not paid for.

2008-12-08 Thread poste9
give ftp information to some brazilian where there isnt internet's law. its an option too. 2008/12/8 Eamonn Faherty <[EMAIL PROTECTED]> > This is a grey area. Did you draw up a contract when you started the > job? Deleting the live site could be deemed as an infringement of the > computer misus

Re: [Flashcoders] Flash Remoting with ...

2008-12-08 Thread poste9
http://framework.zend.com/download/amf http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,4820/Itemid,35/ http://drupal.org/project/amfphp 2008/12/8 SJF <[EMAIL PROTECTED]> > Ahoy hoy, > > In regards to developing *Flash sites/apps* that hook into a back end using > *

Re: [Flashcoders] online .swf generator

2008-11-27 Thread poste9
openslaszlo r0x 2008/11/27 mike cann <[EMAIL PROTECTED]> > You can render the output client side to a BitmapData object then use a > compression lib in AS3 to convert it to GIF or PNG or something then upload > that image to the server and avoid the whole SWF part? >

[Flashcoders] synchronous app

2008-11-21 Thread poste9
someone discovered some way to make synchronous app? something like that: foo = doSomeHttpRequest(); and the response from http request is attribued to foo var -- = Grupo Comunidade de Comunicação Rafael Lúcio 29809.099333, fazendo do

Re: [Flashcoders] Accessing text between SWFs

2008-10-15 Thread poste9
you can do something like that: ldr1.contentLoaderInfo.addEventListener(Event.COMPLETE,completeHandler); public function completeHandler(event:Event) { MovieClip(event.currentTarget)._parent = this; } and access each prop of "parent" swf for example: trace(_parent.ldr1); 2008/10/16 Alan Neilsen

Re: [Flashcoders] Access MainTimeline reference from within a component

2008-08-26 Thread poste9
have u tried this.root ? 2008/8/27 Helmut Granda <[EMAIL PROTECTED]> > Is it possible to access the MainTimeline from within a component? So far I > havent been able to access it trying different methods. Most times I get > the > same result: > trace(parent); > trace(root); > trace(this.parent);