RE: [Flashcoders] Text field - input caret..

2008-11-07 Thread Keith Reinfeld
Karim, myTextField.setSelection(myTextField.length, myTextField.length); Regards, -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Karim Beyrouti Sent: Friday, November 07, 2008 8:37 AM

RE: [Flashcoders] CDATA whitespace issue

2008-10-16 Thread Keith Reinfeld
Is there any way (like the old ignoreWhite param), that i can get as3 to strip the extra tabs and linebreaks (even within CDATA)? Allandt, Have you tried: TextField.condenseWhite = true; ? Regards, -Keith http://keithreinfeld.home.comcast.net

RE: [Flashcoders] Re: masking w/o using bitmapCaching = true?

2008-10-09 Thread Keith Reinfeld
Sebastian, With cacheAsBitmap = false, can you overlay your menu with a gradient that has a transparent center then, using a separate graphic, mask the menu only? Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing

RE: [Flashcoders] TextField text selection question

2008-10-08 Thread Keith Reinfeld
the InputTF letters to highlight in the Suggestion TextField? For each of your suggestion TextFields try: Suggestion.setSelection(0, InputTF.length - 1); Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing list

RE: [Flashcoders] Making dynamic text look the same as static text

2008-09-19 Thread Keith Reinfeld
Alan, Review the help docs under textfield and textformat. Make sure you understand the difference between textfield properties and textformat properties and how they are set. Regards, -Keith http://keithreinfeld.home.comcast.net

RE: [Flashcoders] AS3 dynamic text fields and img

2008-09-09 Thread Keith Reinfeld
regarding how this could be set-up depend on how you are loading your text. Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo

Re: [Flashcoders] Embeding JSFL into SWC file, is it possible?

2008-08-26 Thread Keith
If you got actionscript that runs JSFL commands it should work if the SWF is ran in a JSFL runnable environment, windowSWF or XUL Panel MMExecute('alert(JSFL says: Hello);'); -- Keith H -- www.keith-hair.net Helmut Granda wrote: Is it possible to call a JSFL from a SWC file? I tried

Re: [Flashcoders] E4X case sensitivity

2008-08-23 Thread Keith
You could use Regular Expressions in your filtering. Here's my ramblings: http://keith-hair.net/blog/2008/06/01/case-insensitive-e4x-filtering/ -- Keith H -- www.keith-hair.net Pavel Krůšek wrote: Hi List, E4X is case sensitive, is possible to disable case sensitivity for searching

RE: [Flashcoders] Quick Date question, how to add 1 second to Date?

2008-08-22 Thread Keith Reinfeld
Ali, currTime = new Date(currTime.getTime() + 1000); or currTime.setTime(currTime.getTime() + 1000); Regards, -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Ali Drongo Sent: Friday

RE: [Flashcoders] Random numbers list

2008-07-29 Thread Keith Reinfeld
= [].concat(allNumbers); var n:Number = 10; while(n--){ tenNumbers[n] = ca.splice(Math.floor(Math.random() * ca.length - 1), 1); } trace(\ntenNumbers = +tenNumbers); } /code Regards, -Keith http://keithreinfeld.home.comcast.net

RE: [Flashcoders] Masking Effect

2008-07-29 Thread Keith Reinfeld
Sander, I had a situation once (Flash 8, AS2) where a gradient mask effect would not work properly until I forced the movieclips into positive depths. HTH Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing list

Re: [Flashcoders] E4X filtering strange behaviour

2008-07-21 Thread Keith
Thanks for showing these results. I'm not missing the attribute method that much...and after this I don't feel any guilt for it. :) -- Keith H -- http://keith-hair.com Kenneth Kawamoto wrote: I just run a quick and dirty test, and I think I can confirm that. The following test

Re: [Flashcoders] E4X filtering strange behaviour

2008-07-21 Thread Keith
Why not use toXMLString(): trace(result: +xmlListSearch.toXMLString()); When I add more than one node with Dark in the title attribute it finds it with toString(). I've always used toXMLString() so I was unaware of this. -- Keith H -- http://keith-hair.com Merrill, Jason wrote: So

RE: [Flashcoders] AS3 - MovieClip in MovieClip not showing

2008-07-19 Thread Keith Reinfeld
adding the object to the display list. I think it has to do with trying to set the height and width before adding *content* to the object. Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing list Flashcoders

RE: [Flashcoders] AS3 - MovieClip in MovieClip not showing

2008-07-18 Thread Keith Reinfeld
would not be able to assign values to _width and _height for an empty movieclip. Regards, -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Cor Sent: Friday, July 18, 2008 12:38 PM

RE: [Flashcoders] AS3 - MovieClip in MovieClip not showing

2008-07-18 Thread Keith Reinfeld
Just for the record: Q: Sprite is the same as a MovieClip but without the timeline, isn't it? MovieClip inherits from Sprite. Beyond that you will have to ask someone who can make sense of CS3's convoluted documentation. Regards, -Keith http://keithreinfeld.home.comcast.net

RE: [Flashcoders] Strange Masking Bug in Flash

2008-07-03 Thread Keith Reinfeld
as the fill, then do ModifyShapeConvert Lines to Fills I don't really know, but there may be a way to do at least some of the above with JSFL. That would be the clever part. Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing

RE: [Flashcoders] AS2 preloading images

2008-06-19 Thread Keith Reinfeld
Andrew, You could preload the images into child clips of a holder movieclip (_visible=false) then draw into your view using the BitmapData class. Regards, -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL

RE: [Flashcoders] Inserting Smiley Images in Textarea

2008-06-12 Thread Keith Reinfeld
Yes. TUFaT SmileText Component http://www.tufat.com/script124.htm Has the features you mentioned, but it breaks when a user enters (certain) html tags. Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing list

RE: [Flashcoders] Inserting Smiley Images in Textarea

2008-06-12 Thread Keith Reinfeld
' tag alone won't cut it. The image's placement will also wrap to the next line or not depending on where the tag is placed in the block of text (first, last, or inbetween.) There is a workaround but it is a very long way around. Regards, -Keith http://keithreinfeld.home.comcast.net

RE: [Flashcoders] Inserting Smiley Images in Textarea

2008-06-12 Thread Keith Reinfeld
anywhere' I meant horizontally between the left and right margins. You can place the tag wherever you like vertically (between the top and bottom of a page of text) but it will still be either left or right aligned. Regards, -Keith http://keithreinfeld.home.comcast.net -Original

RE: [Flashcoders] Inserting Smiley Images in Textarea

2008-06-12 Thread Keith Reinfeld
anyway... supper's ready! Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] [AS3] Problem with For loop

2008-05-02 Thread Keith Reinfeld
var summaryClick = function (ev:Event) { trace(i); // Outputs incorrectly (Outputs 5 on each MovieClip click) ??? } Outputs correctly: 5 *is* the value of i when clicked. Regards, -Keith http://keithreinfeld.home.comcast.net

[Flashcoders] JSFL open WindowSWF

2008-04-27 Thread Keith
Is there a way to open a WindowSWF IDE panel with JSFL? -- Keith H -- ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] mm_jsapi.h and DLLs and JSFL

2008-04-12 Thread Keith
on the mm_jsapi.h file with no luck. Does Adobe have an SDK on DLLs for JSFL? Any and all help pointing me in the right direction is appreciated! -- Keith H -- ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com

RE: [Flashcoders] world clock - revisited

2008-03-27 Thread Keith Reinfeld
time greater than start? If local DST is in effect is the calculated time greater than end and less than start? Etc... If there is an elegant way of doing this I would love to hear it! Regards, -Keith http://keithreinfeld.home.comcast.net

Re: [Flashcoders] to mac or not to mac

2008-03-14 Thread Keith
This is a useless topic. Sorry that I have to put it that way. -- Keith H -- ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash is full of surprises. I will show you how to move movie-clip using a reference to another deleted clip.

2008-03-09 Thread Keith
//-- You only removed the MovieClip. mc.removeMovieClip(); //-- If you use delete it will remove the reference to the variable. delete mc; I'm glad it works this way, because I can reuse my variables. When I'm done I can call delete -- Keith H -- Pavel Empty wrote: Hey! Recently I

RE: [Flashcoders] non-selectable TextFields are catching onPress, stumped

2008-02-16 Thread Keith Reinfeld
Andrew, Typically this behavior is the result of a change in focus following from the first click. Try adding this line to your onRelease function: Selection.setFocus(this); Regards, -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED

RE: [Flashcoders] yahoo list?

2008-02-06 Thread Keith Reinfeld
http://groups.yahoo.com/group/Flash_tiger Regards, -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Corban Baxter Sent: Wednesday, February 06, 2008 9:03 AM To: Flash Coders List

RE: [Flashcoders] urgent angle problem

2008-02-05 Thread Keith Reinfeld
frame = Math.ceil(((angle 0)? -1*(angle): -1*(angle - 360))/40); Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Simple quesiton for createEmptyMovieClip in AS2

2008-01-13 Thread Keith Reinfeld
, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Short syntax for accessing nested display objects? (AS3)

2007-10-21 Thread keith
Is there a reason you can't access the Sprite with the variable you first created? cont.visible=false; -- Keith H -- Alistair Colling wrote: Hiya everyone, good to see the list back up and running. I'm trying to access a sprite that is inside of 2 other sprites and I have 2 questions

Re: [Flashcoders] digest

2007-10-21 Thread Keith Wilcox
I've entered my username and password and it says Authenitcation failed. On 10/19/07, Zeh Fernando [EMAIL PROTECTED] wrote: Apparently some user preferences were jostled/reset by the move. Where can I change my subscription mode to digest? d

Re: [Flashcoders] Reliable way to split a string into an array of lines?

2007-09-13 Thread keith
If you have the libertry to go the RegExp, it's much easier. (Put everything you consider a linebreak in the brackets with [\r\n\f\v] var lines:Array=myStr.replace(/[\r\n\f\v]/mig,\n).split(\n); trace(lines.length.toString()); Don't know if that's what you was talking about. -- Keith H

RE: [Flashcoders] AS2 Sound.stop()

2007-09-13 Thread Keith Reinfeld
Hi Andrew, So, how do you stop all currently playing sounds? If that is literally what you want to do, have you looked at the global function stopAllSounds()? Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders

RE: [Flashcoders] Flash mx 2004 developer Certification Info

2007-09-10 Thread Keith Reinfeld
Nilesh, http://www.forta.com/books/0321157303/ From the Certified Macromedia Flash MX Developer Study Guide Regards, -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of [EMAIL

RE: [Flashcoders] coding a world clock

2007-09-07 Thread Keith Reinfeld
Thanks again, Marcelo! The DST Policies scheme works wonderfully. Brilliant! I'm sure I read somewhere that you need to delete the Date object once you are done with it. Otherwise it will persist in memory. Have you noticed any memory leaks associated with these calcs? Regards, -Keith

RE: [Flashcoders] coding a world clock

2007-09-06 Thread Keith Reinfeld
, thank you for the link. Nice touch with the iconic location graphics. Second, I'm getting a 404 for the worldclock source file. Just FYI. Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders@chattyfig.figleaf.com To change your

RE: [Flashcoders] coding a world clock

2007-09-06 Thread Keith Reinfeld
Hi Jim, Thanks again! Is it just me (Flash 8) or does anybody else get the 'Unexpected File Format' error? What version of Flash was your worldclock.fla created in? Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders

RE: [Flashcoders] Calculate how many days until date

2007-09-05 Thread Keith Reinfeld
The month parameter takes values between 0 and 11, so: new Date( 2007, 12, 25 ) = Fri Jan 25 00:00:00 GMT-0600 2008 new Date( 2007, 11, 25 ) = Tue Dec 25 00:00:00 GMT-0600 2007 Regards, -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED

RE: [Flashcoders] coding a world clock

2007-09-03 Thread Keith Reinfeld
/ and Wikipedia maybe good general information sources, but I haven't been able to find a nice tidy list of locations and their GMT offsets that I can effortlessly implement in Flash. Regards, -Keith http://keithreinfeld.home.comcast.net

[Flashcoders] AS3 Facebook Library

2007-08-04 Thread Keith Salisbury
See here: http://code.google.com/p/as3facebooklib/ I'm writing the automated tests to ensure the library is watertight Will create some examples after that. For a basic flex example, see the ManualFacebookTest.mxml in the tests directory. If anyone has time to knock up a PV3D example that

RE: [Flashcoders] onEnterFrame() and delete onEnterFrame()

2007-07-17 Thread Keith Reinfeld
); } } }; HTH -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of macromedia flash Sent: Tuesday, July 17, 2007 3:46 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders

Re: [Flashcoders] JSFL Experts! -- Video Import (Access UI elements of Video Import XUL Dialog Window)

2007-06-25 Thread keith
Thanks, thats a start in some direction. -- Keith H -- Muzak wrote: If I had to guess (which I am) I'd say the video import dialog is handled by the Flash Video Extension.dll (on windows) which is in the Flash install directory. So I doubt you have access to it from jsfl. regards, Muzak

[Flashcoders] JSFL Experts! -- Video Import (Access UI elements of Video Import XUL Dialog Window)

2007-06-24 Thread keith
INFO: I have a JSFL script that calls importFile() to import FLVs into my documents. This opens the Import Video dialog window with input fields and radiobuttons. Here is the Video Import window I'm talking about... http://keith-hair.com/web/photos/videoimport.jpg QUESTION: (1

Re: [Flashcoders] Type Coercion Failed: Odd behavior.

2007-06-20 Thread keith
Maybe this will help the coerce: for (var i:int=0;iparent.numChildren;i++) { if(parent.getChildAt(i) is LiquidObject){ trace(LiquidObject(parent.getChildAt(i)).selected); } } -- Keith H -- Paul Chang wrote: Hello, I've created a custom class: LiquidObject extends Sprite I then create

Re: [Flashcoders] [OT] desktop file searching utility

2007-05-28 Thread keith
http://keithhair.com/web/photos/searchexample.jpg http://www.jedit.org/ If you not familiar, J-Edit's Hypersearch feature would be excellent for this. It searches within all text filetypes over a whole directory. Allows filtering and RegExp. Not bad for writing scripts either. -- Keith H

RE: [Flashcoders] regular expressions in Flash8?

2007-05-18 Thread Keith Reinfeld
// replace /descr with /descr txt = txt.split('/descr').join('/descr'); Then // replace /descr with /descr txt = txt.split('/descr').join('/descr'); -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [Flashcoders] named while loops in AS3

2007-04-11 Thread keith
Ignacio Marabotti wrote: continue Very cool stuff! -- Keith H -- Andrés González Aragón [EMAIL PROTECTED] escribió: Something like this with ':' to create the label: var n:int=0; LOOP_A: while(n 10) { var z:int=0; LOOP_B: while(z20){ if(n == 3){ break LOOP_A; } z++; } n++; } You

Re: [Flashcoders] AS3 replacement for: XMLNode_Instance.removeNode();

2007-04-07 Thread keith
Nice, simpler than I thought. Thanks! --Keith H-- delete? var xml:XML = body pHello/p pWorld/p /body; trace(xml.toXMLString()); delete xml.p[0]; trace(xml.toXMLString()); regards, Muzak - Original Message - What is the E4X in AS3 for removing a child

RE: [Flashcoders] setting a timer in flash 8

2007-03-25 Thread Keith Reinfeld
Gustavo, stop(); var later:Number = (getTimer()/1000) + 20; this.onEnterFrame = function (){ var now:Number = getTimer()/1000; if(now = later){ trace(llegamos); delete this.onEnterFrame; } } trace(later); HTH -Keith http

Re: [Flashcoders] Using JSFL with AS files

2007-03-22 Thread keith
//Script In the Flash IDE: MMExecute('alert(Hello World);'); -- Keith H -- Danny Kodicek wrote: Is there any way to do it? (And yes, I know I'd be better off with an external editor, but sometimes it's easiest just to work in the IDE). Danny

RE: [Flashcoders] Re: Flashcoders Digest, Vol 25, Issue 53

2007-02-17 Thread Keith Reinfeld
Dave, I often get a 'Help Topic Not Found' result when I use search. Even when I know it's in there! In this case, it's in there: Using Components Creating Components Creating the ActionScript class file Adding component metadata Metadata tags HTH -Keith http

RE: [Flashcoders] adding nbsp; in html enabled text field

2007-02-07 Thread Keith Reinfeld
Doesn't it work to just: htmlString += nbsp;; ??? -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz Sent: Wednesday, February 07, 2007 1:41 PM To: Flashcoders mailing list Subject

RE: [Flashcoders] Detecting mouse events over non-white parts of amovieClip

2007-02-07 Thread Keith Reinfeld
If you don't want the cursor to change just use yourMovieClip.useHandCursor = false; for each clip with button behaviors. HTH -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jason Boyd Sent

RE: [Flashcoders] Detecting mouse events over non-white parts of amovieClip

2007-02-07 Thread Keith Reinfeld
The code to convert a bitmap into vectors would be the tricky part, but is technically doable. ModifyBitmapTrace Bitmap... -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

Re: [Flashcoders] Flair Pattern bad mixins good (?)

2007-02-01 Thread Keith Salisbury
Funny enough, they are also less widely known as the Four Gangsters after a someone with limited English skills referred to them this way at a conference. Perhaps it was actually English skillz ;-) ___ Flashcoders@chattyfig.figleaf.com To change

RE: [Flashcoders] path to upper level folder

2007-01-31 Thread Keith Reinfeld
Your path should look like this: ../folder_with_images/yourimage.jpg -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of natalia Vikhtinskaya Sent: Wednesday, January 31, 2007 10:28 AM To: Flashcoders mailing

Re: [Flashcoders] Flair Pattern bad mixins good (?)

2007-01-31 Thread Keith Salisbury
Mmmm I really want a bagel now!!! Damn that decor On 1/30/07, JOR [EMAIL PROTECTED] wrote: A decorator object composites the object it wishes to decorate and is used in it's place. Since the decorator inherits from the the same base class as the object it decorates they can both be used

Re: [Flashcoders] Flair Pattern bad mixins good (?)

2007-01-31 Thread Keith Salisbury
If you feel like this: GoF makes me very sleepy - I find it very dry and the chapters very long winded. (Sorry GoF'rs) then: I would be interested to know if Head First Design Patterns follows the same process as Moock - learn by doing. I can handle that, although I will keep delving

Re: [Flashcoders] AS3 properties woes

2007-01-26 Thread Keith Salisbury
); and in your parent function ClassName(lc:String) { labelClass = lc; } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Keith Salisbury Sent: Wednesday, January 24, 2007 6:32 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] AS3 properties

[Flashcoders] AS3 properties woes

2007-01-24 Thread Keith Salisbury
() marker.showTitle(hello world) # span class=defaulthello world/span This isnt what i would expect? Can anyone enlighten me where i'm going wrong? thanks keith ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] AS3 properties woes

2007-01-24 Thread Keith Salisbury
described!! Sorry for the distractions!!! thanks for the help tho keith ___ 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

RE: [Flashcoders] Combobox embed fonts PC/Mac problem

2007-01-23 Thread Keith Reinfeld
. Possible values for platform are WIN, MAC, and UNIX. Some examples: WIN 8,0,22,0 MAC 7,0,25,0 UNIX 5,0,55,0 Please see the following technote for more information: http://www.macromedia.com/go/tn_14294 HTH -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL

RE: [Flashcoders] movement question

2007-01-19 Thread Keith Reinfeld
; } } } // Clockwise rotation rotateMC(someMovieClip, 10, -90); // Counter-clockwise rotation rotateMC(someMovieClip, -10, -90); HTH -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas Sent

Re: [Flashcoders] JSFL writing a (Unicode) encoded text file

2007-01-08 Thread keith
Thanks the replies gave me the direction I need. -- Keith H -- ___ 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

[Flashcoders] JSFL writing a (Unicode) encoded text file

2007-01-07 Thread keith
Is it possible to write a Unicode encoded text file with JSFL? If so how can I do it? -- Keith H -- ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo

RE: [Flashcoders] Switch case problem...

2006-12-06 Thread Keith Reinfeld
How are you setting the value of the linkName variable? -Keith http://keithreinfeld.home.comcast.net -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of José Maria Barros Sent: Wednesday, December 06, 2006 6:54 AM To: Flashcoders mailing list Subject: Re

Re: [Flashcoders] Aaaaaaaaaaaaarrrrgh! All my Arabic assumptions are coming apart!

2006-11-10 Thread keith
, the trace shows the concatenation different. -- Keith H -- Danny Kodicek wrote: So I finally got round to plugging in an arabic keyboard today, and I've spent the entire day watching the entire structure of what I thought was true about Flash and Arabic unravelling before my eyes. Specifically: I

RE: [Flashcoders] mc loads, has a global....

2006-10-26 Thread Keith Reinfeld
the last one you assigned to it. HTH -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Thursday, October 26, 2006 10:41 PM To: Flashcoders mailing list Subject: [Flashcoders] mc loads, has

RE: [Flashcoders] Q:passing a variable as argument with getURL(javascript:testfunc(arg));

2006-10-24 Thread Keith Reinfeld
getURL(javascript:testfunc('+arg+');); -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, October 24, 2006 11:55 AM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders

RE: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Keith Reinfeld
-Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of mastro Sent: Wednesday, October 18, 2006 3:43 AM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] draggable mc with buttons in it? hello ! i made

RE: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Keith Reinfeld
} HTH -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of mastro Sent: Wednesday, October 18, 2006 3:43 AM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] draggable mc with buttons in it? hello ! i

RE: [Flashcoders] Center align a multiline textfield?

2006-10-11 Thread Keith Reinfeld
Blake, Did you try using the paragraph tag's align attribute that I suggested yesterday? htmlText='p align=centerfont face=KnockoutHTF51Middleweight size=16 color=#ffSI.com\'s Peter King says T.O. is going to explode before long, but Dallas is tough enough to survive./font/p'; -Keith

RE: [Flashcoders] brain teaser: filter tweening code has a problem, can you spot it?

2006-10-11 Thread Keith Reinfeld
= [gf]; }; }; } Did you have some other solution? -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Boon Chew Sent: Wednesday, October 11, 2006 1:46 PM To: Flashcoders mailing list

RE: [Flashcoders] brain teaser: filter tweening code has a problem, can you spot it?

2006-10-11 Thread Keith Reinfeld
]; }; }; } Does that clear things up? -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks | BLITZ Sent: Wednesday, October 11, 2006 4:55 PM To: Flashcoders mailing list Subject: RE

RE: [Flashcoders] Turn off all the tabs in a file

2006-10-10 Thread Keith Reinfeld
, creating, whatever... disableTabbing(this); HTH -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Josh Johnston Sent: Tuesday, October 10, 2006 11:08 AM To: Flashcoders mailing list Subject

RE: [Flashcoders] Re: inline images in a textarea

2006-09-12 Thread Keith Reinfeld
This maybe the component you are referring to: http://home.tiscali.nl/~erikwe/component/TextFieldExtension.mxp HTH, -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marcelo Volmaro Sent: Tuesday

RE: [Flashcoders] Re: inline images in a textarea

2006-09-12 Thread Keith Reinfeld
There are none so blind... -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rich Rodecker Sent: Tuesday, September 12, 2006 6:32 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Re: inline images

RE: [Flashcoders] Tween Class with Set Interval deletion

2006-09-07 Thread Keith Reinfeld
myTimeTween.stop(); -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Thursday, September 07, 2006 9:54 AM To: Flashcoders mailing list Subject: [Flashcoders] Tween Class with Set Interval

RE: [Flashcoders] Tween Class with Set Interval deletion

2006-09-07 Thread Keith Reinfeld
Glad to help, Helmut. If you are interested, the Tween Class methods are documented in the Flash 8 Help under Components Language ReferenceTween Class. Regards, -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: [Flashcoders] Hex colors function?

2006-08-22 Thread Keith Reinfeld
)); } HTH -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Tuesday, August 22, 2006 12:57 PM To: Flashcoders mailing list Subject: [Flashcoders] Hex colors function? Anyone

Re: [Flashcoders] OT: Blitz Labs Xray

2006-08-16 Thread Keith Salisbury
Mate, Try this: http://labs.blitzagency.com/wp-content/xray/flex2/Xray.html Can i just take this opportunity to say what an absolutely awsome piece of work XRay is, i use it daily!!! Many thanks to John Grden and team!!! keith On 8/16/06, Merrill, Jason [EMAIL PROTECTED] wrote: Excuse

RE: [Flashcoders] [:::] appending html to a var for displaynot workingand code not runnign as expected.

2006-08-15 Thread Keith Reinfeld
(compareAnd 'Text' = +compareAnd(testVar));// true trace(compareOr 'Text' = +compareOr(testVar));// true HTH -Keith http://home.mn.rr.com/keithreinfeld ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive

Re: [Flashcoders] how to set the root directory - swf vs html?

2006-08-09 Thread Keith Salisbury
Not sure, but this might help... BASE - ( . or base directory or URL) Specifies the base directory or URL used to resolve all relative path statements in the Flash Player movie. This attribute is helpful when your Flash Player movies are kept in a different directory from your other files. Used

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

2006-08-04 Thread Keith Salisbury
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 specs of an AS3.0 SWF but I wonder if its possible to create a crude compiler from AS3.0. AS3.0 ouroboros of sorts.

Re: [Flashcoders] XPathAPI problems with wildcard searches

2006-08-04 Thread Keith Salisbury
I suspect you're expecting similar results to using XSLT where you xsl:template match=blah statement bearing in mind this only works when you use the xsl:apply-templates /, which crawls the tree applying the xpath statements. Remember all you statements are relative to the root node that you

Re: [Flashcoders] ActionScript Application Framework

2006-07-19 Thread Keith Salisbury
Ruby, is a (slick) programming language Rails is an application framework... Cake is the same framework for PHP ARP and Cairngorn are also frameworks Ruby on Rails has a number of scripts which will construct the empty application shell for you some similar work has been done in

Re: [Flashcoders] Loading issue: Downloading just stops without reason!

2006-07-16 Thread keith
it by waiting for each asset to load before starting to load another asset. --Keith H -- Marcelo de Moraes Serpa wrote: I´m having a really serious issue with my flash website. I´m using pixlib LibStack to load several library SWF´s at the initial preloader. The problem is that sometimes the loading

RE: [Flashcoders] BitmapData manipulation. Mirror effect.

2006-07-10 Thread Keith Reinfeld
; HTH -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Claudia Barnal Sent: Monday, July 10, 2006 12:04 AM To: flashcoders Subject: [Flashcoders] BitmapData manipulation. Mirror effect. Hi, I'm trying

RE: [Flashcoders] setInterval and loadMovie

2006-07-09 Thread Keith Reinfeld
Use clearInterval(reStartSlides); when you want the interval to stop. -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Flash Mel Sent: Sunday, July 09, 2006 10:04 PM To: Flashcoders mailing list Subject

RE: [Flashcoders] duplicateMovie / setInterval problem

2006-07-02 Thread Keith Reinfeld
, 0xff, 0); mc.beginFill(0x000, 100); mc.moveTo(10, 0); mc.lineTo(10, 0); mc.lineTo(10, 10); mc.lineTo(0, 10); mc.lineTo(0, 0); mc._x = 1; mc._y = 0; mc.endFill(); return mc; } /code HTH -Keith http

RE: [Flashcoders] Timeout from Flash page

2006-05-25 Thread Keith Reinfeld
. -- Watch the wrap -- [code] /* *** *Keith H. Reinfeld* * * *[EMAIL PROTECTED] * *** * Application IdleTimeout. *Usage: *Define a function in your

Re: [Flashcoders] Re: Iterate through instance methods

2006-05-04 Thread Keith Salisbury
are you working with? In ActionScript 3, for...in will only enumerate dynamic properties of an object. You will need to use describeType for static properties and methods. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Keith Salisbury Sent: Wednesday

[Flashcoders] Iterate through instance methods

2006-05-03 Thread Keith Salisbury
Hi, How do i iterate through the public methods of an instanceusing a for in seems to result in nothing ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Re: Iterate through instance methods

2006-05-03 Thread Keith Salisbury
I'm assuming the reason is due to the method existing further up the prototype chain, but even so, is there really no way to discover what (public) methods an instance supports?? On 5/3/06, Keith Salisbury [EMAIL PROTECTED] wrote: Hi, How do i iterate through the public methods of an instance

RE: [Flashcoders] ' and from xml weirdness

2006-05-03 Thread Keith Reinfeld
Moca, What font are you using? Is it a common font or one you might need to embed? Is your TextField set to html = true? Are you using the TextField.htmlText property? In the XML file are you using the CDATA tag in the text node? item![CDATA[This is Keith#039;s #034;favorite#034; topic

RE: [Flashcoders] Zoom effect

2006-04-20 Thread Keith Reinfeld
Have a look at my 'Dynamic Zoom' piece and see if it is what you are looking for (URL below). Click 'Gallery' then select 'Dynamic Zoom' from the 'Effects' menu. -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] Zoom effect

2006-04-20 Thread Keith Reinfeld
Contact me offlist. [EMAIL PROTECTED] -Keith http://home.mn.rr.com/keithreinfeld ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

<    1   2   3   >