RE: [Flashcoders] load image from local machine into browser based swf?

2007-01-31 Thread Andy Stone
You can upload the image to a folder then load it from it's location on the server. -Andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Haines Sent: Wednesday, January 31, 2007 10:01 AM To: 'Flashcoders mailing list' Subject: [Flashcoders] load

RE: [Flashcoders] How to achieve this line open/close effect?

2007-01-16 Thread Andy Stone
); } Good luck -Andy Stone -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marcelo de Moraes Serpa Sent: Friday, January 12, 2007 8:18 PM To: Flashcoders mailing list Subject: [Flashcoders] How to achieve this line open/close effect? Hello! I'd like

RE: [Flashcoders] Transparent list component

2006-12-19 Thread Andy Stone
It's a bit of a hack but it works -Andy Stone // var backAlpha = 10; var backColor = 0xFF; // _global.styles.ScrollSelectList.backgroundColor = undefined; // mx.controls.listclasses.SelectableRow.prototype.drawRowFill = function(mc:MovieClip, newClr:Number):Void { mc.clear

RE: [Flashcoders] site check please: swfobject issues

2006-12-13 Thread Andy Stone
Fine on, IE6, FF 1.5.0.8 Win XP, Flash Player 9. -Andy Stone -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Count Schemula Sent: Wednesday, December 13, 2006 1:48 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] site check please: swfobject

RE: [Flashcoders] Local SWF loadVars from remote php file

2006-12-11 Thread Andy Stone
You've probably thought of this... My firewall will block a remoting call when testing locally. When I disable it the calls work fine. -A -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of slangeberg Sent: Monday, December 11, 2006 10:24 AM To:

RE: [Flashcoders] Loading library movie clips sequentially? Best way todo this?

2006-11-29 Thread Andy Stone
I use fusekit(http://www.mosessupposes.com), it's great for animation sequences. -Andy Stone Here's an example of how I might do it... import com.mosesSupposes.fuse.*; ZigoEngine.register(PennerEasing, Shortcuts, FuseFMP, FuseItem); // var numOfClips = 3; var currentClip = 1; //the clips

RE: [Flashcoders] Gradients (not a coding question)

2006-11-15 Thread Andy Stone
I've done it by using a 1px line across the letters converting line to fill break apart everything. Then it's all one shape and you can change the fill. It's probably not the best way to do it but it worked for my situation. -Andy -Original Message- From: [EMAIL PROTECTED]

RE: [Flashcoders] new inquiry - pulsating drop shadows in mac os

2006-11-13 Thread Andy Stone
My Mac monitor started pulsating randomly in different areas. It was a problem with the monitor not Flash. It gave me migraines and little kids had seizures. -Andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Catherine Eng Sent: Monday, November 13,

RE: [Flashcoders] Fuse Kit Sequence

2006-10-13 Thread Andy Stone
,ease,delay); Your end property value(s) are supposed to be a number or array of numbers. I just started using fuse (migrated from Zigo lmc_tween.as). Hope this helps. -Andy Stone -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jon Bennett Sent

RE: [Flashcoders] Attach sound problem

2006-09-28 Thread Andy Stone
I've used... var thesong = new Sound (this) ...it works when var thesong = new Sound () doesn't. -Andy ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

RE: [Flashcoders] Beta testers and comments needed

2006-09-21 Thread Andy Stone
I converted a 21MB .wmv to a 0k .flv. Win XP Pro 2002 SP2 3.39 GHz 2GB RAM I dropped the file in the box it too about 4 seconds to convert. -Andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Berkay Unal Sent: Thursday, September 21, 2006 1:11 PM

RE: [Flashcoders] WhiteBoard app

2006-08-15 Thread Andy Stone
Red5. http://osflash.org/red5 Red5 is a server that not only streams content to the Flash plugin, but it can push calls and information to the Flash client! It can also receive video/audio/data from a flash client and either save or rebroadcast that content. -Andy -Original Message-

RE: [Flashcoders] DK - destroying objects from a class using arraynotation

2006-08-10 Thread Andy Stone
Have you tried... this._targetMc.destroyObject(eval(slidemenu.theThumb + i)); Sometimes I find eval works when [] doesn't. -Andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of dnk Sent: Thursday, August 10, 2006 3:07 AM To: Flashcoders mailing list

RE: [Flashcoders] Movement in an oval shape

2006-08-10 Thread Andy Stone
You can fake in with _xscale/_yscale changes... var inc = 3; _root.onEnterFrame = function() { vStar_Object._x = (Math.cos((vStar_Object.circlePos/180)*Math.PI))*160+vStar_Object.centerX; vStar_Object._y =

RE: [Flashcoders] skinning the DataGrid component

2006-07-31 Thread Andy Stone
This will work. var alpha = 20; var color = 0xFF; // _global.styles.ScrollSelectList.backgroundColor = null; mx.controls.listclasses.SelectableRow.prototype.drawRowFill = function(mc:MovieClip, newClr:Number):Void { mc.clear(); if (newClr == null) {

FW: [Flashcoders] removing background from list component

2006-07-24 Thread Andy Stone
= this.__width; mc._height = this.__height; }; Sorry if this message was posted twice I think it was returned Friday. -Andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andy Stone Sent: Friday, July 21, 2006 3:41 PM To: 'Flashcoders mailing list

RE: [Flashcoders] removing background from list component

2006-07-21 Thread Andy Stone
The drawRowFill function doesn't have a _alpha parameter. I hope this will solve your problem, if haven't figured it out yet. -Andy var alpha = 0; var color = 0xff; // _global.styles.ScrollSelectList.backgroundColor = null; mx.controls.listclasses.SelectableRow.prototype.drawRowFill =

RE: [Flashcoders] Eclipse Assistance (beginner)

2006-07-18 Thread Andy Stone
. =\ On 7/14/06, Andy Stone [EMAIL PROTECTED] wrote: There's a ton of resources out there. You can find tutorials at a few of sites below... http://www.gotoandlearn.com/ http://www.ultrashock.com/ http://www.flashkit.com http://actionscript.org http://www.kirupa.com http://www.moock.org/asdg

RE: [Flashcoders] Eclipse Assistance (beginner)

2006-07-14 Thread Andy Stone
There's a ton of resources out there. You can find tutorials at a few of sites below... http://www.gotoandlearn.com/ http://www.ultrashock.com/ http://www.flashkit.com http://actionscript.org http://www.kirupa.com http://www.moock.org/asdg/codedepot/ http://www.sephiroth.it/tutorials.php I Hope