[Flashcoders] AS3 InteractiveObject.focusRect property.

2007-04-03 Thread Daniel Freeman
How do I use the InteractiveObject.focusRect property? The documentation is sketchy. I can see that I assign (or get) an Object from it. Setting it to null defaults to the Stage.stageFocusRect setting. But how else can I use focusRect? Send instant messages to your online friends

Re: [Flashcoders] scale 9?

2007-04-03 Thread Dave Mennenoh
Hi Steven - I'm using a vector - a simple rectangle. Paul - thanks for the insight. I've tried a few things now and nothing I do gets the clip to be at the proper size. I'm giving up on it and may use Patrick's suggestion of the Bevel filter. Patrick - I did originally try using bevel, but

Re: [Flashcoders] scale 9?

2007-04-03 Thread Dave Mennenoh
PS - Bevel works fine actually, it was my clip not being located at an integer pixel value that made the bevel look off. Sometimes... Dave - Head Developer www.blurredistinction.com Adobe Community Expert http://www.adobe.com/communities/experts/

[Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
I understand that when instantiating a class you can set the scope where the instance is going to run, but how about when we dont actually instantiate the class on the timeline but we just link the class directly to the items on the stage, how is the scope treated in this case? I assume the class

RE: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Merrill, Jason
Classes don't know their own scope, they are oblivious to anything outside of them, (unless of course you import some other class - then they know what the other class does, but still don't have any scope reference). What are you trying to do? Jason Merrill Bank of America GTO Learning

Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
Hey Jason, All Im trying to do is run some animation inside a movieclip but without instantiating the class. So what I do instead is just add a MovieClip on stage that has a link to a class and it knows exactly what to do rather than having to instantiate it manually. BTW, I read your previous

Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
Oh, and I forgot an important point, the reson why I want to find the scope of the class is because inside the class there are variables that talk to each other and I can have them talk back and forth like this _level0.instance1.myVariable = blah; but this of course wont work when the movie is

Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
So I figured it out or at least I think I did, private var target: myClass; function myClass(){ target = this; } now I can reference to properties within a class without breaking the app. So in the same lines, is there anyway to code the classe so that we don't have to reference to the

RE: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Merrill, Jason
If class has it's own variables, just use them inside the class- but if you want to Extend movieClip and expect it to know about variables outside it's scope, well, that's breaking OOP AFAIK, classes only know about themselves. Instead, you will want to use a central composition class and refer

Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
You are correct, and it all seems clear now and working as expected, the only guy that I cant understand is the Tween class and the way i can pass a refrence of the main class inside it. I have learend that this works myTween.onMotionFinished = Delegate.create(this, myNextFunction); but I am

Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
Correction in my sample code //code sample var playOnce:Boolean = true; myTween.onMotionChanged = function() { if ( (myTween.time .2) playOnce == true) { //correction Delegate.create(this, nextFunction); playOnce = false; }

RE: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Merrill, Jason
myTween.onMotionChanged = function() { if ( (myTween.time .2) playOnce == true) { Delegate.create(scope, resetWin3); Because that's not how delegate works exactly :) - there is no scope address to resetWin3 inside of the tween.onMotionChanged event.

Re: Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread John Mark Hawley
This looks like a lot of very strange stuff is going on in the design of this code. I think you should explain what you want to do at a very high level so we can see if there is a better and simpler way to accomplish it. (I can't figure out where the Delegate mentioned in the subject line is

Re: Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Helmut Granda
In the piece of code that I just sent basically what is happening is this: Start Tween = Tween length 1 sec If it has elapsed .2 seconds then trigger a function And my problem was that once the .2 seconds have happened the function wasnt called since it was inside an If statement inside the

Re: Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Eric Walton
Anyone know how to feed what a visitor is viewing in an iframe into a dynamic list, the iframe will have a search engine built into it? Thanks in advance, Eric Walton 9 / Edub9 To view more about The Artwork of Eric Walton 9 / Edub9 please visit the following: www.hollywoodfineart.com

[Flashcoders] Date.getTime rounded in PocketPC player

2007-04-03 Thread Zárate
Hi there, I'm building a simple benchmark application and I'm using the getTime() method of the Date object to calculate the time elapsed. No problems so far in the PC, but when I test it in the PDA (Pocket PC 7 player) I'm finding that the last 3 digits are ALWAYS 000. It seems pretty obvious

RE: Re: [Flashcoders] Delegate Class Scoping self instantiated

2007-04-03 Thread Merrill, Jason
Anyone know how to feed what a visitor is viewing in an iframe into a dynamic list, the iframe will have a search engine built into it? Wrong thread, but seems you could use External Interface with Javscript communication. Will require some coding both on the HTML page and the flash file.

[Flashcoders] locking folders in the library of your .fla

2007-04-03 Thread Lolo Valdivia
I was just wondering… Is there a way to lock folders inside a library of your .fla file? I know this is just minor but sometimes when you copy and paste movie clips from different files, and yes you are supposed to make sure you paste it outside any folders not to overwrite anything which

Re: [Flashcoders] Date.getTime rounded in PocketPC player

2007-04-03 Thread Dave Mennenoh
I don't have any suggestions regarding the less accurate timing mechanism on the PDA, but I'd suggest this: Instead of timing how long it takes to do something - maybe you can do something x times in say 10 seconds. So instead of the speed via time, you get the speed via number of loop

[Flashcoders] eolas fix for IE7

2007-04-03 Thread Matthew Ganz
hi. i've tried implementing the eolas fix using the flashobject.js method and swfobject.js method and they both work for IE6 but not for IE7. is there a different fix needed for IE7? thanks. -- matt. ___ Flashcoders@chattyfig.figleaf.com To change

Re: [Flashcoders] Events for custom classes?

2007-04-03 Thread Helmut Granda
On 4/3/07, Helmut Granda [EMAIL PROTECTED] wrote: Jason, Were you able to figure this out exactly the way you wanted it? -h On 2/16/07, Merrill, Jason [EMAIL PROTECTED] wrote: Ah - nevermind - figured out I had removed the scope to my webservice and forgot to put it back in. Delegate

RE: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Adrian Lynch
I'm using it and it works. Got any code to have a look at. Maybe you're using it differently. Adrian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Matthew Ganz Sent: 03 April 2007 17:20 To: Flashcoders mailing list Subject: [Flashcoders] eolas fix for IE7

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread eka
Hello :) you use the last version of SWFObject ? (1.5) http://blog.deconcept.com/swfobject/ EKA+ :) 2007/4/3, Adrian Lynch [EMAIL PROTECTED]: I'm using it and it works. Got any code to have a look at. Maybe you're using it differently. Adrian -Original Message- From: [EMAIL

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Duncan Reid
I noticed that too Matt, works in FF but not IE locally, try putting it on the webserver and testing it again, should work. On 4/3/07, Matthew Ganz [EMAIL PROTECTED] wrote: hi. i've tried implementing the eolas fix using the flashobject.js method and swfobject.js method and they both work

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Matthew Ganz
my foolish mistake. i only had the swfobject.js file and i didn't put the swfobject_source.js file into the 'source' directory as well as all the other expressInstall files that are included in the fix. it's working now. thanks. matt. - Original Message - From: Adrian Lynch [EMAIL

RE: [Flashcoders] Events for custom classes?

2007-04-03 Thread Merrill, Jason
Actually, I had been meaning to post again because I had lost my code for getting EventDispatcher working between two classes. Someone posted a response here and I lost it, as well as my code that was working. if anyone can post again on how to get one class to dispatch a CUSTOM event and get

Re: [Flashcoders] Date.getTime rounded in PocketPC player

2007-04-03 Thread Zárate
Yep, that might be another way of doing it, but i'd like to know why, apparently, the PocketPC player doesn't do what's supposed to do as described in the docs. Unless I am doing something wrong, I think this is a bug that should be fixed. While doing so the docs should be updated to warn

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Geoff Stearns
even older versions should work fine (i think we were testing it in ie7 all the way back to 1.3 or so) - but using the very latest is always a good idea. On Apr 3, 2007, at 12:44 PM, eka wrote: Hello :) you use the last version of SWFObject ? (1.5) http://blog.deconcept.com/swfobject/

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Matthew Ganz
actually, all of a sudden it's not working again. here's the code i have on my html page: html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en head meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 / titlehome/title script type=text/javascript

RE: [Flashcoders] Events for custom classes?

2007-04-03 Thread David Ngo
You'll need a reference of the dispatching class in your listener class to receive events: // broadcasting class import mx.events.EventDispatcher; class EventClass { // EventDispatcher methods public var addEventListener:Function; public var removeEventListener:Function;

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Geoff Stearns
you don't need anything in the /source folder - it's just there so you can see the code in an uncompressed way, or if you want to modify the expressinstall.swf files. you only need swfobject.js and (optionally) expressinstall.swf On Apr 3, 2007, at 12:48 PM, Matthew Ganz wrote: my foolish

Re: [Flashcoders] Events for custom classes?

2007-04-03 Thread john robinson
Is this what you're looking for? http://www.adobe.com/devnet/flash/articles/creating_events.html john On Apr 3, 2007, at 12:46 PM, Merrill, Jason wrote: Actually, I had been meaning to post again because I had lost my code for getting EventDispatcher working between two classes. Someone

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Geoff Stearns
that code looks fine to me, are you testing this on a web server? IE has different security restrictions for local files vs. internet based files, so it's always best to test it on a web server. On Apr 3, 2007, at 1:37 PM, Matthew Ganz wrote: actually, all of a sudden it's not working

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Claus Wahlers
Matthew Ganz wrote: actually, all of a sudden it's not working again. It seems your Flash Player install in IE7 is corrupt. See this blog post for details: http://tinyurl.com/y9lvas I had the same problem a while back, and uninstalling/reinstalling the Flash Player did the trick.

[Flashcoders] Changing keyframe interval in a FLV

2007-04-03 Thread leolea
Hi, I need to have a smaller keyframe interval on my FLV files. Does anyone know a tool to update a FLV keyframe interval without re-encoding it ? Thanks ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

RE: [Flashcoders] Events for custom classes?

2007-04-03 Thread Merrill, Jason
Excellent, thanks David Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Ngo Sent: Tuesday, April 03, 2007 1:46 PM To:

Re: [Flashcoders] Events for custom classes?

2007-04-03 Thread Muzak
Here's a stripped down version (i just left in the methods that dispatch en event) of my Form base class that uses EventDispatcher. This class is usually extended by other classes (in an ARP-type framework). import mx.events.EventDispatcher; class com.muzakdeezign.core.Form extends MovieClip {

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Muzak
Where's the css for the flashcontent div? - Original Message - From: Matthew Ganz [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 03, 2007 7:37 PM Subject: Re: [Flashcoders] eolas fix for IE7 actually, all of a sudden it's not working again. here's the

RE: [Flashcoders] Events for custom classes?

2007-04-03 Thread David Ngo
Ick. I totally forgot to initialize EventDispatcher. Constructor for EventClass should be: public function EventClass() { EventDispatcher.initialize(this); } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Ngo Sent: Tuesday, April 03, 2007

RE: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Steven Sacks | BLITZ
Just in case you were unaware, there's a forum on SWFObject site where you can research these issues (I'm sure somebody had the same issue you're having at some time) and you can post questions. I think you'll have better luck there troubleshooting your issues. :)

RE: [Flashcoders] Events for custom classes?

2007-04-03 Thread Merrill, Jason
great - thanks. Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of john robinson Sent: Tuesday, April 03, 2007 1:48 PM To: flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Flash CS3 Announced

2007-04-03 Thread Charles Parcell
To be fair, it is your opinion that it is not right, unless you have a source that states otherwise. I vividly recall hearing one of the Adobe folks make the statement during a presentation online. I will add that this was a good 6 months ago (thus in beta) and could be a feature extent which

Re: [Flashcoders] Events for custom classes?

2007-04-03 Thread eka
Hello :) if you want test an AS2 EventDispatcher implementation based on the W3C event model DOM 2/3 (the AS3 event model is based on the same dom) you can use my personal event model in my framework VEGAS : - http://vegas.riaforge.org/ - http://osflash.org/vegas Install my framework in

[Flashcoders] simple code- should work but is not.

2007-04-03 Thread Thomas Collins
Hi all, this is my first post on flashcoders. i think this is a simple fix and everything is basic, so i can't figure out why it isn't working. my code on the root timeline in the actions layer (frame 21) is simply: ** stop(); wine_mc.wineback_btn.onPress = function() { trace(hello); }

RE: [Flashcoders] Events for custom classes?

2007-04-03 Thread Merrill, Jason
Yes - thanks Muzak - I can't speak for Helmut, but I've got enough to go on now. Thanks, Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Muzak Sent:

Re: [Flashcoders] Events for custom classes?

2007-04-03 Thread Helmut Granda
Thanks for this sample David, Just a small correction: public function ListenerClass(eventClass:MyEventClass) should be public function ListenerClass(eventClass:EventClass); Correct? -h On 4/3/07, David Ngo [EMAIL PROTECTED] wrote: You'll need a reference of the dispatching class in

[Flashcoders] Flash 9 CS3 - Key questions

2007-04-03 Thread Austin Kottke
Does anyone know if flash 9 cs3 will support scale 9 for actual bitmaps, as opposed to just vector objects. Similar to how flex builder can do this except its precompiled at runtime. Also, is there support for mxml in flash 9 cs3? What is the integration between flex builder and flash 9 cs3?

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Matthew Ganz
it worked after i uninstalled/reinstalled until i cleared the cache and then it stopped working again. steven - i'll check that forum, thanks. muzak - the css for the flashcontent div? all i have is what is there. thanks. -- matt. - Original Message - From: Claus Wahlers [EMAIL

[Flashcoders] If statements combined into one

2007-04-03 Thread Helmut Granda
insted of : bigFunction() { once1 = true; if (once1 == true) { dothisonce(); once1 = false; } once2 = true; if (once2 == true) { dothisonce(); once2 = false; } once3 = true; if (once3 == true) { dothisonce(); once3 = false; } } What I am trying to do is take the if statements out into

RE: [Flashcoders] simple code- should work but is not.

2007-04-03 Thread Merrill, Jason
I would move this to the Flashnewbies list, but your problem is in the wine_mc there is no wineback_btn in the first frame, thus Flash can't find it to assign the onPress. In fact, I don't see wineback_btn anywhere in wine_mc - only in the library. Jason Merrill Bank of America GTO Learning

[Flashcoders] Question: FMS 2 and CMS managed FLV files

2007-04-03 Thread Jon Bradley
I've got a bit of a question that I'm trying to wrap my head around. Can Flash Media Server 2 take dynamic paths to FLV content? We're working within the constraints of a pretty high end post production solution that will end up storing many hours of video content, probably in MXF format in

Re: [Flashcoders] simple code- should work but is not.

2007-04-03 Thread Jon Bradley
On Apr 3, 2007, at 2:34 PM, Thomas Collins wrote: might anyone know why my wineback_btn is not registering the onPress? i know for sure that my playhead reaches frame 21 where the code is. instance names are specified Are you disabling trace during publishing? That's what I'd check first

Re: [Flashcoders] Events for custom classes?

2007-04-03 Thread Helmut Granda
Yeah, same here, trying to digest everything now that I have my mouth full :). Thanks again everyone! On 4/3/07, Merrill, Jason [EMAIL PROTECTED] wrote: Yes - thanks Muzak - I can't speak for Helmut, but I've got enough to go on now. Thanks, Jason Merrill Bank of America GTO Learning

Re: [Flashcoders] simple code- should work but is not.

2007-04-03 Thread Joshua Sera
On frame 21, trace(wine back btn:+wine_mc.wineback_btn); This will tell you 1) If the playhead actually DOES reach frame 21 2) If the button in question is actually where you think it is. Frequently simple problems like this are because you've forgotten to put a symbol where you thought you put

RE: [Flashcoders] Events for custom classes?

2007-04-03 Thread David Ngo
Yes, that would be correct. I initially named them MyEvent/ListenerClass but changed it halfway through writing the email. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Tuesday, April 03, 2007 11:54 AM To:

RE: [Flashcoders] Changing keyframe interval in a FLV

2007-04-03 Thread Hairy Dog Digital
Even if there is a tool, I don't think it would make a difference. My guess is that FLV video is handled like any other video with regards to keyframes. That is, the tween frames only contain content that has changed, everything else is transparent. A keyframe, contains all of the information.

[Flashcoders] Preloading FLV with NetStream

2007-04-03 Thread leolea
Hi, Is it possible, using the NetStream object, to preload a FLV. I have multiple FLV videos that I need to play back-to-back smoothly. I want all of them to be preloaded so that when I start playback it doesn't buffer or lag in any way. I can't seem to find a way so my next alternative would

Re: [Flashcoders] Flash 9 CS3 - Key questions

2007-04-03 Thread Zeh Fernando
Does anyone know if flash 9 cs3 will support scale 9 for actual bitmaps, as opposed to just vector objects. Similar to how flex builder can do this except its precompiled at runtime. Just as a quick note, you *can* use bitmaps with scale9, most of the time (that is, as long as it's static).

[Flashcoders] Job post: Flash-based Learning Management System project

2007-04-03 Thread Jon C. Rosen
I'm an instructional designer, based the Los Angeles area, developing a Learning Management System (LMS), Course Authoring Management Tool (CMS), and web portal for a prominent niche university. This project specifically entails building a state-of-the-art streaming GUI, a Student Records and CMS

Re: [Flashcoders] Flash 9 CS3 - Key questions

2007-04-03 Thread Austin Kottke
Dear Zeh, Yea, and I've done it before. The way of doing it in flex is a lot more elegant and extremely useful. I just want to make sure that if someone wants to do bitmaps instead of vector they can. for flash 9. Sometimes its just such a pain especially when you have major gradiented

[Flashcoders] Hyperlinks in HTML Enabled Text Field: Accessible?

2007-04-03 Thread Jer Brand
I think I've coded myself into a corner on this, but I'm hoping someone's either found a solution or knows first hand that I'm out of luck. The project I'm working on requires that the user/developer of the swf be able to supply a blurb of text with a list of 1 to n links (text and url). My swf

[Flashcoders] Strong Flash Developer needed for Role at salesforce.com in SF Bay Area

2007-04-03 Thread Bryan Ebzery
I am looking for an experienced Flash developer who is fluent in AS 2.0/3.0 to assist in the delivery of video and the flash experience overall on our site. I have been lately moving in more of a motion design direction and need someone with the right skills and experience to fill out the team.

RE: [Flashcoders] Hyperlinks in HTML Enabled Text Field: Accessible?

2007-04-03 Thread Michael A. Jordan
HTML text-fields are not natively accessible. You'll need to create a proxy movieclip for each link to receive keyboard events. An example in AS2 using CSS and XPath: http://proto.layer51.com/d.aspx?f=1430 In AS1 using prototype methods: http://proto.layer51.com/d.aspx?f=1209 In

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Muzak
Matthew, You'll need some css to properly display the swf at 100% width and height. Check the source of this page: http://blog.deconcept.com/swfobject/fullpage.html And check out the other samples: http://blog.deconcept.com/swfobject/#examples regards, Muzak - Original Message - From:

RE: [Flashcoders] Preloading FLV with NetStream

2007-04-03 Thread Jack Doyle
Yep, you can preload FLVs with the NetStream. Check out the PreloadAssetManager class which will handle it all for you: http://www.greensock.com/ActionScript/PreloadAssetManager Jack -Original Message- Date: Tue, 03 Apr 2007 16:04:35 -0400 From: leolea [EMAIL PROTECTED] Subject:

Re: [Flashcoders] Flash CS3 Announced

2007-04-03 Thread Muzak
- Original Message - From: Charles Parcell [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 03, 2007 8:21 PM Subject: Re: [Flashcoders] Flash CS3 Announced To be fair, it is your opinion that it is not right, unless you have a source that states otherwise.

[Flashcoders] Flash and video optimisation ....

2007-04-03 Thread Stephen Ford
Is there any point using a third-party application to optimize video for Flash.Or is it best just to use the video import feature of the Flash IDE.The delivery technique I'm using is external progressive download.Do I need (do you recommend) any apps other than Flash itself to prepare/optimise

RE: [Flashcoders] Flash and video optimisation ....

2007-04-03 Thread Kerem İşeri
Hi, in my opinion, its better to compress the (avi or mov) video on the third party software like Soreson order to reduce the file size but keep the quality, and then convert info flv inside flash. I couldnt find any software directly converts avi to flv better then flash. I am open for other

Re: [Flashcoders] Preloading FLV with NetStream

2007-04-03 Thread leolea
Sweet! Looks exactly like the thing I need. Gonna give it a try. Thank you very much. On 4/3/07 6:42 PM, Jack Doyle [EMAIL PROTECTED] wrote: Yep, you can preload FLVs with the NetStream. Check out the PreloadAssetManager class which will handle it all for you:

Re: [Flashcoders] Flash and video optimisation ....

2007-04-03 Thread leolea
3rd-party softare, such as Sorenson Squeeze, offer VBR - variable bitrate - which means the bitrate will be higher only if required (high motion, fast movements). You can also adjust parameters such as brightness/contrast and de-interlace the source video, which produces better looking results.

Re: [Flashcoders] Question: FMS 2 and CMS managed FLV files

2007-04-03 Thread john robinson
On Apr 3, 2007, at 3:41 PM, Jon Bradley wrote: I've got a bit of a question that I'm trying to wrap my head around. Can Flash Media Server 2 take dynamic paths to FLV content? As long as the path exists, then yeah it should be fine. I'm not sure if I understand your question correctly

[Flashcoders] Video delivery process ...

2007-04-03 Thread Stephen Ford
Hi,How do I preload video when the target player is 7?.The delivery technique I'm using is progressive download.Should I be using a proxy SWF to load an external FLV (because the Video class in Flash doesn't have anyway of polling the size of an external FLV, or how much of that FLV is loaded -