Re: [Flashcoders] SWF wrapping Class

2005-11-07 Thread Liam Morley
I think you can use Object.registerClass in this case. The thing is, registerClass takes a string argument for the mc name, but not the class name (which would make it too easy for you). I'm not sure how to obtain a class prototype from a string, however- perhaps eval() will do that? I'm not sure.

[Flashcoders] sound fadeOut

2005-11-07 Thread MetaArt
In my movie, I have a jingle, that is loaded by this code: code:--- ---track = new Sound(); track.loadSound(everybody.mp3, true); track.setVolume(0); vol = 0; fade = setInterval(fadeIn, 100); function fadeIn() { vol += 1;

Re: [Flashcoders] sound fadeOut

2005-11-07 Thread Pascal FODOR
Hi, Here is a Sound prototype I often use. You can also easily set it as a function in a sound class: Sound.prototype.volumeTo=function(nTarget:Number,step:Number,post_func:Funct ion){ var a=nTarget - this.getVolume(); var v=this.getVolume(); var dir=a/Math.abs(a);

Re: [Flashcoders] sound fadeOut

2005-11-07 Thread [EMAIL PROTECTED]
If you want to keep things simple, and the volume fade doesn't need to be linear, couldn't you just run a soundUpdate function and keep track of the volume in a variable. something like this: var volume = 0; var destVolume = 100; setInterval(soundUpdate, 100); function soundUpdate() {

[Flashcoders] Newbie question: SHIFT+TAB

2005-11-07 Thread Neil Gibbons
Created a TextInput1 component which has an internal TextInput. We basically have some custon drawing functions to display it differently form the norm. For some reason, I can TAB forward through a small form with two of these TextInput1 boxes, but I'm unable to SHIFT+TAB backwards? Within the

Re: [Flashcoders] sound fadeOut

2005-11-07 Thread Eric E. Dolecki
I've found that linear adjustments prove to sound highly inaccurate - or strange. You'll notice no difference, and then the change will be quite abrupt. So be careful with these kinds of things - linear is probably not the best way to go. e.dolecki On Nov 7, 2005, at 5:21 AM, [EMAIL

Re: [Flashcoders] sound fadeOut

2005-11-07 Thread [EMAIL PROTECTED]
so then the code here would work since it's not linear. but i'm not sure what you mean by linear adjustments prove to sound highly inaccurate? in this case i don't think it matters anyway since it's just a small change of volume and he's probably not coding some online dj mixing software. or

[Flashcoders] Ajax and Flash

2005-11-07 Thread Weldon MacDonald
Where does Flash fit in with the Ajax paradigm? As a competitor, or as an integrated part. The answer seems to be both, but I'm interested in how working developers see it. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Mike Mountain
Prolly going to get shot down for this - but I don't see the point of using Flash and Ajax together - flash can do everything Ajax can and more, so if you're going to use flashthen 'use' flash. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [Flashcoders] Ajax and Flash

2005-11-07 Thread Andreas Rønning
Mike Mountain wrote: Prolly going to get shot down for this - but I don't see the point of using Flash and Ajax together - flash can do everything Ajax can and more, so if you're going to use flashthen 'use' flash. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Nick Weekes
I think a more interesting (albeit OT) comparison would be Flex v MS Avalon/Sparkle... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 07 November 2005 12:04 To: Flashcoders mailing list Subject: RE: [Flashcoders] Ajax and Flash

Re: [Flashcoders] Ajax and Flash

2005-11-07 Thread Andreas Rønning
Nick Weekes wrote: I think a more interesting (albeit OT) comparison would be Flex v MS Avalon/Sparkle... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 07 November 2005 12:04 To: Flashcoders mailing list Subject: RE:

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Nick Weekes
The Windows Presentation Foundation (the 'plug-in' for avalon) will be cross platform... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andreas Rønning Sent: 07 November 2005 12:18 To: Flashcoders mailing list Subject: Re: [Flashcoders] Ajax and Flash

Re: [Flashcoders] Newbie question: SHIFT+TAB

2005-11-07 Thread Thimon Sistermans [Us Media]
when debugging in flash... check (for win) control/disable keyboard shortcuts - Original Message - From: Neil Gibbons [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, November 07, 2005 11:52 AM Subject: [Flashcoders] Newbie question: SHIFT+TAB Created a

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Mike Mountain
Success won't be down to just ease of development or features, it will depend on backing from early adopters. Most sites that you'd think would benefit form an RIA (banking, shopping, auctions etc.) are still using fairly old (read reliable) set ups. They are more IA's than RIA's - sure we're

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Mike Mountain
Correction www.rac.co.uk Best mapping tool going -Original Message- From: Mike Mountain Sent: 07 November 2005 12:37 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Ajax and Flash Success won't be down to just ease of development or features, it will depend on

RE: [Flashcoders] Newbie question: SHIFT+TAB

2005-11-07 Thread Neil Gibbons
Trie that. No difference. The problem also appears in the browser. I've altered th onSetFocus as follows: this.onSetFocus = function(oldFocus) { trace(onSetFocus called, previous focus was: + oldFocus); if ((txtInput.enabled) (txtInput.editable)) {

Re: [Flashcoders] sound fadeOut

2005-11-07 Thread eric dolecki
I guess I'm saying that any audio fading up or down should probably not be done linearly ever - while mathematically accurate, to the human ear it doesn't sound right. You'll notice no change and then zm... a really quick fade down... when what you wanted was something even if you know what I

RE: [Flashcoders] POST question

2005-11-07 Thread Glenn J. Miller
Ricky, What type of problem are you experiencing? I've personally not had an issue w/ any LoadVars reference usage. Please submit to the list a more detailed 'problem' (read code snippet), and perhaps we can get things solved a bit quicker for ya... Hope this helps... -- Dok Skyymap Inc.

Re: [Flashcoders] sound fadeOut

2005-11-07 Thread eric dolecki
Basically yes :) Flash has no notion of decibels - there are probably formulas out there to try and approximate that logarithmic curve and apply it to your audio to get a more natural response. Its a interesting topic at least ;) e.dolecki On 11/7/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

RE: [Flashcoders] Newbie question: SHIFT+TAB

2005-11-07 Thread Neil Gibbons
Yes. I've used FocusManager.nextTabIndex() to set all tabIndexes, but there the following on screen, (in preferred tab order): 1. A search box at the top 2. Username field 3. Password field 4. A Login button 5. A Register button TAB SHIFT TAB works between the buttons, but only TAB( tabbing

Re: [Flashcoders] POST question

2005-11-07 Thread Ron Wheeler
Could you be any more vague? Ron [EMAIL PROTECTED] wrote: Has anyone run into issues with doing a LoadVars.send() using POST with IE 6.0 and Flash plug-in 7.0.19? I'm seeing a consistent problem that I think involves SP2 and user interface issues, but I'm trying to rule out plug-in quirks.

Re: [Flashcoders] Newbie question: SHIFT+TAB

2005-11-07 Thread Muzak
And what exactly is TextInput1? A custom class I suppose. Which class does it extend? For tabbing to work propertly with other v2 components, you don't have much choice other than extending UIComponent (or any of the v2 core classes). I've said it before, the FocusManager is not one of the

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Glenn J. Miller
First of all, sorry to all for the noise and bandwidth waste here, but I just couldn't resist... From an old M$ platform devs (15+ yrs - all manner of languages) perspective, ANYTHING that is 'cross-platform' from the Redmond crew is gonna turn out to be anything but. Their biggest talking point

RE: [Flashcoders] Newbie question: SHIFT+TAB

2005-11-07 Thread Neil Gibbons
TextInput1 extends UIComponent Neil N. Gibbons Senior Developer Amaze Ltd Tel: +44 (0)870 240 1700 E-Mail: [EMAIL PROTECTED] Web: http://www.amaze.com Amaze Kings Court Manor Farm Road Nr Runcorn Cheshire WA7 1HR This communication contains information

Re: [Flashcoders] Ajax and Flash

2005-11-07 Thread Marco Romeny
You mean map24.com (which powers rac.co.uk). On 11/7/05, Mike Mountain [EMAIL PROTECTED] wrote: Correction www.rac.co.uk Best mapping tool going -Original Message- From: Mike Mountain Sent: 07 November 2005 12:37 To: 'Flashcoders mailing list' Subject: RE:

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Mike Mountain
Yep. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marco Romeny Sent: 07 November 2005 14:32 To: Flashcoders mailing list Subject: Re: [Flashcoders] Ajax and Flash You mean map24.com (which powers rac.co.uk).

Re: [Flashcoders] timestamp conversion problems

2005-11-07 Thread Helen Triolo
If you tack 3 zeros on the end and do a new Date() on it, it returns the right date. No idea if that works for all dates in the CMS though -- just my best guess based on playing around with the numbers you gave: trace(new Date(111553560)); // Sun May 8 03:00:00 GMT-0400 2005 Helen

Re: [Flashcoders] Ajax and Flash

2005-11-07 Thread John Dowdell
Weldon MacDonald wrote: Where does Flash fit in with the Ajax paradigm? A lot depends on what the Ajax paradigm might be ;-) I know that Flash and JavaScript have coexisted for about a decade now, and that both are necessary clientside technologies. Both will also improve and evolve, at

[Flashcoders] sound fadeOut: strange behavior

2005-11-07 Thread MetaArt
I have tryed the andreas suggestion, but don't work. The jingle volume continue to be the previous (fadingIn to 90). But the strange news is another: if I do a test movie inside Flash, the sound of jingle is loaded and faded (code below), but if I test within HTML page, no sound is loaded... How

[Flashcoders] scope in classes

2005-11-07 Thread Eric E. Dolecki
Wondering what the best way to scope mc event functions to a function in a class is... lets say in the class init (this is for a component), you attach some mcs. Then you want to have onRelease functions that scope back down to a private function to handle that. Whats the best way to do

Re: [Flashcoders] scope in classes

2005-11-07 Thread JesterXL
Use Delegate. Not sure why your's is scoping wrong, but always worked for me. attachMovie(SomeClip, mc, 0); mc.onRelease = Delegate.create(this, onMyRelease); function onMyRelease() { // scoped to class, not mc } - Original Message - From: Eric E. Dolecki [EMAIL PROTECTED] To:

Re: [Flashcoders] scope in classes

2005-11-07 Thread JesterXL
You can use Proxy; ARP has one, and a few other Proxy's have been written that support this. Anyone have the links to those handy? - Original Message - From: Eric E. Dolecki [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Monday, November 07, 2005

Re: [Flashcoders] sound fadeOut: strange behavior - solved

2005-11-07 Thread MetaArt
Well, I have solved both the problems; 1) for the fadeIn / fadeOut question, I assume this solution: instead that put the loadSound code on main timeline, I have done a new mc, with two frame inside. At the first frame, insert the code below stop(); track = new Sound();

Re: [Flashcoders] scope in classes

2005-11-07 Thread Eric E. Dolecki
I think is one of them (Joey Lott?) class ascb.util.Proxy { public static function create(oTarget:Object, fFunction:Function):Function { // Create an array of the extra parameters passed to the method. Loop // through every element of the arguments array starting with index 2,

Re: [Flashcoders] scope in classes

2005-11-07 Thread Martin Wood
my favourite topic and my favourite links : http://osflash.org/flashcoders/as2 at the bottom theres a link to this page http://www.dynamicflash.co.uk/2005/02/delegate-class-refined/ from which you can find this implementation http://dynamicflash.com/classes/Delegate.as enjoy. :) martin

[Flashcoders] Ajax ++

2005-11-07 Thread knly browne
Here is a Question,,, does anyone out there feel that Ajax will get to the level or maybe surpass Flash in RIA.. and RIA Development Regards.. -- Kenlie Browne Software Developer ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] Ajax ++

2005-11-07 Thread Scott Hyndman
Take it to the lounge. People come here to ask questions, and topics like this bury them (because just about everyone has an opinion). Thanks Scott -Original Message- From: [EMAIL PROTECTED] on behalf of knly browne Sent: Mon 11/7/2005 1:13 PM To:

Re: [Flashcoders] Ajax ++

2005-11-07 Thread Muzak
http://osflash.org/flashcoders/etiquette#keep_it_coding - Original Message - From: knly browne [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, November 07, 2005 7:13 PM Subject: [Flashcoders] Ajax ++ Here is a Question,,, does anyone out there feel that Ajax will

Re: [Flashcoders] scope in classes

2005-11-07 Thread eric dolecki
sweet thanks :) Never gonna use reg. Delegate again :) e.d. On 11/7/05, Martin Wood [EMAIL PROTECTED] wrote: my favourite topic and my favourite links : http://osflash.org/flashcoders/as2 at the bottom theres a link to this page

[Flashcoders] Trouble Consuming Web Service

2005-11-07 Thread Ron Grimes
I'm having trouble properly setting things up so the Flash app pulls in a web service that I've created in J2EE. The servlet was deployed as a type XML (HTTP/Post) with an output mime type of XML. I have generated the WSDL and SOAP trigger. You can view the wsdl at either

Re: [Flashcoders] Newbie question: SHIFT+TAB

2005-11-07 Thread grant
Did you create a new focus manager you could share ? :) Grant - Original Message - From: Scott Hyndman [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 11/7/05 11:50 AM Subject: RE: [Flashcoders] Newbie question: SHIFT+TAB What I did on one

[Flashcoders] need to clear references?

2005-11-07 Thread David Skoglund
Hi, am coming from the Director platform where you need to keep track of all your instance references and clear them when you delete objects in order to avoid memory leaks. From my little tests it seems like Flash takes care of a lot of a lot of this garbage collection automatically. For

Re: [Flashcoders] need to clear references?

2005-11-07 Thread JesterXL
Flash Player 7 and 8 have different garbage collection routines so they are handled differently. Flash Player 8.5 has seperated further sprites from being actually displayed. Globally - - interval ID's are not removed when movieclips are destroyed; ensure you clear them - movieclip

[Flashcoders] Dynamic Loading Images

2005-11-07 Thread Lehr, Theodore M.
How can I dynamically load images? So when I want to have more images in the movie I just need to put them in the right folder instead of updating the movie. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Dynamic Loading Images

2005-11-07 Thread Martin Wood
look at MovieClip.loadMovie(); despite its name it can load images. :) martin Lehr, Theodore M. wrote: How can I dynamically load images? So when I want to have more images in the movie I just need to put them in the right folder instead of updating the movie.

Re: [Flashcoders] Dynamic Loading Images

2005-11-07 Thread Tom Rhodes
use flash 8 to read the files in a directory or php can pass you all the filenames from a directory too, then just load them in - Original Message - From: Lehr, Theodore M. [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, November 07, 2005 8:08 PM Subject:

Re: [Flashcoders] Dynamic Loading Images

2005-11-07 Thread Martin Wood
ah, i think i missed your point. do what Tom said. :) Martin Wood wrote: look at MovieClip.loadMovie(); despite its name it can load images. :) martin Lehr, Theodore M. wrote: How can I dynamically load images? So when I want to have more images in the movie I just need to put them in

[Flashcoders] setMask flickering

2005-11-07 Thread eric dolecki
I'm building a component that loads in a bunch of images in sep clips inside a master clip - and the master clip can slide left and right. each sep. clip has a drop shadow filter set on it, and during movement, blur applied. When I use a setMask on the main clip, there is considerable flickering

RE: [Flashcoders] Dynamic Loading Images

2005-11-07 Thread Lehr, Theodore M.
Unfortunately, I am still a mere mx'er- hp is an option - any guidance as to how I would approach it from a php standpoint? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Rhodes Sent: Monday, November 07, 2005 2:19 PM To: Flashcoders mailing list

Re: [Flashcoders] Dynamic Loading Images

2005-11-07 Thread Éric Thibault
Use a mix of loadClip (for your JPG or SWF) and XML document?!? Lehr, Theodore M. wrote: How can I dynamically load images? So when I want to have more images in the movie I just need to put them in the right folder instead of updating the movie.

Re: [Flashcoders] Dynamic Loading Images

2005-11-07 Thread Mike Britton
I use AMFPHP and this little ditty: ?php /* -- AMFPHP Service Class - directoryReader.php I return an array of filenames Author: Mike Britton 05/19/05 Methods:: getFiles */ class directoryReader { function

RE: [Flashcoders] Dynamic Loading Images

2005-11-07 Thread Lehr, Theodore M.
great thanks -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Britton Sent: Monday, November 07, 2005 2:50 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Dynamic Loading Images I use AMFPHP and this little ditty: ?php /*

Re: [Flashcoders] Ajax and Flash

2005-11-07 Thread Jaye Morris
http://casario.blogs.com/mmworld/2005/11/aflax_a_javascr.html On 11/7/05, Weldon MacDonald [EMAIL PROTECTED] wrote: Where does Flash fit in with the Ajax paradigm? As a competitor, or as an integrated part. The answer seems to be both, but I'm interested in how working developers see it.

Re: [Flashcoders] POST question

2005-11-07 Thread Ricky Bacon
Oh, the code snippet: downloadPiece = function (t) { if(t == j) { _root.conduit.event(8); } else { _root.conduit.event(6); } dataSend= new LoadVars(); trace(get download + t); dataSend.t = t;

[Flashcoders] Help with FileReference.upload in https

2005-11-07 Thread japerman
Hello It doesn't work in https Do you know it there is a way? Thanks in advance Japerman ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] POST question

2005-11-07 Thread Glenn J. Miller
Hey Ricky, This is a shot in the dark, but I've recently, like yesterday, had to install a critical hotfix for Internet Exploder 6.x to fix a funky download issue. All of a sudden my development workstation stopped allowing downloads for anything from anywhere, WAN or LAN. I couldn't even

[Flashcoders] setChangeHandler no longer works

2005-11-07 Thread Miles Thompson
The movie has been migrated from Flash MX to MX 2004. The setChangeHandler used to show up in blue in MX, but does not do so in MX 2004. This has presumably taken it's place: cboIssueDatesLstnr = new Object(); cboIssueDatesLstnr.change = function(eventObj){ var eventSource =

Re: [Flashcoders] need to clear references?

2005-11-07 Thread JesterXL
var ref_mc:MovieClip = attachMovie(MyClip, mc, 0); If that's in a function, the ref_mc will die because it's a local variable, for the most part. However, if you make that ref_mc a reference, and later do: mc.removeMovieClip(); The ref_mc will still exist, but pointing to a non-existent

Re: [Flashcoders] setChangeHandler no longer works

2005-11-07 Thread Helen Triolo
I just tried it -- it works fine. Did you enter items in the label field for the combobox, and did you name it cboIssueDates? You can also do it without the listener object (essentially using the current timeline as the listener): function showSelection(evt:Object) { trace ( You selected

Re: [Flashcoders] setChangeHandler no longer works

2005-11-07 Thread JesterXL
The component set in Flash MX 2004 is written for a different player, in a different version of ActionScript, and has a totally different API to use it. Thus, if you are using Flash MX components, those are different than MX 2004, and you should refer to the MX documentation for them.

[Flashcoders] MC alpha fades and swapdepths

2005-11-07 Thread Kurt Dommermuth
Hi All, I am faced with another one of those problems that I think should be simple, but for whatever reason I can't solve. Hopefully someone can help. I have a series of movieclips stacked on top of each other beginning with MC1 and ending with MC6. I want MC1 to fade out revealing MC2.

Re: [Flashcoders] Help with FileReference.upload in https

2005-11-07 Thread David Rorex
On 11/7/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: It doesn't work in https Do you know it there is a way? The help in flash says it supports https, but I haven't tested. Make sure you have a valid SSL certificate on your site. -David R ___

Re: [Flashcoders] POST question

2005-11-07 Thread David Rorex
Are you using frames? I've had problems with sending a POST in IE when the flash movie is inside a frame, things like the data not actually being sent. It appeared to be a bug with IE: works fine in mozilla/firefox, and when i took it out of the frame but changed nothing else, it worked again.

Re: [Flashcoders] setChangeHandler no longer works

2005-11-07 Thread JesterXL
To Macromedia's credit, the documentation went through a major overhaul, and re-haul during the course of the 2 years MX 2004 owned. However, by the time they did, I stopped reading the docs, and merely used them briefly as component method references. Therefore, I haven't dug into MX 2004 or

Re: [Flashcoders] [OTAnn] Feedback

2005-11-07 Thread Spike
Advertising a JNLP app on a Flash coders mailing list? I'm assuming this is spam, you're trolling, or you're clueless. The most likely reaction is a bunch of flash/flex developers putting together an alternative that doesn't rely on client side Java. Spike On 11/7/05, shenanigans [EMAIL

Re: [Flashcoders] [OTAnn] Feedback

2005-11-07 Thread Mike Britton
Wait -- I HEARD THIS WAS THE NEXT BIG THING! ;) Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Flash app as a listener?

2005-11-07 Thread JOR
I'm just about to start a new application and I wanted to see people's thoughts on receiving info from the server. I have a flash app where I want to lock an internal flash form from editting while another remote user is editting it. I plan on making an XML call every few seconds to get the

Re: [Flashcoders] MC alpha fades and swapdepths

2005-11-07 Thread Kurt Dommermuth
Ron, Yes! That's the way to do it. thank you! Kurt At 04:27 PM 11/7/2005, you wrote: Can you not just turn off the visibility of everything exceptthe one fading in and the one fading out. Once you fade-out to alpha almost zero, turn off the visibbilty of the faded out image. You probably

Re: [Flashcoders] POST question

2005-11-07 Thread Ricky Bacon
David Rorex wrote: Are you using frames? I've had problems with sending a POST in IE when the flash movie is inside a frame, things like the data not actually being sent. It appeared to be a bug with IE: works fine in mozilla/firefox, and when i took it out of the frame but changed nothing else,

RE: [Flashcoders] Help with FileReference.upload in https

2005-11-07 Thread Japerman
I think so. Look That url: http://www.flash-db.com/Tutorials/upload/index.php I have modified the file php by asp. my problem is this: ... listener.onIOError = function(file:FileReference):Void { imagePane.contentPath = error; imagePane.content.errorMSG.text = IOError: + file.name; }

[Flashcoders] RE: scope in classes

2005-11-07 Thread rob costello
Just a guess as to why Delegate might not work... (if you using MTASC to compile) I was using Delegate without apparent success when I introduced it to a project that I was compiling using MTASC. Appeared to compile OK but Delegate didn't work as expected. Then, I compiled with MM IDE, and

RE: [Flashcoders] secure png

2005-11-07 Thread Chris Wilson
I don't know of a way to do that, but what's the point? All the competitor needs is a screen capture utility (or just ctrl-Print Screen in Windows) and the image is theirs... -Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Maxime Sent: Monday,

Re: [Flashcoders] secure png

2005-11-07 Thread Maxime
The goal of the client is to customize an image with a lot of 3d rendered png alpha layers. They don't care if the competitors do a screen capture, they don't want their competitors to know how they treat the image(alpha) for the layering of images. Chris Wilson a écrit : I don't know of a

RE: [Flashcoders] secure png

2005-11-07 Thread Chris Wilson
I see. Thanks for clarifying. I'm not sure how to disable the caching, unfortunately. If there were a way to create an image in Flash using a raw binary data string, you could read the png file and process it that way, thereby probably bypassing any built-in file-based caching. I'm still

Re: [Flashcoders] secure png

2005-11-07 Thread JOR
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Maxime Sent: Monday, November 07, 2005 6:05 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] secure png The goal of the client is to customize an image with a lot of 3d rendered png alpha

Re: [Flashcoders] secure png

2005-11-07 Thread Latcho
raw data: that IS possible ! Only compression get's lost, but you could write your own serverside and clientside compression and decompression algorithm. Good luck. Chris Wilson wrote: I see. Thanks for clarifying. I'm not sure how to disable the caching, unfortunately. If there were a

RE: [Flashcoders] secure png

2005-11-07 Thread Chris Wilson
Good to know that's possible. How would you take the binary string and have flash treat it as a graphic? -Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Latcho Sent: Monday, November 07, 2005 6:59 PM To: Flashcoders mailing list Subject: Re:

Re: [Flashcoders] secure png

2005-11-07 Thread Maxime
It have to be composited in flash because we will have to control every layer by programmation. JOR wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Maxime Sent: Monday, November 07, 2005 6:05 PM To: Flashcoders mailing list Subject: Re:

[Flashcoders] WSDL Application

2005-11-07 Thread Michael Hood
Hey! Does anyone happen to know of a FREE or a reasonably-affordable WSDL Development/Editing/Explorer-type application? Thanks in advance for your help! :-) Michael Hood URL: http://www.futuremike.com Email: [EMAIL PROTECTED] (w) [EMAIL PROTECTED] (h)

Re: [Flashcoders] setChangeHandler no longer works-RESOLVED

2005-11-07 Thread Miles Thompson
Helena Jester ... Thanks for your replies -- I was trying to continue using the MX component, but because of new features that were wanted in the textarea, I was coding to AS 2. Guess Flash doesn't migrate the components when you do the migration - open MX is MX 2004, and save as MX 2004.

Re: [Flashcoders] secure png

2005-11-07 Thread Latcho
that ought to be done with the class flash.display.BitmapData Like this for loop you could pass it an array cwith rgb and even alpha values. The filesizes off the strings will be as big or bigger as bmp op png24 ! var canvas = new flash.display.BitmapData(50,50,true); for ( var y:Number=0;

Re: [Flashcoders] Dynamic Loading Images

2005-11-07 Thread Jason Rayles
How do you read the files in a directory w/ flash 8? On Nov 7, 2005, at 3:12 PM, [EMAIL PROTECTED] wrote: Message: 11 Date: Mon, 7 Nov 2005 20:18:36 +0100 From: Tom Rhodes [EMAIL PROTECTED] Subject: Re: [Flashcoders] Dynamic Loading Images To: Flashcoders mailing list

Re: [Flashcoders] secure png

2005-11-07 Thread Maxime
Really interesting ! Thank you Latcho ! I just need to get Flash8 to do it. Hope it works ! Latcho wrote: that ought to be done with the class flash.display.BitmapData Like this for loop you could pass it an array cwith rgb and even alpha values. The filesizes off the strings will be as big

[Flashcoders] transparent color

2005-11-07 Thread Latcho
what would be the best and most appropriate (blend?) method/mode to give a grey-rendered (so gradient-shadow-like) 3D object the closest and correctly visual matching hex or rgb color skinned over it? How would i best proceed ? thanx, Latcho ___

Re: [Flashcoders] secure png

2005-11-07 Thread David Rorex
Making your application slower and use more bandwidth, just so the user can't look at your layers, might not be worth it. -David R On 11/7/05, Maxime [EMAIL PROTECTED] wrote: Really interesting ! Thank you Latcho ! I just need to get Flash8 to do it. Hope it works ! Latcho wrote: that

[Flashcoders] AsUnit 3.0 alpha released!

2005-11-07 Thread Luke Bayes
Hey Folks, I'm elated to announce the alpha release of AsUnit 3.0! This build has been completely rebuilt from the ground up using the JUnit sources, and provides complete support for ActionScript 3.0! You can get the latest build from:

Re: [Flashcoders] secure png

2005-11-07 Thread Latcho
As i said it's all in the compression David Rorex wrote: Making your application slower and use more bandwidth, just so the user can't look at your layers, might not be worth it. -David R On 11/7/05, Maxime [EMAIL PROTECTED] wrote: Really interesting ! Thank you Latcho ! I just need to

[Flashcoders] [flexcoders] AsUnit 3.0 alpha released!

2005-11-07 Thread Luke Bayes
Hey Folks, I'm elated to announce the alpha release of AsUnit 3.0! This build has been completely rebuilt from the ground up using the JUnit sources, and provides complete support for ActionScript 3.0! You can get the latest build from:

[Flashcoders] [flexcoders] AsUnit 3.0 alpha released!

2005-11-07 Thread Luke Bayes
Hey Folks, I'm elated to announce the alpha release of AsUnit 3.0! This build has been completely rebuilt from the ground up using the JUnit sources, and provides complete support for ActionScript 3.0! You can get the latest build from:

[Flashcoders] [flexcoders] AsUnit 3.0 alpha released!

2005-11-07 Thread Luke Bayes
Hey Folks, I'm elated to announce the alpha release of AsUnit 3.0! This build has been completely rebuilt from the ground up using the JUnit sources, and provides complete support for ActionScript 3.0! You can get the latest build from:

[Flashcoders] [flexcoders] AsUnit 3.0 alpha released!

2005-11-07 Thread Luke Bayes
Hey Folks, I'm elated to announce the alpha release of AsUnit 3.0! This build has been completely rebuilt from the ground up using the JUnit sources, and provides complete support for ActionScript 3.0! You can get the latest build from:

[Flashcoders] [flexcoders] AsUnit 3.0 alpha released!

2005-11-07 Thread Luke Bayes
Hey Folks, I'm elated to announce the alpha release of AsUnit 3.0! This build has been completely rebuilt from the ground up using the JUnit sources, and provides complete support for ActionScript 3.0! You can get the latest build from:

[Flashcoders] [flexcoders] AsUnit 3.0 alpha released!

2005-11-07 Thread Luke Bayes
Hey Folks, I'm elated to announce the alpha release of AsUnit 3.0! This build has been completely rebuilt from the ground up using the JUnit sources, and provides complete support for ActionScript 3.0! You can get the latest build from:

[Flashcoders] [flexcoders] AsUnit 3.0 alpha released!

2005-11-07 Thread Luke Bayes
Hey Folks, I'm elated to announce the alpha release of AsUnit 3.0! This build has been completely rebuilt from the ground up using the JUnit sources, and provides complete support for ActionScript 3.0! You can get the latest build from:

[Flashcoders] Fairy dust

2005-11-07 Thread Fredrik Lantz
Hi I have a quick question, im doing a script that is going to produce fairy dust, but i cant seem to get the right touch. Does anyone else have any good scripts och tips that they want to share. //Fredrik ___ Flashcoders mailing list

[Flashcoders] flash scrollbar actionscript?

2005-11-07 Thread Ed Hotchkiss
does anyone have any actionscript for a scrollbar, that is mainly comprised of actionscript? ie: a class or function that takes a scrollbar clip, a range of motion and a bit of text to scroll, and scrolls it ... yes, already checked various sites. thanks in advance. -- edward hotchkiss

Re: [Flashcoders] Fairy dust

2005-11-07 Thread ryanm
I have a quick question, im doing a script that is going to produce fairy dust, but i cant seem to get the right touch. Does anyone else have any good scripts och tips that they want to share. Click on tinkerbell. http://www.horsefish.net/elementalfx/flashdemo.html ryanm

Re: [Flashcoders] WSDL Application

2005-11-07 Thread Chris Velevitch
Yes, Coldfusion developer edition is free (http://www.macromedia.com/cfusion/tdrc/index.cfm?product=coldfusion) and so is CFEclipse (http://www.cfeclipse.org) (along with Eclipse (http://www.eclipse.org)). Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group