RE: [Flashcoders] PLEASE help with advanced dataset issues

2007-04-20 Thread Rost, Andrew
Sorry Don, typo in address... www.radiantmedia.biz/FlashSamples/DatasetFilter.zip Andrew - Don: There are a couple things to check for. Rather than list them all I have a sample of exactly what you're trying to do. Feel

RE: [Flashcoders] attaching an event to a movie clip

2007-04-06 Thread Rost, Andrew
newMC.rollOver Should be: newMC.onRollOver HTH -Original Message- From: Gustavo Duenas [mailto:[EMAIL PROTECTED] Sent: Friday, April 06, 2007 12:43 PM To: Flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] attaching an event to a movie clip Hi , Ok it doesn't sound as simple,

RE: [Flashcoders] Entities are Hell!

2007-04-04 Thread Rost, Andrew
Play with nodeValue. As a test add the entity code into the XML file and use nodeValue: // XML hut_data titleAkbar amp; Jeffapos;s ActionScript Hut/title /hut_data // // AS theClip.txt.text = xmlNode.firstChild.firstChild.nodeValue; // instead of: // XML hut_data titleAkbar

RE: [Flashcoders] Problem extending inherited function

2007-03-21 Thread Rost, Andrew
The way you had your code, the Child class will never receive the killingFocus call. Add a Delegate within the Mother Class to put the onKillFocus event into scope with Child... import mx.utils.Delegate; class Mother extends MovieClip { public var txt:TextField; public function

RE: [Flashcoders] xml parse question

2007-03-15 Thread Rost, Andrew
You might be aware of this, but just an FYI, if you're concerned about attributes being order specific. When you loop through the attributes with a for statement, you'll get the attributes in the reverse order. I personally loop through the attributes and push the attribute name to an array and

RE: [Flashcoders] Site Check

2007-03-14 Thread Rost, Andrew
Stuck at 33% XP Pro SP2 2.2 Ghz 2 GB Ram IE7 FP 9,0,28,0 -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 14, 2007 10:37 AM To: Flashcoders Subject: [Flashcoders] Site Check Could I get some of you to check this site:

RE: [Flashcoders] Help with updating a nodeValue in an XML file

2007-03-08 Thread Rost, Andrew
All you need to do is set the nodeValue rather than access it. var trial_xml:XML = new XML(navigationcategoryThis is a category/category/navigation); trace(trial_xml.firstChild.firstChild.firstChild.nodeValue); trial_xml.firstChild.firstChild.firstChild.nodeValue = This is a NEW category;

RE: [Flashcoders] Help with updating a nodeValue in an XML file

2007-03-08 Thread Rost, Andrew
write to my file called setup.xml. I am in the OReilly ActionScript book now and this is the first time it has ever failed me. I tried parseXML and sendAndLoad but I can't seem to write into the file. Thanks for helping me. Teresa On 3/8/07, Rost, Andrew [EMAIL PROTECTED] wrote: All you need

RE: [Flashcoders] ADMIN: DO NOT SEND UNSUBSCRIBE REQUESTS TO THE LIST

2007-03-01 Thread Rost, Andrew
Whoraw! Spite and Revenge, best served cold! Thanks Dave -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Thursday, March 01, 2007 1:35 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] ADMIN: DO NOT SEND UNSUBSCRIBE REQUESTS TO THE LIST Any future

RE: [Flashcoders] OT: Pirated Books

2007-03-01 Thread Rost, Andrew
Naive little man... you don't have to sell it for it to be pirated. Piracy: The unauthorized reproduction or use of a copyrighted book, recording, television program, patented invention, trademarked product, etc. I wouldn't think you emailed your original. -Original Message- From: Omar

RE: [Flashcoders] Events for custom classes?

2007-02-16 Thread Rost, Andrew
Can you please email your class to me as well [offlist]. I'm working on almost the same thing as Jason. Thanks much, Andrew Rost IDEXX Computer Systems -Original Message- From: Merrill, Jason [mailto:[EMAIL PROTECTED] Sent: Friday, February 16, 2007 2:41 PM To: Flashcoders mailing list

RE: [Flashcoders] to get last browsed web page before current

2007-02-07 Thread Rost, Andrew
I'm not a huge JavaScript person, but we use: getURL(javascript:history.back();); Andrew -Original Message- From: Jim Berkey [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 07, 2007 2:43 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] to get last browsed web

RE: [Flashcoders] - dynamic content for flash paper?

2007-01-30 Thread Rost, Andrew
The answer is no. We recently tried going down this path, but the FP API does not support data integration. Andrew Rost -Original Message- From: nelson ramirez [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 30, 2007 4:00 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] -

RE: [Flashcoders] IE6 CTRL key problem.

2007-01-19 Thread Rost, Andrew
// first frame of main timeline this.onEnterFrame = function():Void { //Ctrl-X if(Key.isDown(Key.CONTROL) Key.isDown(88)){trace(Edit called)}; //Ctrl-C if(Key.isDown(Key.CONTROL) Key.isDown(67)){trace(Copy called)}; //Ctrl-V

RE: [Flashcoders] movement question

2007-01-19 Thread Rost, Andrew
this.onEnterFrame=function():Void { if(myClip._rotation != -90){myClip._rotation--}; } Quick and simple... Andrew -Original Message- From: Gustavo Duenas [mailto:[EMAIL PROTECTED] Sent: Friday, January 19, 2007 1:58 PM To: Flashcoders mailing list Subject: [Flashcoders]

RE: [Flashcoders] combobox

2007-01-17 Thread Rost, Andrew
Also, when you load a clip using loadMovieNum, you're loading the SWF directly into the timeline. When you use loadMovie, you're loading the SWF into a target clip. When you load a SWF into a target clip that utilizes components, you'll need to set _lockroot = true; on the target clip. var