Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Anggie Bratadinata
I believe this point is important to emphasize: "This is autonomous behavior. Again, we shouldn't hate the Help Vampire. Or stake them. They know not what they do, only that they are driven to do it, and I believe they can be saved." Well said! I've been a member of a group , more "strict" tha

[Flashcoders] Calling a function by name stored in a string variable

2006-04-26 Thread Guillaume Maury
Thanks a lot for the quick answer. ___ 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 Software Premier Authorized Adobe

[Flashcoders] Re: Flash Player 6 on PSP

2006-04-26 Thread John Giotta
D-pad works for key capture. Low quality does improve framerate slightly On 4/26/06, Andreas Rønning <[EMAIL PROTECTED]> wrote: > Did some testing this morning. > > 1. Rendering looks like junk. Artifacts across the board, even when > doing extremely simple tweens. Apparently bitmaps are less sub

RE: [Flashcoders] Calling a function by name stored in a stringvariable

2006-04-26 Thread Scott Hyndman
Sorry, I should have mentioned that func.call(Something, arg0, arg1, ...); and func.apply(Something, [arg0, arg1, ...]); and Something[functionNameAsString](arg0, arg1, ...); are all functionally equivalent. Scott -Original Message- From: [EMAIL PROTECTED] on behalf of Scott Hyndm

RE: [Flashcoders] Calling a function by name stored in a string variable

2006-04-26 Thread Scott Hyndman
var func:Function = Something[functionNameAsString]; func.call(Something, arg0, arg1, ...); func.apply(Something, [arg0, arg1, ...]); or Something[functionNameAsString](arg0, arg1, ...); Scott -Original Message- From: [EMAIL PROTECTED] on behalf of Guillaume Maury Sent: Thu 4/27/20

[Flashcoders] Calling a function by name stored in a string variable

2006-04-26 Thread Guillaume Maury
Hi, I'm doing some automated testing component to test my software and I will be using some test scenarios script in xml. Among the different commands in those script I want to be able to write for example processInput and have my component read the script and call the processInput() function. H

[Flashcoders] server-side FLV encoder ?

2006-04-26 Thread D_C
hi list - I'm mostly doing mobile, but had a question regarding flash video. sorry for the noobie-ness, but : people mail in mobile phone video (which is mostly 3gpp/MPEG i believe) server converts to flash video for PC viewing questions: are there any linux tools that can use a PHP or command-

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Jordan Snyder
Haha! Dammit Ryan, what I meant to say was that our brains work better when the right conditions are met. i.e. - sufficient caffeine intake, balanced hormone levels, and the lack of men asking us to do everything for them. :) I considered this post considerably before posting it. On 4/26/06, J

[Flashcoders] server-side FLV encoder ?

2006-04-26 Thread D_C
hi list - I'm mostly doing mobile, but had a question regarding flash video. sorry for the noobie-ness, but : people mail in mobile phone video (which is mostly 3gpp/MPEG i believe) server converts to flash video for PC viewing questions: are there any linux tools that can use a PHP or command-

[Flashcoders] server-side processing to make flash video

2006-04-26 Thread D_C
hi list - I'm mostly doing mobile, but had a question regarding flash video. sorry for the noobie-ness, but : input: mobile phone video (which is mostly 3gpp/MPEG i believe) output: flash video for PC viewing questions: are there any linux tools that can use a PHP interface to batch convert inc

RE: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Asai
I don't know if this will help you, but what I usually do to circumvent this type of problem is remove the FLVPlayback (FLVPlayback.unloadMovieClip();) completely in between videos and reattach it with a new video contentPath. That seems to clear up any weird problems with multiple videos. Bu

[Flashcoders] (no subject)

2006-04-26 Thread Jonathan
s ___ 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 Software Premier Authorized Adobe Consulting and Training http://www.

Re: [Flashcoders] General question about placement of code

2006-04-26 Thread Mick G
If your button has been removed from the stage at any point on the timeline or there is a new instance name of the button then you will need to re-apply the button actions. If your button is moving around or you need to assign it actions several times you may be better creating a function to assig

RE: [Flashcoders] Accessibility and MSAA - Is this documentedanywhere?

2006-04-26 Thread Scott Hyndman
I have read both those links previously. They offer no information about the IAccessible methods that I see in the mx.accessibility package. Most information about these methods can be gleaned from the MSAA docs, replacing the pointer params with returns...but others, which seem to be specific

RE: [Flashcoders] LocalConnection from SWF <-> Visual Basic?

2006-04-26 Thread Zoltan Csibi
LocalConnection uses shared memory and AMF0. You can connect from VB.NET but if you don't have any particular/special reason.then avoid doing it (and use ExternalInterface as it was recommended) (I personally did this with c#/fluorine and using the docs from here http://osflash.org/doku.php?i

Re: [Flashcoders] Accessibility and MSAA - Is this documented anywhere?

2006-04-26 Thread John Dowdell
Scott Hyndman wrote: Are their docs? What methods are exposed to MSAA? What's the idea behind methods like getChildIdArray()? I can't seem to find any reference to them anywhere else in the framework, so I can only assume the Flash player invokes this at some point. Are whose docs? For "Where

RE: [Flashcoders] LocalConnection from SWF <-> Visual Basic?

2006-04-26 Thread Francis Cheng
David is correct, LocalConnection does not write to a file--it uses shared memory. I'm not an expert on LocalConnection, but it doesn't surprise me that you can experience some latency if a dozen SWF files are all sharing memory with a single gateway SWF file. The beleaguered gateway SWF would have

[Flashcoders] General question about placement of code

2006-04-26 Thread Jonathan Berry
My apologies for the message with the incorrect subject. >From the prior e-mail: Why wouldn't function assignments on the main timeline applicable to a button/clip, etc., placed on the same frame (in an actions layer of course) not be applicable in subsequent keyframes of the button/clip? What I h

Re: [Flashcoders] Flash Player 6 on PSP

2006-04-26 Thread Andreas Rønning
Did some testing this morning. 1. Rendering looks like junk. Artifacts across the board, even when doing extremely simple tweens. Apparently bitmaps are less subject to this behavior though so that's a workaround. 2. No real key events obviously. Every button on the device is spoken for aside

Re: [Flashcoders] LocalConnection from SWF <-> Visual Basic?

2006-04-26 Thread JesterXL
I think mProjector used a mutex, but that stuff, even when I saw the code, was out of my league. - Original Message - From: "David Rorex" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, April 26, 2006 6:58 PM Subject: Re: [Flashcoders] LocalConnection from SWF <-> Vi

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Jonathan Berry
Yes, I forgot to change the subject line to ask my question as well. I was not referring to the article, but to the reaction to people who ask for help in general. On 4/26/06, elibol <[EMAIL PROTECTED]> wrote: > > Wholy crap Jonathan I give you an E for (E)xcellent thesis. I didn't have > the tim

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread elibol
Wholy crap Jonathan I give you an E for (E)xcellent thesis. I didn't have the time nor the patience to read it, so I apologize, however, I think I should point out that nowhere in the article does it categorize anyone as smart or stupid. I believe this point is important to emphasize: "This is au

RE: [Flashcoders] LocalConnection from SWF <-> Visual Basic?

2006-04-26 Thread Tom Lee
I can't say for sure whether LocalConnection writes to a file or not, but I did want to point out that it can be pretty slow, depending on the number of swfs talking to the gateway swf at once. It certainly SEEMED like it was doing some file IO. In my experience, 10 or 12 swfs talking to the gate

Re: [Flashcoders] LocalConnection from SWF <-> Visual Basic?

2006-04-26 Thread David Rorex
LocalConnection is asynchronous. I don't know how mProjector got synchronous code in flash 7, it had to be some very clever hack. However, synchronous calls are supported natively in flash 8 (via ExternalInterface, which communicates with the host using a documented XML format I believe). SharedOb

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Jonathan Berry
I want to offer a basic counterpoint to this: what if the question is just from a beginner, who has in fact researched a problem found the documentation/resources incomplete in some way? Is it just because a person is a beginner that you will not offer help? Case in point, and be patient with me.

Re: [Flashcoders] LocalConnection from SWF <-> Visual Basic?

2006-04-26 Thread JesterXL
Hrm... I think SharedObject & LocalConnection both write to a file that you could check, but not really sure. I think that's how mProjector managed to get syncronous code, not sure. Darron might have something here: http://www.darronschall.com/weblog/archives/000151.cfm I coulda swore someone

Re: [Flashcoders] LocalConnection from SWF <-> Visual Basic?

2006-04-26 Thread Rifled Cloaca
Yeah, that was plan B. I was curious, though, if it were possible without embedding a proxy SWF. Thanks! On 4/26/06, JesterXL <[EMAIL PROTECTED]> wrote: > > Have one SWF embedded in the VB app that exposes the LocalConnection. > Hey > can talk to VB via ExternalInterface. > > Every other SWF can

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread ryanm
It's true that females are not as inclined to become Help Vampires. We will ask for directions sooner than most men, but we will consider our options considerably before asking technical questions. And our brains just work better anyway, really. :P Just not at forming proper sentences in Eng

Re: [Flashcoders] LocalConnection from SWF <-> Visual Basic?

2006-04-26 Thread JesterXL
Have one SWF embedded in the VB app that exposes the LocalConnection. Hey can talk to VB via ExternalInterface. Every other SWF can talk to the VB app via that LocalConnection proxy SWF embedded in VB. - Original Message - From: "Rifled Cloaca" <[EMAIL PROTECTED]> To: "Flashcoders ma

RE: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Wouter Steidl
All of you! Thanx a lot for all the replies, I`m gonna check it all out tommorrow, It is quite late on this site of the globe and it has been a pretty long day So I`m gonna work on it tommorrow, Thanx again all! Wouter -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTE

[Flashcoders] LocalConnection from SWF <-> Visual Basic?

2006-04-26 Thread Rifled Cloaca
All, Does anyone know if it's possible to create a LocalConnection between a SWF file and a Visual Basic App? If so, are there any open source examples out there? Thanks! -g ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

RE: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Merrill, Jason
>>> hi hello how do I make a multi-player game in flash its got to have >>> lasers thank you LOL from me too. "You know, I have one simple request, and that is to have sharks with frickin' laser beams attached to their heads! Now evidently my cycloptic colleague informs me that that cannot be don

RE: [Flashcoders] Are you a help vampire?

2006-04-26 Thread James Rutkowski
Sharon, I think this could apply to some of our constituents: http://www.slash7.com/pages/vampires :) > > >>> > > http://www.slash7.com/pages/vampires > > >>> I'm not sure, what's a help vampire...? ;-) > > >>> > > >>> jd > > >>> > > > ___

Re: [Flashcoders] [POLL] getters & setters preference

2006-04-26 Thread Randy Troppmann
Initially I was wary of the built in get and set framework, but I came to really like this technique. For example, you want to update the score of your game, but doing so requires touching numerous gui elements and properties. Using the built in setter methodology allows you to abstract and simplif

Re: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Mike Boutin
Using the netstream is the same idea as using the component, you can pass in multiple flv's to the same netstream / controls. Wouter Steidl wrote: Well., the whole setu is with the playback component because I can use 1 component and multiple flvs in that componentand the strange thing is t

RE: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Ashwan Wadhwa
I have used the FLVPlayback component in a similar situation. About 6 videos 40 minutes in length and cue points loaded through xml. Never had any major issues (other than that I was setting the cuepoint time as a string), so I doubt that there is a bug in the Video component. I did make sure that

RE: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Steven Sacks
> hi hello how do I make a multi-player game in flash its got to have > lasers thank you Haha! That deserves another laugh. I can't stop laughing. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http:/

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread elibol
Wait, huh? >.< On 4/26/06, Jordan Snyder <[EMAIL PROTECTED]> wrote: > > It's true that females are not as inclined to become Help Vampires. We > will > ask for directions sooner than most men, but we will consider our options > considerably before asking technical questions. And our brains just

RE: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Steve Krichten
What do you mean by "from a different project" In any case, I don't think you should use the same video player index for different videos. I have encountered many problems when doing that. So here is what I do.. private function _playVideo(url:String) { if (player.activeVideo

RE: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Wouter Steidl
Well., the whole setu is with the playback component because I can use 1 component and multiple flvs in that componentand the strange thing is that it all works, but in this weirtd way I described Thx for the tip though! -Original Message- From: [EMAIL PROTECTED] [mailto:[EM

Re: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Mike Boutin
Have you tried using netstream object to play your flvs instead? Wouter Steidl wrote: Thx for your respose, But I cant believe it has to do with thatcause it works if I don't try to load flvs from the same project but throw in the file from that other project.. Any more thoughts?

RE: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Wouter Steidl
Thx for your respose, But I cant believe it has to do with thatcause it works if I don't try to load flvs from the same project but throw in the file from that other project.. Any more thoughts? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ashw

[Flashcoders] best way to correlate dates with DateChooser

2006-04-26 Thread matt ganz
hi. - i'm building a scheduler app where a user picks a starting day, month, and year for an infusion. - then they can choose how frequently they want an infusion, i.e. every week, every two weeks, etc.. - then i calculate every day for an infusion for the next year and throw all these dates

RE: [Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Ashwan Wadhwa
You may want to wait for the ready event to fire(after you set the contentPath)and then issue the play command. MM Help example here: http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/js/html/wwhel p.htm?href=1893.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EM

RE: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Steven Sacks
> Guess I should not post > my IM on Flash message boards any more :( Oops! Although, I have to say, I once got an off-list email from somebody who asked me for help and it lead to having a regular client (I replaced them, something I wasn't entirely comfortable with at first, but if somebody is

RE: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Steven Sacks
> hi hello how do I make a multi-player game in flash its got to have > lasers thank you LOL! Well played. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Jordan Snyder
It's true that females are not as inclined to become Help Vampires. We will ask for directions sooner than most men, but we will consider our options considerably before asking technical questions. And our brains just work better anyway, really. :P Cheers! On 4/26/06, Robert A. Colvin <[EMAIL

[Flashcoders] Are you a help vampire?

2006-04-26 Thread Steve Krichten
Unfortunately, I have a couple of these vampires attached to me via IM They don't even introduce themselves... they just hit me on IM saying "hey, how do I do this?" Guess I should not post my IM on Flash message boards any more :( - http://www.s

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Chris Hill
Thank you for demonstrating what exactly NOT to do for a help vampire. Robert A. Colvin wrote: To make a decent multi-player game you will need a proxy server(FCS/FMS2). You could probably get away with using Jabber. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

RE: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Robert A. Colvin
To make a decent multi-player game you will need a proxy server(FCS/FMS2). You could probably get away with using Jabber. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Stuhr Sent: Wednesday, April 26, 2006 3:43 PM To: Flashcoders mailing list Su

[Flashcoders] Straaaaaaaange FLVplayback problem....

2006-04-26 Thread Wouter Steidl
Hi List, I am using the FLVPlayback component and have a really strange problem: I have a videoloader class (Singleton) that I instansiate, then I throw in an array of videos and it plays them sequentiallylike this: (FPB is a reference to the FLVplayback-instance on stage) public function lo

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Michael Stuhr
Chris Hill schrieb: hi hello how do I make a multi-player game in flash its got to have lasers thank you eric dolecki wrote: I know of a few... and I am sure at a few points in the past I have almost been one :) On 4/26/06, John Dowdell <[EMAIL PROTECTED]> wrote: Steven Sacks wrote: http:

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread Chris Hill
hi hello how do I make a multi-player game in flash its got to have lasers thank you eric dolecki wrote: I know of a few... and I am sure at a few points in the past I have almost been one :) On 4/26/06, John Dowdell <[EMAIL PROTECTED]> wrote: Steven Sacks wrote: http://www.slash7.com/page

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread eric dolecki
I know of a few... and I am sure at a few points in the past I have almost been one :) On 4/26/06, John Dowdell <[EMAIL PROTECTED]> wrote: > > Steven Sacks wrote: > > http://www.slash7.com/pages/vampires > > I'm not sure, what's a help vampire...? ;-) > > jd > > >

Re: [Flashcoders] Are you a help vampire?

2006-04-26 Thread John Dowdell
Steven Sacks wrote: http://www.slash7.com/pages/vampires I'm not sure, what's a help vampire...? ;-) jd ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/

[Flashcoders] Are you a help vampire?

2006-04-26 Thread Steven Sacks
http://www.slash7.com/pages/vampires I know there are some here...I've seen them, even if they don't see themselves (mirrors not working and all that). ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] [POLL] getters & setters preference

2006-04-26 Thread elibol
It's circumstancial, I have no preference. Depending on the problem, one will solve better than the other. However, which will solve a particular problem better is controversial. M. On 4/26/06, Jim Tann <[EMAIL PROTECTED]> wrote: > > Hello all, > > After a long time of trying to figure which meth

Re: [Flashcoders] Reverting flash 7 code to Flash 6

2006-04-26 Thread JesterXL
It depends. If you are using components, you just need to ensure all of them work. Some don't and some do. Some methods are also masked; for example, getNextHighestDepth is actually overwritten so it'll work in 6 vs. the native Flash Player 7 method. Everything else is extremely small since t

RE: [Flashcoders] Reverting flash 7 code to Flash 6

2006-04-26 Thread Tom Lee
What I usually do is look in the Help docs for the particular method or property I am thinking of using, and it tells you what the availability is... I suppose you could search the docs by the string "Availability: ActionScript 1.0; Flash Player 6" and that might do it for you. -tom -Origina

Re: [Flashcoders] Not all MCs get onEnterFrame

2006-04-26 Thread Tyler Wright
> you don't need that, it will be availible because its an anon function > inside another function, therefore all variables inside the containing > function will be availible. Right, because of this every MovieClip is sharing the same variables -- which is why it behaves unexpectedly. That work

Re: [Flashcoders] press & hold

2006-04-26 Thread Tyler Wright
enjoy! Tyler // modified code snippet from my scroll class scrollPause = Delegate.create(this, scrollPause); upArrow.onPress = Delegate.create(this, upArrowPress); upArrow.onRelease = upArrow.onReleaseOutside = Delegate.create(this, arrowRelease); private function scrollUp():Void { scrollPo

Re: [Flashcoders] Reverting flash 7 code to Flash 6

2006-04-26 Thread Karthik
> Anyone care to point me to a good reference of what Flash7 AS will not > work in Flash 6? Can't seem to find a reference doc. Dunno. But you could possibly grep for "Flash Player 7/8" :) -K ___ Flashcoders@chattyfig.figleaf.com To change your subscrip

Re: [Flashcoders] Font jumping cross platform

2006-04-26 Thread James Tarling
I've had this problem before but only with static text fields. You can (sort of) get round it by setting the fields to dynamic - at least, this solved the problem for us. HTH, James ___ Flashcoders@chattyfig.figleaf.com To change your subscription opt

Re: [Flashcoders] [POLL] getters & setters preference

2006-04-26 Thread Nicolas Cannasse
> The only other reason that I don't use built-in getters and setters is > that, at present, they don't work with Interfaces, only with Classes. > And we use Interfaces a lot. > > Ian Yes, that's a bit problematic. In haXe (http://haxe.org) all fields properties (public/private, getter/setter me

Re: [Flashcoders] Font jumping cross platform

2006-04-26 Thread Kevin Newman
Sweet! Thanks :-) I'll give this a try. Kevin N. Geoff Stearns wrote: i found this link from a cached page in google: http://www.slice-media.com/jsfl/pixelShift.mxp it's supposed to be the jsfl that shifts your textfields so you don't have to do it manually. link: http://72.14.203.104/s

Re: [Flashcoders] Problem with TextField.tabIndex

2006-04-26 Thread JesterXL
Dont' use TextFields; use a TextInput or TextArea and style accordingly. They have built-in focus & tab management just like buttons. - Original Message - From: "Andy Kirkham" <[EMAIL PROTECTED]> To: Sent: Wednesday, April 26, 2006 12:56 PM Subject: [Flashcoders] Problem with TextField.

Re: [Flashcoders] Font jumping cross platform

2006-04-26 Thread Geoff Stearns
i found this link from a cached page in google: http://www.slice-media.com/jsfl/pixelShift.mxp it's supposed to be the jsfl that shifts your textfields so you don't have to do it manually. link: http://72.14.203.104/search?q=cache: 9lKfRcMTFOwJ:www.eyezberg.com/Breaking_News_from_the_Flash_

[Flashcoders] Problem with TextField.tabIndex

2006-04-26 Thread Andy Kirkham
I have a very simple Flash 8 movie with two (UI component) buttons and two input TextFields on the stage. Automatic tabbing works fine, but if I try to change the tab order by setting tabIndex on the four objects, thus... Button1.tabIndex = 4; text1.tabIndex = 3; text2.tabIndex = 2; Button2.tabI

Re: [Flashcoders] Font jumping cross platform

2006-04-26 Thread Roman Blöth
Hello there, Adrian Penn schrieb: > > I've also experienced this problem or something very similar. > > I was given a handful of .fla files for a project a while back. All of these > files were authored on a Mac. When we opened them on a PC - many of the text > fields looked substantially

RE: [Flashcoders] Font jumping cross platform

2006-04-26 Thread Adrian Penn
I've also experienced this problem or something very similar. I was given a handful of .fla files for a project a while back. All of these files were authored on a Mac. When we opened them on a PC - many of the text fields looked substantially different. The vertical positioning was off a bi

[Flashcoders] aStaticFunction.call(undefined) ?

2006-04-26 Thread Stefan Thurnherr
Hi All, Is it possible to use call() on a Function instance that represents a static function? Since Function.call(thisObject) has a mandatory argument, what would I have to use as the argument in the case of a static function ? The bigger picture of this question is as follows: I'd like to imple

Re: [Flashcoders] Flash Layout Manager

2006-04-26 Thread Tyler Wright
Sajid, I have an AS2.0 class that is a lot simpler to use. com.codext.managers.LayoutManager.initialize(panel1); com.codext.managers.LayoutManager.initialize(panel2); panel1.dock = "top";// this fills the space panel2.dock = "top";// this fills the space under panel1 and does not overlap

[Flashcoders] Flash Player 7 for Windows Mobile 5

2006-04-26 Thread Ashwan Wadhwa
Is there a timeline for when the CDK is going to be released. Will that include a projector building application for the WM5 or will there be a similar $500 charge to buy that app? [http://tinyurl.com/rkwr8] Hopefully this will be a good platform to build wm5 apps, I am having a hard time using

Re: [Flashcoders] [POLL] getters & setters preference

2006-04-26 Thread JesterXL
The only time built-in getter/setters really shine is with binding in Flex. You can bind to methods, but the runtime binding triggers change events for properties, and this allows you to all sorts of neat stuff under the hood to your GUI when a property changes. While you could bind to a getEna

Re: [Flashcoders] [POLL] getters & setters preference

2006-04-26 Thread Ian Thomas
The only other reason that I don't use built-in getters and setters is that, at present, they don't work with Interfaces, only with Classes. And we use Interfaces a lot. Ian On 4/26/06, Kevin Newman <[EMAIL PROTECTED]> wrote: > So in general, at this point I try to stay away from built in getter

[Flashcoders] [OT] Looking for Samuel Agesilas' email

2006-04-26 Thread Chris Allen
Does anyone know how to get in touch with this guy? Sam, are you on this list? If so, please contact me off list, for some reason I misplaced his card he gave me at FITC. Thanks and sorry for the OT. ;-) -Chris ___ Flashcoders@chattyfig.figleaf.com To

Re: [Flashcoders] [POLL] getters & setters preference

2006-04-26 Thread Kevin Newman
I've wrestled with this question too. In general I've found that I usually only want to use a getter in situations where I don't want the user to be able to set the value. In this case, it has seemed more appropriate to just supply a getMyProperty value, so that it doesn't appear that the value

RE: [Flashcoders] [POLL] getters & setters preference

2006-04-26 Thread Lee McColl-Sylvester
I prefer the former. Using get and set is so much nicer. Besides, I do a lot of Exe based flash work, and being able to execute functions using variable assignment style expressions is a lifesaver. Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of J

Re: [Flashcoders] Font jumping cross platform

2006-04-26 Thread Kevin Newman
This seems to happen with any OpenType font (most of them from Fontfolio OpenType), and possibly means with all PostScript outline fonts, since it happens with OpenType and converted fonts (from mac). I really think this is a bug in Flash, since as I've mentioned, I don't have a problem with a

[Flashcoders] [POLL] getters & setters preference

2006-04-26 Thread Jim Tann
Hello all, After a long time of trying to figure which method of using getters & setters is better I though the best way to get a good answer is to throw it open to the list. Do you prefer to use the inbuilt getter & setter functionality? i.e. public function get myProperty():Number{ return _myP

Re: [Flashcoders] Is it okay to destroy a singleton?

2006-04-26 Thread elibol
There are just a few things to keep in mind when you destroy objects, you should remove any broadcasters they are listening to (removeListener(this)) and remove any movieclips that are instantiated during the init process. Seperate the object from the graphics when you think about your object so th

Re: [Flashcoders] Font jumping cross platform

2006-04-26 Thread Geoff Stearns
i've seen a jsfl that you can run to move all the text fields in a movie up/down .. but other than that i think you are screwed. (or maybe you could use a different font?) On Apr 26, 2006, at 11:11 AM, Kevin Newman wrote: Hello, I don't know if this is the right place for this kind of qu

[Flashcoders] Font jumping cross platform

2006-04-26 Thread Kevin Newman
Hello, I don't know if this is the right place for this kind of question, but I have an problem where if I use a font (either a crossplatform opentype, or a crossfont converted font) in an fla, then move that fla from a Mac to a Windows, all the text elements move down on the screen by a few

[Flashcoders] Reverting flash 7 code to Flash 6

2006-04-26 Thread Mike Mountain
Anyone care to point me to a good reference of what Flash7 AS will not work in Flash 6? Can't seem to find a reference doc. Ta M ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.co

[Flashcoders] Is it okay to destroy a singleton?

2006-04-26 Thread Manuel Saint-Victor
What is the best way to destroy a Singleton? I have a program that has a videoList when members are logged in - when they log out although the swf will still be open I would like that the list (which is a Singleton that they can tote around with them throughout the minisite) be destroyed-. I was

Re: [Flashcoders] Jobs based in Paris (france)

2006-04-26 Thread eric dolecki
You pissed me off the 2nd time you replied with an empty response... the third just made it worse. On 4/26/06, sixbras <[EMAIL PROTECTED]> wrote: > > Hi, > > We are a leading French e-entertainment company, working on web browser > game. > > We're looking for a Flash Game Developer with applied

[Flashcoders] Jobs based in Paris (france)

2006-04-26 Thread sixbras
Hi, We are a leading French e-entertainment company, working on web browser game. We're looking for a Flash Game Developer with applied knowledge of Flash/Actionscript and Object Oriented Programming is a must. Java, PHP, as well as MySQL knowledge is a plus. Online portfolio demonstrating skill

[Flashcoders] Jobs based in Paris (france)

2006-04-26 Thread sixbras
Hi, We are a leading French e-entertainment company, working on web browser game. We're looking for a Flash Game Developer with applied knowledge of Flash/Actionscript and Object Oriented Programming is a must. Java, PHP, as well as MySQL knowledge is a plus. Online portfolio demonstrating skill

Re: [Flashcoders] Flash Layout Manager

2006-04-26 Thread Mike Britton
I hear ya. Mike ___ 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 Software Premier Authorized Adobe Consulting and Traini

RE: [Flashcoders] PPC SWF2EXE

2006-04-26 Thread Giles Taylor
http://www.antmobile.com/ http://www.handsmart.com But I've not used them so I don't know if they are any good Giles -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lee McColl-Sylvester Sent: 26 April 2006 14:52 To: Flashcoders mailing list Subject: RE

RE: [Flashcoders] PPC SWF2EXE

2006-04-26 Thread Lee McColl-Sylvester
Found it http://www.handsmart.com/ Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 26 April 2006 14:41 To: Flashcoders mailing list Subject: RE: [Flashcoders] PPC SWF2EXE Wow - talk about on topic, I just came out of a meeting

RE: [Flashcoders] Flash Layout Manager

2006-04-26 Thread Lee McColl-Sylvester
Yeah, they're taking their time too ;) Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Britton Sent: 26 April 2006 14:47 To: Flashcoders mailing list Subject: Re: [Flashcoders] Flash Layout Manager Also keep in mind that layout management will

RE: [Flashcoders] ObjectSwap: Bypassing the ActiveX Activation Issuein Internet Explorer

2006-04-26 Thread Karina Steffens
Hi Mauricio and Eskil, Thank you for the great feedback! :) Karina > -Original Message- > From: Mauricio Furtado Massaia [mailto:[EMAIL PROTECTED] > Sent: 26 April 2006 13:19 > To: Flashcoders mailing list > Subject: Re: [Flashcoders] ObjectSwap: Bypassing the ActiveX > Activation Issu

Re: [Flashcoders] Flash Layout Manager

2006-04-26 Thread Mike Britton
Also keep in mind that layout management will be part of Flex 2. Personally I can't wait. http://livedocs.macromedia.com/labs/1/flex20beta2/langref//mx/containers/Panel.html Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

RE: [Flashcoders] PPC SWF2EXE

2006-04-26 Thread Lee McColl-Sylvester
Tbh, I think XAMLON will miss the boat. By the time they release a version 1 product, Microsoft will have a solid footing. I rememeber not so long ago that there was a company with a product called Handypack or something similar that did this, but I can't find their site. Lee -Original Me

RE: [Flashcoders] PPC SWF2EXE

2006-04-26 Thread Mike Mountain
Wow - talk about on topic, I just came out of a meeting about this very subject. Apparently XAMLON will publish to ppc - but the beta is now closed M > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Lee McColl-Sylvester > Sent: 26 April 2006

[Flashcoders] PPC SWF2EXE

2006-04-26 Thread Lee McColl-Sylvester
Wow, acronyms gallore. Hey all. Does anyone know of a good SWF2EXE for the PPC other than MDM's? Thanks, Lee ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mai

[Flashcoders] How to control sound and change frame rate of a SWF file loaded using MovieClip.loadMovie()?

2006-04-26 Thread Anshul Chandra
Hi, I have created a movie clip using createEmptyMovieClip() and am then loading a swf file using loadMovie(). I want to control the frame-rate of the SWF being loaded. That I am able to achieve using setInterval to call the function gotoAndStop(), at any desired speed. The problem I face is

Re: [Flashcoders] ObjectSwap: Bypassing the ActiveX Activation Issue in Internet Explorer

2006-04-26 Thread Eskil Janson
Great work, thanks! /Eskil Karina Steffens skrev: Hi all, After way too much time spent on this issue, I have finally perfected the script (I hope!) and wrote an article about it on my blog. replaceFlash.js is now called objectSwap.js - It's really meant for all ActiveX objects, not just Fla

RE: [Flashcoders] Flash Layout Manager

2006-04-26 Thread Lee McColl-Sylvester
The way I have mine setup is: I have a page manager that arranges components of the stage based on data from an XML document. The resizer helps update the component properties that automatically update a set of arrays that we constructed from the previously mentioned XML. On clicking a save butt

  1   2   >