Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread natalia Vikhtinskaya
Thank you very much for help. I used this for two different flv videos.Ichecked status for both: For one I have this trace NetStream.Play.Start NetStream.Buffer.Full NetStream.Buffer.Flush NetStream.Buffer.Empty and for another NetStream.Play.Start NetStream.Buffer.Full NetStream.Buffer.Flu

[Flashcoders] Information about speed connection in Japan

2007-01-18 Thread Flap Flap
Hi there, Did some one know where to find the average speed connection in Japan (and other countries). Thanks for any clue. -- Flapflap http://www.kilooctet.net (Dev Blog Flash Fr) ___ Flashcoders@chattyfig.figleaf.com To change your subscription opti

[Flashcoders] OpenSource System layer for FlashPlayer7 for PocketPC

2007-01-18 Thread Matthias Dittgen
Hello, does someone know of a systemlayer api for the Flashplayer7 that exists for PocketPC (Windows mobile 2003 and WindowsCE 5)? I am looking for something like what Screenweaver is for Actionscript/FlashPlayer on Windows, that makes it possible to a) run applications standalone (not in pocket

RE: [Flashcoders] OpenSource System layer for FlashPlayer7 for PocketPC

2007-01-18 Thread Nick Weekes
Bit of a guess Matthias, but what about the .net compact framework? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthias Dittgen Sent: 18 January 2007 10:37 To: Flashcoders mailing list; Open Source Flash Mailing List Subject: [Flashcoders] OpenSource

Re: [Flashcoders] OpenSource System layer for FlashPlayer7 for PocketPC

2007-01-18 Thread Matthias Dittgen
Hello Nick, seems like I hava to take a closer look at .NET. I was hoping, someone has done that before. ;-) Thanks, Matthias 2007/1/18, Nick Weekes <[EMAIL PROTECTED]>: Bit of a guess Matthias, but what about the .net compact framework? -Original Message- From: [EMAIL PROTECTED] [mai

RE: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Karina Steffens
Privyet Natasha, Here's how I solved it: Private var movie_flv:mx.controls.MediaDisplay; private var t:Number; private var lastCheck:Number; Private var play_btn //ToggleButton Private function checkStatus(){ if (play_btn.selected && movie_flv.playheadTime && movie_flv.playheadT

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Hans Wichman
Hi, the video might not be correctly encoded, ie from meta data etc. And I think that in some player version (might still be the case), the stop is triggered before the buffer empty. In other words if you have a buffer set to 5 seconds, the video will play on for 5 seconds after receiving a stop s

RE: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Karina Steffens
Isn't it amazing that Adobe/MM never bothered setting up a simple onStopMovie event?... > -Original Message- > From: Hans Wichman [mailto:[EMAIL PROTECTED] > Sent: 18 January 2007 12:12 > To: Flashcoders mailing list > Subject: Re: [Flashcoders] how to know that thae video is finished? >

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Muzak
Flash 8 has a new (and improved) Video component mx.controls.MediaDisplay no longer exists in Flash 8 and is replaced with mx.video.FLVPlayback http://livedocs.macromedia.com/flash/8/main/3477.html FLVPlayback component has a "complete" event: http://livedocs.macromedia.com/flash/8/main/3

Re: [Flashcoders] XML.onLoad peculiarity - SOLVED

2007-01-18 Thread Miles Thompson
It is always tempting to blame the software that displays the error, or appears to misbehave, namely Flash. That was not the case in this instance. The new hosting company had a configuration different than the old one, and some browsers were not accepting the stream of data correctly. The c

Re: [Flashcoders] how to know that thae video is finished? using FLVPlayback

2007-01-18 Thread Helen Triolo
The MediaPlayback components do still exist -- they're just listed in the Flash 6-7 folder in the components window. I wanted to use FLVPlayback for a recent video project but I can't get it to display the streamed videos that are working fine with the MediaPlayback component. For the latter,

RE: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Karina Steffens
Hi Muzak, Sounds like this new component might be a better option for Natalia's problem. Karina > -Original Message- > From: Muzak [mailto:[EMAIL PROTECTED] > Sent: 18 January 2007 12:43 > To: Flashcoders mailing list > Subject: Re: [Flashcoders] how to know that thae video is finished?

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread natalia Vikhtinskaya
Sorry, maybe I do something wrong but I can not get playheadTime var movie_flv:mx.controls.MediaDisplay; var nc:NetConnection=new NetConnection(); nc.connect(null); var ns:NetStream=new NetStream(nc); ns.setBufferTime(3); ns.onStatus=function(info){ if (info.code=="NetStream

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread natalia Vikhtinskaya
Sorry, maybe I do something wrong but I can not get PlayHead Time var movie_flv:mx.controls.MediaDisplay; var nc:NetConnection=new NetConnection(); nc.connect(null); var ns:NetStream=new NetStream(nc); ns.setBufferTime(3); ns.onStatus=function(info){ if (info.code=="NetStrea

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Helen Triolo
If you're using a NetStream object, then I believe you want ns.time, not playheadTime. Helen natalia Vikhtinskaya wrote: Sorry, maybe I do something wrong but I can not get playheadTime var movie_flv:mx.controls.MediaDisplay; var nc:NetConnection=new NetConnection(); nc.connect(null);

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread natalia Vikhtinskaya
ok I tryed function videoStatus(){ trace(ns.time==duration) } it is always false even when video is finished. 2007/1/18, Helen Triolo <[EMAIL PROTECTED]>: If you're using a NetStream object, then I believe you want ns.time, not playheadTime. Helen natalia Vikhtinskay

RE: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Karina Steffens
Sorry, it's bee a while since I wrote that script, so I forgot to mention that movie_flv in my code is an AS2 Video Playback component that has the movie attached to it instead of a simple movie clip. It's located in the components panel. You might want to try theVideo.playheadTime instead, but if

[Flashcoders] AS3 embedded assets and preloading?

2007-01-18 Thread Sascha
Can somebody enlighten me? How do you use AS3 embedded assets with a preloader (without the Flash IDE)? In AS2/Flash8 and below we could put a preloader on frame1 of the main timeline and put all the heavy assets from the library on frame2 or beyond. In AS3 I wrote a custom Preloader class that ex

[Flashcoders] GlowFilter and masks

2007-01-18 Thread Niclas Åberg
Hi, I want to use the GlowFilter on a movie clip containing a mask. However, when I apply it he filter behaves very weirdly and "crops" the mask out of the clip. It works fine for move clips without masks inside them. Does anyone know what I'm talking about, and know of a workaround or a cus

[Flashcoders] JOB TORONTO ON. CANADA - fulltime flash developer

2007-01-18 Thread Tim Arney
Dashboard is currently seeking fulltime flash developer(s). If your interested or would like more info contact me with your resume and links. //Tim Arney Studio Manager [EMAIL PROTECTED] www.dashboard.ca ___ Flashcoders@chattyfig.figleaf.com To cha

Re: [Flashcoders] OT: Flex & instances

2007-01-18 Thread Farid Shahlavi
Jason, Well looks like this Reflection class can only handle components but if you wanted to use your own, you could get a handle on the image once its loaded by listening to the complete event like so: private function onImageLoadComplete(event:Event):void { Alert.sho

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread natalia Vikhtinskaya
So as I understand no way to determine that video is finished with NetStream object? 2007/1/18, Karina Steffens <[EMAIL PROTECTED]>: Sorry, it's bee a while since I wrote that script, so I forgot to mention that movie_flv in my code is an AS2 Video Playback component that has the movie attached

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Helen Triolo
Does ns.time trace something close to duration, just not exactly equal at the end? If so, just check for >= duration - somesmallamount (maybe to do with the buffer size) instead of ==. Is this a progressive or streamed flv, btw? I dug up this old flashcomm post from Brandon Krakowsky in case

Re: [Flashcoders] AS2 best practice question - attachMovie or static create method

2007-01-18 Thread Andy Herrman
My preference is actually: e) Don't extend Movie Clip. :) Basically, I prefer to have a class encapsulate a movie clip. Either have the constructor take a reference to an empty movie clip for it to use as its UI area, or have it take in a reference to the MC that should be its parent and have i

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread natalia Vikhtinskaya
yes very close When the video is finished ns.time=228.528 and duration=228.66; So ns.time>=duration-0.5 give me good result. I don't know how flv was created. So this way allow me to find what I need. Thank you very much. 2007/1/18, Helen Triolo <[EMAIL PROTECTED]>: Does ns.time trace somethin

Re: [Flashcoders] AS2 best practice question - attachMovie or static create method

2007-01-18 Thread Ian Thomas
On 1/17/07, Matthias Dittgen <[EMAIL PROTECTED]> wrote: And is there a way to automate the writing of SymbolName,SymbolLinked and create for all my classes which extend MovieClip? Personally, I use b) (for clips which aren't in the library). There's no way to automate the writing of symbolN

Re: [Flashcoders] AS2 best practice question - attachMovie or static create method

2007-01-18 Thread Ian Thomas
*sigh* The line: return MyClip(ClipUtils.createCodeClip(" com.mycompany ,MyClip",parent,initObj,depth,inst)); should of course have read: return MyClip(ClipUtils.createCodeClip("com.mycompany.MyClip ",parent,initObj,depth,inst)); Sorry! Ian On 1/18/07, Ian Thomas <[EMAIL PROTECTED]> wrote:

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Duncan Reid
I think the onComplete is only available via FMS, i think. There are a bunch of threads in the archives about this scenario but they can be difficult to find. Brian Lesser has some really good information on his site: http://echo.ryerson.ca/textPublisher/index.html /** * This function is assign

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Burak KALAYCI
Hi, ns.time returns only timestamps of actual tags in a FLV, which means it will never return the duration but only the timestamp of the last tag: http://www.asvguy.com/2005/03/position_of_the.html Best regards, Burak www.asvguy.com Burak KALAYCI, Manitu Group http://www.buraks.com http://www.ma

[Flashcoders] Eclipse and CVS

2007-01-18 Thread Matthew Ganz
hi. i'm having a problem with CVS in Eclipse. when i choose a project and 'tag as version', i can see it in my versions folder. the problem is that other members of my team cannot. we use the same connection type, our own usernames and passwords, the same host, and the same repository paths.

[Flashcoders] Specifying contentPath for FLVPlayer

2007-01-18 Thread Helen Triolo
Realized this should have its own thread instead of hijacking natalia's: I can't get the FLVPlayback component to display the streamed videos that are working fine with the MediaPlayback component. For the latter, I use setMedia("rtmp:/LT/myfile.flv") but there is no setMedia command for FL

Re: [Flashcoders] GlowFilter and masks

2007-01-18 Thread slangeberg
I think I had luck fixing this by setting the mask through code, rather than in the timeline. -Scott On 1/18/07, Niclas Åberg <[EMAIL PROTECTED]> wrote: Hi, I want to use the GlowFilter on a movie clip containing a mask. However, when I apply it he filter behaves very weirdly and "crops" the

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread natalia Vikhtinskaya
All these codes work well if ns.onStatus==NetStream.Play.Start. But I have example of video that plays and has the end but never show this status. I checked and for example function endOfVideoDetector always give me false even if the video is over. So only withinNSecondsOfEnd work correctly. 200

Re: [Flashcoders] how to know that thae video is finished?

2007-01-18 Thread Burak KALAYCI
Whatever works for you is good. My point was this: Instead of duration, you can compare ns.time to the exact timestamp of the last tag (Of course you need to have that value first). Best regards, Burak www.asvguy.com - Original Message - From: "natalia Vikhtinskaya" <[EMAIL PROTECTED]> T

[Flashcoders] Deploying Standalone Apps with Flex2

2007-01-18 Thread August Gresens
With the Flash IDE, one can publish a standalone "projector" - native executable. This seems to me to just be the standalone player with a SWF file embedded in it. Does anyone know how one would accomplish the same thing with Flex? Can this be done from the Flex IDE or is there a special tool?

Re: [Flashcoders] Deploying Standalone Apps with Flex2

2007-01-18 Thread Troy Rollins
On Jan 18, 2007, at 12:04 PM, August Gresens wrote: Does anyone know how one would accomplish the same thing with Flex? Can this be done from the Flex IDE or is there a special tool? Zinc can create executables from Flex swfs. Not sure what other tools do. -- Troy RPSystems, Ltd. http:/

RE: [Flashcoders] Specifying contentPath for FLVPlayer

2007-01-18 Thread Karina Steffens
Helen, have you set the FlvPlayback to autoPlay, or told it to play manually? I'm looking at the docs and there seem to be a few ways to load the videos: my_FLVPlybk.contentPath = "rtmp://my_servername/my_application/stream.flv"; my_FLVplybk.load(contentPath:String[, totalTime:Number, isLive:Boo

Re: [Flashcoders] Deploying Standalone Apps with Flex2

2007-01-18 Thread R�kos Attila
In the player folder of your Flex install there is a stand-alone Flash player, which can create projectors (File|Create Projector). And there are some more options including Zinc and Screenweaver HX. Attila ___ Flashcoders@chattyfig.figleaf.com To cha

Re: [Flashcoders] Deploying Standalone Apps with Flex2

2007-01-18 Thread Derek Vadneau
Just like the Flash Players before 9, you can create a standalone projector EXE using the Flash standalone player. Double-click your SWF file. When it opens in the standalone player, click File > Create Projector... Then select the name and location to where you want to save the EXE file. The

Re: [Flashcoders] Deploying Standalone Apps with Flex2

2007-01-18 Thread August Gresens
That's it! Thanks, August On 1/18/07, Rákos Attila <[EMAIL PROTECTED]> wrote: In the player folder of your Flex install there is a stand-alone Flash player, which can create projectors (File|Create Projector). And there are some more options including Zinc and Screenweaver HX. Attila ___

Re: [Flashcoders] Deploying Standalone Apps with Flex2

2007-01-18 Thread August Gresens
Thanks again, just what I was looking for.. AG On 1/18/07, Derek Vadneau <[EMAIL PROTECTED]> wrote: Just like the Flash Players before 9, you can create a standalone projector EXE using the Flash standalone player. Double-click your SWF file. When it opens in the standalone player, click File >

Re: [Flashcoders] Specifying contentPath for FLVPlayer

2007-01-18 Thread Helen Triolo
Hi Karina, Thanks for the suggestions. I saw those different options and can't even get the video to show up (let alone play or pause). I just don't know what the right contentPath could be. This is my simplest test case, with input textfield filepath, movieclip go, FLVPlayback component f

[Flashcoders] Q;3D vector based site...how done?

2007-01-18 Thread moveup
Ok, don't normally go 'oh' when seeing flash sites, but I like the novel way that vector graphics have been used within a 3d environment. This is great stuff...can anyone tell me how? Is there a 3d rendering engine behind everything? http://lab.mathieu-badimon.com/ [e] jbach at bitstream

Re: [Flashcoders] Q;3D vector based site...how done?

2007-01-18 Thread eka
Hello :) i don't know the 3D engine used in this application but 1 - you can try to test the openSource 3D framework Sandy for example : http://www.flashsandy.org/ 2 - You can search in the robertpenner web site (3D example) : http://robertpenner.com/index2.html 3 - You can search in the lab o

Re: [Flashcoders] Q;3D vector based site...how done?

2007-01-18 Thread haVana
On 1/18/07, eka <[EMAIL PROTECTED]> wrote: 1 - you can try to test the openSource 3D framework Sandy for example : http://www.flashsandy.org/ 2 - You can search in the robertpenner web site (3D example) : http://robertpenner.com/index2.html 3 - You can search in the lab of Andre Mitchelle : h

Re: [Flashcoders] Q;3D vector based site...how done?

2007-01-18 Thread eka
Hello :) The warped text used the technik of Peter Hall ( http://www.peterjoel.com/blog/) with this tools to creates fx on a movieclip draw api :) EKA+ :) 2007/1/18, eka <[EMAIL PROTECTED]>: Hello :) i don't know the 3D engine used in this application but 1 - you can try to test the openS

Re: [Flashcoders] Q;3D vector based site...how done?

2007-01-18 Thread eka
Hello :) the best ? it's a very good project yes but the best ? ;) For the moment this framework is in a private beta... for me an openSource library must be public between the version 0 and the final version ;) For the moment i have not read the scripts... i prefere wait to speak about this libr

Re: [Flashcoders] Q;3D vector based site...how done?

2007-01-18 Thread haVana
On 1/18/07, eka <[EMAIL PROTECTED]> wrote: the best ? it's a very good project yes but the best ? ;) didn't want to offend anybody :) For the moment this framework is in a private beta... for me an openSource library must be public between the version 0 and the final version ;) For the mo

[Flashcoders] RE: FLVPLAYBACK COMPONENT

2007-01-18 Thread Dan Styles
I had a problem like this recently Try without the .flv part... you may not need the extension when using Flash Media Server also check this: http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=578&threadid=1228512&enterthread=y and this: http://livedocs.macromedia.com/f

Re: [Flashcoders] how to know that thae video is finished? usingFLVPlayback

2007-01-18 Thread Muzak
Heya Helen, You're correct, they're still there ;-) I was looking in the Classes directory for the as files themselves, without checking the components panel in the Flash IDE so assumed mx.controls.MediaDisplay was replaced by the FLVPlayback. Have you tried setting the isLive property to true

Re: [Flashcoders] RE: FLVPLAYBACK COMPONENT

2007-01-18 Thread Helen Triolo
Thanks. This is using FCS, I should've mentioned, not FMS2. It looks to me from the help that the flv extension is required. So to shorten my question, it's for a file accessible with setMedia("rtmp:/LT/myfile.flv") using MediaPlayback what is the correct contentPath for FLVPlayback? (F

Re: [Flashcoders] Q;3D vector based site...how done?

2007-01-18 Thread eka
hello :) the best ? it's a very good project yes but the best ? ;) didn't want to offend anybody :) No problem ;) here it is! http://svn1.cvsdude.com/osflash/papervision3d/ Thanks for this link.. the link isn't in the wiki of osFlash :) For the moment I begin an little extension in

Re: [Flashcoders] Using XRay

2007-01-18 Thread slangeberg
John, I spoke too soon. I do still have an Fla where things are not displaying correctly in the .swf. I followed these directions and have the following output: (45) Connections: true | true (78) Connections: false | false Things only look correct when I do not 'export to first frame' (instanc

Re: [Flashcoders] Using XRay

2007-01-18 Thread John Grden
ok, now add this to your timeline/class : _global.com.blitzagency.xray.Xray.initConnections(); this will init the connections and you should be up and running On 1/18/07, slangeberg <[EMAIL PROTECTED]> wrote: John, I spoke too soon. I do still have an Fla where things are not displaying corr

Re: [Flashcoders] Using XRay

2007-01-18 Thread slangeberg
Now it's printing (still not publishing correctly): (39) Connections: true | true (71) Connections: false | false -Scott On 1/18/07, John Grden <[EMAIL PROTECTED]> wrote: ok, now add this to your timeline/class : _global.com.blitzagency.xray.Xray.initConnections(); this will init the connec

Re: [Flashcoders] Using XRay

2007-01-18 Thread John Grden
?? 2 x's that's weird. Do you have Xray connector loading 2x's (one in the library, another in an external SWF)? On 1/18/07, slangeberg <[EMAIL PROTECTED]> wrote: Now it's printing (still not publishing correctly): (39) Connections: true | true (71) Connections: false | false -Scott On 1/18

Re: [Flashcoders] Using XRay

2007-01-18 Thread slangeberg
I am loading an external swf, but that one does not contain the Xray connector. -Scott On 1/18/07, John Grden <[EMAIL PROTECTED]> wrote: ?? 2 x's that's weird. Do you have Xray connector loading 2x's (one in the library, another in an external SWF)? On 1/18/07, slangeberg <[EMAIL PROTECTED]>

[Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Patrick Matte | BLITZ
In AS2, is it possible to override the _xscale and _yscale setter in a subclass of MovieClip ? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brou

RE: [Flashcoders] Restoring class from .aso

2007-01-18 Thread Mike Pearce
Thanks Thomas. Mike Mike Pearce Nectarine +61 3 9687 7820 www.nectarine.com.au -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Fowler Sent: Wednesday, 17 January 2007 4:07 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Restoring class

Re: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Thomas Fowler
Why not just make a getter and setter called XScale and a getter and setter called YScale in your subclass each returning and setting their respective values? - Original Message - From: "Patrick Matte | BLITZ" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, January 1

Re: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread eka
Hello :) Yes you can :) Try this code (not tested) class Test1 extends MovieClip { /** * Constructor */ function Test1() { } public function get _xscale ():Number { return _xscale_ ; } public function set _yscale( value:Number ):Void {

Re: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread eka
if you overrides the properties the problem is to keep the resize effect on the movieclip ? EKA+ :) 2007/1/19, Thomas Fowler <[EMAIL PROTECTED]>: Why not just make a getter and setter called XScale and a getter and setter called YScale in your subclass each returning and setting their respecti

RE: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Patrick Matte | BLITZ
See I have a component which sets some movieClips _xscale and _yscale. It works fine with MovieClip that contain vector graphics because they scale nicely. But with bitmap Graphics, scaling looks bad. So I wanted to extend the movieClip class and override the _xscale and _yscale setters so that

RE: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Steven Sacks | BLITZ
You can do it with enabled, but you can't with _xscale or _yscale. You have to use a watcher to catch it and return oldVal. BLITZ | Steven Sacks - 310-551-0200 x209 > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of eka > Sent: Thursday, January 1

RE: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Patrick Matte | BLITZ
No I've tried that but it doesn't work unfortunately, I've also overridden the enabled setter before but the _xscale and _yscale setters seem to be different from the enabled setter. What I want to do is not scale the movieClip at all and scale redraw a bitmapData inside of it. BLITZ | Patrick Ma

RE: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Patrick Matte | BLITZ
It seems like you can't watch _xscale and _yscale BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks | BLITZ Sent: Thursday, January 18, 2007 4:16 PM To: Flashcoders mailing list Subject: RE: [Flash

RE: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Steven Sacks | BLITZ
Nevermind, you can't watch _xscale or _yscale. BLITZ | Steven Sacks - 310-551-0200 x209 > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Steven Sacks | BLITZ > Sent: Thursday, January 18, 2007 4:16 PM > To: Flashcoders mailing list > Subject: R

RE: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Patrick Matte | BLITZ
Anybody has any other idea ? BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Matte | BLITZ Sent: Thursday, January 18, 2007 4:19 PM To: Flashcoders mailing list Subject: RE: [Flashcoders] Override _xscale

[Flashcoders] FLASH REMOTING HELP!!!

2007-01-18 Thread [p e r c e p t i c o n]
I've been struggling with this all week and really need some help... i'm trying to call a method in a servlet (java) and can't seen to call that method nor get a response back into flashi know it can be done, but don't know the nuances of remoting enough to pull it off...can anyone point me i

[Flashcoders] advantages of EventDispatcher over AsBroadcaster

2007-01-18 Thread Reuben Stanton
I have used both extensively and find that AsBroadcaster allows me to do the same thing in fewer lines of code, yet there seems to be a general preference in the flash community to use EventDispatcher. Is there any particular reason to use one or the other? _

Re: [Flashcoders] advantages of EventDispatcher over AsBroadcaster

2007-01-18 Thread T. Michael Keesey
The two are pretty much the same, except for one big thing: EventDispatcher allows you to distinguish between types of events. AsBroadcaster just says, "Hey, there's been an update," while EventDispatcher gives detailed information (in an Event object) about exactly what that event was and only no

Re: [Flashcoders] FLASH REMOTING HELP!!!

2007-01-18 Thread John VanHorn
yes i can... http://kevinlangdon.com/serviceCapture/ On 1/18/07, [p e r c e p t i c o n] <[EMAIL PROTECTED]> wrote: I've been struggling with this all week and really need some help... i'm trying to call a method in a servlet (java) and can't seen to call that method nor get a response back i

Re: [Flashcoders] Using XRay

2007-01-18 Thread John Grden
can you send me the project offlist to look at? On 1/18/07, slangeberg <[EMAIL PROTECTED]> wrote: I am loading an external swf, but that one does not contain the Xray connector. -Scott On 1/18/07, John Grden <[EMAIL PROTECTED]> wrote: > > ?? 2 x's that's weird. Do you have Xray connector loa

Re: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Shang
Interesting question! I've tried a bit. class MyMc extends MovieClip{ public function MyMc(){ trace("I'm on!"); } public function set _xscale(xs){ super(xs); _root.doBitmap(this); } public function set _yscal

Re: [Flashcoders] mc preloader

2007-01-18 Thread JOR
Take a look at the MovieClipLoader class in the help docs. James O'Reilly — Consultant Adobe Certified Flash Expert http://www.jamesor.com Design • Code • Train Mike Dunlop wrote: Hi everyone, I have a question that is probably easy for you guys. How can i get a preloader into the follo

Re[2]: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Iv
Hello Patrick, PMB> Anybody has any other idea ? owerriding or watch of properties is impossible. Don't use extending. Use composition: class Test1 { private var __mc:MovieClip; public function Test1(mc:MovieClip){ this.__mc= mc } public function get _xscale ():Number { return this.__

Re: [Flashcoders] Q;3D vector based site...how done?

2007-01-18 Thread haVana
On 1/18/07, eka <[EMAIL PROTECTED]> wrote: For the moment I begin an little extension in VEGAS my OpenSource framework with geometric tools ... i don't compare my work with the other 3D libraries. PEGAS my drawing extension of VEGAS it's just a tool to creates rich applications but it's possibl