[Flashcoders] closed caption options

2005-10-19 Thread Josh Gormley
it with the streaming server, but do those techniques transfer over to linked FLVs? thanks, Josh Gormley ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Passing param to cuePoint object

2005-10-21 Thread Josh Gormley
Hi Steve, I'm actually just starting out my research into how to use Flash 8's embedded cuepoints to handle closed captioning. Needless to say, documentation is rather weak right now. Below is my working code for displaying the captions that I embedded in the FLV file using the Flash 8

Re: [Flashcoders] Not getting my own posts

2005-10-21 Thread Josh Gormley
GMail users do not (by default, at least) receive emails from themselves. You may be able to configure this, but I'm not sure (I don't use GMail). Josh On Oct 21, 2005, at 5:01 PM, Eric E. Dolecki wrote: Even though the list is set to send me my own posts, I am not getting them...

Re: [Flashcoders] XML processing instructions

2005-11-04 Thread Josh Gormley
thanks for the quick response, but unfortunately it didn't work. if I add a trace(this) right after the this.onLoad(true) line, I only get the XML structure up to the point of the processing instructions. Here is the code I'm using: myXML = new XML(); myXML.ignoreWhite = true;

Re: [Flashcoders] XML processing instructions

2005-11-04 Thread Josh Gormley
I guess I could use the string that is passed to the onData function and remove any processing tags before the string is parsed as XML Is that what you were suggesting? Josh On Nov 4, 2005, at 3:44 PM, JesterXL wrote: Use onData instead of onLoad. my_xml = new XML(); my_xml.onData =

[Flashcoders] on2 VP6 encoding question

2005-11-11 Thread Josh Gormley
Does anybody know how the Flash 8 video encoder determines when to insert keyframes if you set the value to automatic? All of the other encoding software I've used requires that you specify a keyframe setting, so this automatic setting is new to me. Does the encoder somehow intelligently

[Flashcoders] Flash 8 and SCORM conformance test suite

2005-11-18 Thread Josh Gormley
This is a question for anybody who builds SCORM compliant courses using Flash: Now that Flash 8 restricts the use of calls to Javascript while the file is being run locally, how can you test your course using the SCORM conformance test suite (version 1.2.7)? - In order to use the test

Re: [Flashcoders] Flash 8 and SCORM conformance test suite

2005-11-21 Thread Josh Gormley
Hi Brooks, That's some good info, I didn't realize that file even existed. I also figured out an alternate solution. Instead of running the test suite from my local drive, I simply uploaded it to a web server and ran it from there. The only modification I had to make was to remove a

[Flashcoders] getTextExtent and embedded images

2006-01-05 Thread Josh Gormley
I'm dynamically populating a textField with HTML and would like to get the entire height of the textField, including embedded images. Is there a method for determining the height of a textField that includes an embedded image? Both the textEntent and _height values do not take the image

Re: [Flashcoders] getTextExtent and embedded images [RESOLVED]

2006-01-05 Thread Josh Gormley
the image has loaded and then continuing on with my code. Josh On Jan 5, 2006, at 11:26 AM, Josh Gormley wrote: I'm dynamically populating a textField with HTML and would like to get the entire height of the textField, including embedded images. Is there a method for determining the height

Re: [Flashcoders] input text scrolls when pressing right arrow key

2006-01-06 Thread Josh Gormley
Are you specifying a width for this text field? I can't duplicate this on my machine (Mac G5), but I'm guessing it's because you're not setting a width and you also have autosize set to left. Changing either of those parameters should do the trick. Josh On Jan 6, 2006, at 5:19 AM, fla

Re: [Flashcoders] xml whitespace problem

2006-01-24 Thread Josh Gormley
I had this exact problem just last week. I couldn't figure out a solution, so I simply removed all carriage returns and tabs from the raw XML data. Here's the function that I wrote to clean things up. Simply add on onData event handler to your XML loading and then call this function