Re: Re: [Flashcoders] Mtasc Delegate

2006-08-05 Thread Hans Wichman
Hi, are you compiling in mtasc with the -mx flag? If so, the delegate class will not be compiled into your swf and it will not work. When I work with Mtasc (through FlashDevelop) i find it the easiest to use an injection swf, but i dont know if that is an option for you. If so, create an swf in

Re: [Flashcoders] Security Violation with FLV loading using NetConnection

2006-08-05 Thread Vishal Kapur
Cedric, I ran into this issue several months back and after discussions with Macromedia development it turns out this is a bug in the flash player. The first thing to understand is that when one SWF is loaded into another, all the 'relative URL's in the remote swf (in your case B.swf) will be

[Flashcoders] using ruby to talk to server

2006-08-05 Thread Doug Tangren
I am new to using the xmlsocket class. Is it possible to use ruby and xml returned from an rxml builder template to get data from a server and pull it into flash. I am testing with rss structured xml that is generated within ruby by going to localhost:3000/search/feed. I want to pull

Re: [Flashcoders] tweening multiple properties simultaneously -- SOLVED

2006-08-05 Thread Matthew Ganz
hi jason. thanks -- i like having a separate class for my animations. it didn't solve my problem but i figured out what was happening and that's the way i was calculating the displacement (how i'm trying to move the movie clip to the center of the screen): *old way* var nX:Number =

Re: [Flashcoders] amfphp, identify each calling

2006-08-05 Thread Martin Wood
as far as i know its not possible with any built-in mechanisms, you would have to code something yourself.. where and how depends on what you really need to achieve.. martin. Martin Weiser wrote: Hello, is it possible to mark the calling by some identifier, number or string, so that

Re: [Flashcoders] amfphp, identify each calling

2006-08-05 Thread Martin Wood
[EMAIL PROTECTED] wrote: Yes, I think this library is what you're looking for... http://www.5etdemi.com/blog/archives/2006/03/cinqetdemiremoting-a-tiny-but-useful-remoting-library/ steve nice..id never noticed that... very useful martin

Re: [Flashcoders] amfphp, identify each calling

2006-08-05 Thread Martin Weiser
Thanks, i eventually sachieved that by modifing relayresponder, each call is based on service.method() and its responder, so new RelayResponder2 got every time unique creation here is my new simple relayResponder2 (just added static __num, copyed to each insrance as unique __id:

Re: Re: [Flashcoders] Mtasc Delegate

2006-08-05 Thread jcarlos
yes I was compiling with -mx flag ... and I use an injection swf .. I´ll give it a try thanks João Carlos - Original Message - From: Hans Wichman [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Saturday, August 05, 2006 3:20 AM Subject: Re:

Re: [Flashcoders] Possible Challenge: AS 3.0 Compiler :)

2006-08-05 Thread Scott Hyndman
https://www.adobe.com/cfusion/tdrc/index.cfm?product=flex The Flex compiler is free. Scott On 02/08/06, Keith Salisbury [EMAIL PROTECTED] wrote: Why on earth would you want to? On 8/2/06, John Giotta [EMAIL PROTECTED] wrote: It maybe too soon for anyone to have a full grasp on AMF or SWF

Re: [Flashcoders] LoadVars - sending an array

2006-08-05 Thread ben farrell
I believe it'll always come in as a string - but you can use the split keyword quite easily. I pick a separator character that won't appear in my array like the pipes myString =val1|val2|val3|val4|val5 Once you load the string... myArray = myString.split('|'); So then myArray will an

Re: [Flashcoders] LoadVars - sending an array

2006-08-05 Thread eka
Hello :) you can use JSON to send and receive an Array (with text format and LoadVars) Use JSON to format your string, serialize or deserialize your datas : http://www.json.org/ You can use my JSON version in Vegas :

Re: [Flashcoders] Invalid gateway URL

2006-08-05 Thread John VanHorn
get ServiceCapture: http://kevinlangdon.com/serviceCapture/ On 8/2/06, Wade Arnold [EMAIL PROTECTED] wrote: I was wondering if there is a way to capture the error that happens when you do not have a proper gateway URL for flash remoting. Flash just traces out that it can not open the url. Is

Re: [Flashcoders] FileReference.upload onComplete event fails on OSX

2006-08-05 Thread John VanHorn
this has been discussed before. http://www.abdulqabiz.com/blog/archives/flash_and_actionscript/workaround_file_1.php On 8/3/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: hi I have a flash 8 movie that upload jpegs to a server side script. When hosted on an NT server, with a php script

Re: [Flashcoders] grab a bitmap region?

2006-08-05 Thread jcarlos
that was my mistake ... to Export for ActionScript the bitmap itself not a bitmap converted to Mc ... thanks - Original Message - From: Charles Parcell [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Saturday, August 05, 2006 12:20 AM

[Flashcoders] Class Silent

2006-08-05 Thread CK
Hi, The following class I've coded fails to fade the MC on stage. Could someone explain why the code fails? //Class class FadeAlpha extends MovieClip { private var alpha:Number = this._alpha; private var visible:Boolean = this._visible; public var alphaRate:Number;

RE: [Flashcoders] Class Silent

2006-08-05 Thread Paul Venton
Well for starters, your fadeObj method defines a parameter which has the same name as your public variable. Also, it appears that your onEnterFrame contains a reference to mc that doesn't exist in its scope; perhaps using a Delegate helper would solve that, or simply change it to this since the

Re: [Flashcoders] Possible Challenge: AS 3.0 Compiler :)

2006-08-05 Thread David Rorex
On 8/5/06, Scott Hyndman [EMAIL PROTECTED] wrote: https://www.adobe.com/cfusion/tdrc/index.cfm?product=flex The Flex compiler is free. Scott Can flex compiler run inside the Flash 9 plugin? I didn't think so... On 02/08/06, Keith Salisbury [EMAIL PROTECTED] wrote: Why on earth would you

Re: [Flashcoders] grabbing screen caps in FL8

2006-08-05 Thread David Rorex
It's possible, there are many examples, try searching. The only downside, is anything over maybe 300x300 is going to take a lot of processing time, and generate data which is several hundred KBs in order to upload. (even with compression) -David R On 8/4/06, keitai guy [EMAIL PROTECTED] wrote:

[Flashcoders] Re: how to hide your AS 2.0 from flash leech software

2006-08-05 Thread SWF Coder
You can protect your AS code from decompilers by using an obfuscator. Anyone know of any for use on a Mac? David My friend got an alpha version of SecureSWF for Mac, contact kindisoft and maybe they will send you a copy. SWF_Coder __ Do You

Re: [Flashcoders] Re: how to hide your AS 2.0 from flash leech software

2006-08-05 Thread David Rorex
I'm always suspicious when a person's first post to a mailing list is in promoting a commercial product. Maybe I'm just too paranoid, who knows. On 8/5/06, SWF Coder [EMAIL PROTECTED] wrote: You can protect your AS code from decompilers by using an obfuscator. Anyone know of any for use on

Re: [Flashcoders] Class Silent

2006-08-05 Thread CK
Hi, Would you say this is helping to resolve the problem: [code] class FadeAlpha extends MovieClip { private var alpha:Number = this._alpha; private var visible:Boolean = this._visible; public var alphaRate:Number; public var target:MovieClip;

Re: [Flashcoders] grabbing screen caps in FL8

2006-08-05 Thread jcarlos
Well In the reference manual there is this example for the very start in It draw 2 rectangle as BitmapDat and then copy from one to another . If you suppose that one was the result of client actions you could copy part of it but if you mean to get some file/image at client side,

Re: [Flashcoders] Re: how to hide your AS 2.0 from flash leech software

2006-08-05 Thread Dave Wood
Hi David I'm always suspicious when a person's first post to a mailing list is in promoting a commercial product. Maybe I'm just too paranoid, who knows. I'm also a little suspicious of people using nom-de-plumes, but I got an answer to my question. Care to suggest any alternatives?

[Flashcoders] Multiple pngs

2006-08-05 Thread Howard Nager
Hey there - I am working on a project which requires that I load five 600x500 png layers inorder to make up a single frame of a 360 spin of a product. There are 24 total frames. My approach has been to load the current visible frame first then sequentially the rest of the frames until

Re: [Flashcoders] Re: how to hide your AS 2.0 from flash leech software

2006-08-05 Thread Anthony Lee
nom-de-plumes noms-de-plume t ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe