RE: [Flashcoders] certificates

2005-11-03 Thread Fruber Malcome
Without putting too much thought into it - sounds like you could build a component that executes a java command and then stops, and the java shell that received the command would make a call back into the flash component for the result. Same theory applies to C#.NET. So doing a google on

RE: [Flashcoders] Xml editor

2005-11-22 Thread Fruber Malcome
SciTE for both flash and XML, othertimes I use Oxygen. Thanks - fruber -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Matte Sent: Tuesday, November 22, 2005 12:46 PM To: Flashcoders mailing list Subject: [Flashcoders] Xml editor What software

[Flashcoders] Bitmap.draw versus MovieClipLoader

2007-07-06 Thread Fruber Malcome
I have a few copies of a downloaded image in memory to support various drag functions and would like to save some bandwidth. Obviously duplicateMovieClip won't work because it doesn't work on dynamically created clips that use LoadMovie. So I was thinking that I could use the new MovieClipLoader

[Flashcoders] Sandbox Security Violation - using Bitmap.draw

2007-07-06 Thread Fruber Malcome
I'm having some real problems here and can't figure out the solution, maybe there's been so many solutions that google can't seem to locate the proper one. If anyone can help, please let me know. I dynamically load images into movieclips (these images are all over the web). I use

RE: [Flashcoders] Bitmap.draw versus MovieClipLoader

2007-07-06 Thread Fruber Malcome
Perfect it told me exactly what I needed, but I'm not sure I understand why Macromedia (not adobe in this case) went in that direction - are they trying to protect pixel access for third party images? So I can load any image I want from anywhere, but the second I need to access the pixels (e.g.

RE: [Flashcoders] Bitmap.draw versus MovieClipLoader

2007-07-06 Thread Fruber Malcome
Is there a way to proxy image data? I know for XML, it's a simple matter of createing a Microsoft.XMLHTTP object (in ASP/VBScript) and redirecting the information into the response object. Anyone know the object for an image and/or other HTML page? (e.g. Microsoft.HTML?? ) thanks - Fruber

RE: [Flashcoders] SWF Working differently from SWF Player versus IE.

2007-07-06 Thread Fruber Malcome
different domains (subdomains) are blocked from reading each other's pixel data. Sincerely Mark R. Jonkman -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fruber Malcome Sent: Friday, July 06, 2007 1:06 AM To: flashcoders@chattyfig.figleaf.com Subject

RE: [Flashcoders] Bitmap.draw versus MovieClipLoader

2007-07-06 Thread Fruber Malcome
I was using something like this for XML, but this gave me a really nice idea. I did find that Adobe had a much simpler version of the php file (two lines of code), that performed the same task. I decided to write an aspx page to perform the same task and to handle any type of page information.

[Flashcoders] cursor question

2007-07-07 Thread Fruber Malcome
I'm not sure if anyone else responded to this, but I had a similar problem and I thought the only workaround was setting the mouse picture for every element that handled rollover etc. (since if you set it for the parent, it removes all the mouse functions for it's children) . The easy way for me

RE: [Flashcoders] XML loading and parsing problem

2007-07-07 Thread Fruber Malcome
Message - From: Fruber Malcome [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Saturday, July 07, 2007 11:28 PM Subject: [Flashcoders] XML loading and parsing problem The primary thing to remember is scope. The onLoad function is running within the xml's scope. The fun function

RE: [Flashcoders] XML loading and parsing problem

2007-07-07 Thread Fruber Malcome
PROTECTED]; flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] XML loading and parsing problem coughmx.utils.Delegate/cough - Original Message - From: Fruber Malcome [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Saturday, July 07, 2007 11:28 PM Subject: [Flashcoders

RE: [Flashcoders] Cross Domain Policy Files

2007-07-08 Thread Fruber Malcome
This doesn't look like a crossdomain problem, specifically because you didn't see the sandbox security warning. Is this url testable? (e.g. should we click it and get something?) It may have something to-do with the https, how are you setting up the call to this - do you have the snipptet of code

RE: [Flashcoders] Actionscript Optimization!

2007-07-15 Thread Fruber Malcome
I think in both cases the information you were reading was taling about compile-optimization, not runtime. Since the swf is mostly compiled during load - you may see a slight performance difference with a few million lines of code because the file would be bigger - take longer to download / load