Re: [Flashcoders] what are differences between Flash5 and FlashMX?

2006-02-07 Thread Danny Kodicek
Well, I'll probably skip 10 billion details including IDE features, but here goes my 2 minute stint on the good stuff: One important thing you missed is JSFL: the ability to automate processes through code has been a lifesaver for me in two recent projects (was it introduced in MX04 or in M

Re: [Flashcoders] what are differences between Flash5 and FlashMX?

2006-02-07 Thread JesterXL
Well, I'll probably skip 10 billion details including IDE features, but here goes my 2 minute stint on the good stuff: Flash Player 5 --- - introduced ActionScript the programming language, matching JavaScript - introduced the XML object. Slow as nuts, but she worked - introduced the

Re: [Flashcoders] what are differences between Flash5 and FlashMX?

2006-02-07 Thread zikey Han
The new player features! Thank you! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] what are differences between Flash5 and FlashMX?

2006-02-07 Thread JesterXL
A lot. Anything in particular? The Flash Player? The hardware requirements for the players? The change in the ActionScript language? The new player features? The new IDE features? - Original Message - From: "zikey Han" <[EMAIL PROTECTED]> To: Sent: Wednesday, February 08, 2006 12

Re: [Flashcoders] Audio Chat

2006-02-07 Thread Ramon Tayag
Thank you! Will do much reading now. On 2/8/06, Chris Allen <[EMAIL PROTECTED]> wrote: > You can also use Red5 http://osflash.org/red5 or Flash Media Server for > this. > > -Chris -- Ramon Miguel M. Tayag ___ Flashcoders mailing list Flashcoders@chattyf

Re: [Flashcoders] Secure Site Question

2006-02-07 Thread Tyler Wright
Susan, Your problem isn't the application accepting the certificate, it's the browser that has to accept it. Flash embedded in a web page communicates through the browser. Unfortunately, in some cases where you'd usually get a warning (such as with Netscape), it silently fails. The best thing to

RE: [Flashcoders] what are differences between Flash5 and FlashMX?

2006-02-07 Thread David Clarke
Does anyone want to dignify this with a response? - David Clarke -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of zikey Han Sent: Wednesday, 8 February 2006 4:11 PM To: Flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] what are differences between

[Flashcoders] what are differences between Flash5 and FlashMX?

2006-02-07 Thread zikey Han
Hi,list; I want to know what differences are between Flash5 and FlashMX?even between Flash MX and Flash2004. And the differences of flash between Window and OS ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/m

Re: [Flashcoders] How do you code your Flash applications?

2006-02-07 Thread Tyler Wright
> The range of depths that you can't removeMovieClip() in is between 0 - > 1048575 ... excuse me, that you can't removeMovieClip() outside of... if your MovieClip is outside of that range, removeMovieClip() doesn't work. Everything else, however, behaves as normal. Tyler __

Re: [Flashcoders] How do you code your Flash applications?

2006-02-07 Thread Tyler Wright
> app open overnight and used it for several days in a row, they could > theoretically open enough windows to hit the 65,535 depth limit and > unexpected things could happen. So I went ahead and wrote the extra 10 > lines > of code to keep the depths consecutive, and circumvented the problem > befo

Re: [Flashcoders] Extract actionscript from .FLA?

2006-02-07 Thread Josh McDonald
I agree, but there's no way I'd get the go-ahead for refactoring of that size. Lousy bean-counters :( I'm just lucky for the amount of code that's already in .as files. Thanks for the link btw :) -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunner

Re: [Flashcoders] Extract actionscript from .FLA?

2006-02-07 Thread Chris Velevitch
On 2/8/06, Josh McDonald <[EMAIL PROTECTED]> wrote: > Just wondering if there's a tool to batch extract actionscript from .FLA > files? I'm not trying to reverse-engineer some stuff off the net- I have > the .fla files, I just want to be able to search it without opening them > in flash and (trying

[Flashcoders] Extract actionscript from .FLA?

2006-02-07 Thread Josh McDonald
Just wondering if there's a tool to batch extract actionscript from .FLA files? I'm not trying to reverse-engineer some stuff off the net- I have the .fla files, I just want to be able to search it without opening them in flash and (trying to) locate every snippet of AS contained therein. Cheers,

Re: [Flashcoders] Unit Tesing Framework Recommendations

2006-02-07 Thread Johannes Nel
asunit.org works with flex and flash. they also already have an as3 version out. for flash especially its a very mature tool. itteration2 (now adobe consulting) also build something called flex unit which a lot of people use. i am certain thats very usable with flash as well, may require a bit of r

[Flashcoders] Unit Tesing Framework Recommendations

2006-02-07 Thread Chris Velevitch
I'm interested in finding what unit testing frameworks exist for Flash and the pros and cons of each. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashcoders@chattyfig.figlea

[Flashcoders] Flash 8 Projectors under OS 9

2006-02-07 Thread Tim Cox
Projectors I've created under Flash MX2004 run fine on OS 9 where as Projectors created under Flash 8 won't run on OS 9. I know the minimum requirement for Flash Player 8 is OS X, but is it possible to create a OS 9 compatible projector in Flash 8 or do I have to recompile in MX2004? ___

Re: [Flashcoders] dynamic text field whoas

2006-02-07 Thread Nathan Derksen
Damn, I always thought that seemed a silly way to do it. After all this time of re-calling that bloody thing every time I changed it. Thanks for the correction, I'll go back and fix my old code :-) Nathan http://www.nathanderksen.com On Feb 7, 2006, at 2:49 PM, Ian Thomas wrote: Or call se

Re: [Flashcoders] dynamic text field whoas

2006-02-07 Thread Ian Thomas
Or call setNewTextFormat() instead. setTextFormat() applies to the _existing_ text within the field. setNewTextFormat() applies to any text that will be put into the field. This is why (Nathan) you're having to call setTextFormat() multiple times - calling setNewTextFormat() just once, before pu

Re: [Flashcoders] dynamic text field whoas

2006-02-07 Thread Nathan Derksen
You need to re-apply setTextFormat() every time you change the .text or .htmlText properties of a text field: percent.text = percentNum; percent.setTextFormat(ldrFormat); I tried this out with your code, and it worked fine afterwards. Nathan http://www.nathanderksen.com On Feb 7, 2006, at

RE: [Flashcoders] dynamic text field whoas

2006-02-07 Thread Merrill, Jason
Try this instead: this.createTextField("percent", 1, 100, 100, 300, 100); percent.multiline = true; percent.wordWrap = true; var my_fmt:TextFormat = new TextFormat(); my_fmt.color = 0x00; my_fmt.underline = true; percent.text = "0"; percent.setTextFormat(my_fmt); percentIcon_mc.onEnterFrame =

RE: [Flashcoders] dynamic text field whoas

2006-02-07 Thread Merrill, Jason
Have you thrown some traces in there? What do they show? Where is it breaking? Jason Merrill | E-Learning Solutions | icfconsulting.com >>-Original Message- >>From: [EMAIL PROTECTED] [mailto:flashcoders- >>[EMAIL PROTECTED] On Behalf Of Corban Baxter >>Sent: Tuesday, Febru

[Flashcoders] Sound.loadSound() -- How to Handle HTTP Errors Gracefully

2006-02-07 Thread Jeff Mastropietro
Does anyone have any ideas about how to handle HTTP or connectivity errors gracefully when using Sound.loadSound()? I'm using the onLoad event, with a function like so: mysound = new Sound(this); mysound.onLoad = function(success:Boolean) { if (!success) { getURL("javascript:alert('F

[Flashcoders] dynamic text field whoas

2006-02-07 Thread Corban Baxter
Can anyone tell me why my text won't change in my percent.text field that I am creating dynamicly...? [code] var ldrFormat:TextFormat = new TextFormat(); ldrFormat.color = 0x00; ldrFormat.font = "dirty_head"; ldrFormat.size = 69; posX = 91; posY = 0; this.createTextField("percent", this.get

Re: Re: [Flashcoders] dynamic text field width

2006-02-07 Thread Charles Parcell
autoSize = true === autoSize = "left" can also do autoSize = "center" and autoSize = "right" Charles P. On 2/7/06, Viktor Berzsinszky <[EMAIL PROTECTED]> wrote: > > can hardly remember but the "autoSize" field is > ->"left" > ->or [see help] > > and does the resizing for you. you get the width

Re: [Flashcoders] creating globally callable functions

2006-02-07 Thread Manuel Saint-Victor
Thanks Jesse, I'm pretty much stuck in AS2 for this one but I'm gonna try out your suggestion. It looks like it should do it. Thanks, Mani On 2/7/06, JesterXL <[EMAIL PROTECTED]> wrote: > > Use AS3... > > ...unless you can't, in which case: > > class Sample > { > public static function draw

Re: [Flashcoders] creating globally callable functions

2006-02-07 Thread Nathan Derksen
Depending on what you need to access, one way could be through a singleton class. Add the private static var and getInstance() method as shown below to any class, and you can then call it from anywhere. This only works if you will only ever have exactly one instance of this class. class M

Re: [Flashcoders] creating globally callable functions

2006-02-07 Thread JesterXL
Use AS3... ...unless you can't, in which case: class Sample { public static function drawInchBox(p_mc:MovieClip):Void { p_mc.beginFill(0x00); p_mc.lineTo(72, 0); p_mc.lineTo(72, 72); p_mc.lineTo(0, 72); p_mc.lineTo(0, 0); p_mc.endFill();

[Flashcoders] Complex paremeters interface for component

2006-02-07 Thread Éric Thibault
A quick question after searching the macromedia site for tutorials and all I have to produce a component with lots of parameters and would like to regroup them like in this image: http://www.horsefish.net/ElementalFX/v2docs/tut2_fig3.gif How can I make something like that? Thanks a m

[Flashcoders] creating globally callable functions

2006-02-07 Thread Manuel Saint-Victor
Not to start back the discussion of global- nor do I really have the option of discussing whether this is right or wrong--- I'm looking for the best way to allow some functions to be callable from any timeline but still execute in the scope of the class in which they are defined. I have initially

[Flashcoders] Secure Site Question

2006-02-07 Thread Lord, Susan Ms. (CONTR)
Hello, I am new to the list, so I hope this question isn't too basic for you, but since I did not receive a response on Flash Newbies, I figured I would try here. Here is the problem: I linking my flv player to an FLV that is stored on a secure site which requires a certificate. The

Re: [Flashcoders] need: optimized particles

2006-02-07 Thread Jim Armstrong
artur wrote: perferably flash 7 and above. something like this is prefered ( in terms of performance ): http://www.blprnt.com/swf/ParticleSwarm.htm Here are a couple to get you started, http://www.bit-101.com/Particles/ http://www.horsefish.net/ElementalFX/ good luck! - jim -- 2112 FX

[Flashcoders] need: optimized particles

2006-02-07 Thread artur
perferably flash 7 and above. something like this is prefered ( in terms of performance ): http://www.blprnt.com/swf/ParticleSwarm.html but i want it to behave just like this PixiePartle example: http://levitated.net/daily/levPixieParticles.html however it is too CPU intensive and written in

AW: Re: [Flashcoders] dynamic text field width

2006-02-07 Thread Viktor Berzsinszky
can hardly remember but the "autoSize" field is ->"left" ->or [see help] and does the resizing for you. you get the width by the field [_width] of the movieClip after resizing so long v. > >myText._width = 1; >myText.autoSize = true; >?? > >Charles P. > > >On 2/7/06, Corban Baxter <[EMAIL PR

Re: [Flashcoders] Date-Classes

2006-02-07 Thread Michael Stuhr
JesterXL schrieb: Changing Date.prototype.function to class MyDate extends Date seems trivial to me. While the code uses prototypes, it's still useful. I'm with you on time, though; if something's there, works, and is ready to go, nothing is better! - Original Message - From: "Mich

Re: [Flashcoders] dynamic text field width

2006-02-07 Thread Martin Weiser
tf._width=tf.textWidth+4 tf._height=tf.textHeight+6 my apporach MW - Original Message - From: "Corban Baxter" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 07, 2006 7:19 PM Subject: [Flashcoders] dynamic text field width Hey guys just a quick question about creating dynamic te

Re: [Flashcoders] Book Recommendation

2006-02-07 Thread Charles Parcell
I agree with you 110% The book is at the correct level. Not overly simple and not at the PHD level either. Lots of examples based in 2D space with some in 3D. The code in the book is not actually Lingo as much as it is pseudo code. Charels P. On 2/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wr

[Flashcoders] Anybody using TextMate with Flash 8 and AS2 on OSX?

2006-02-07 Thread Troy Rollins
While I still need the Flash IDE, I'd like to replace the code editor. I've looked at the FAMES route, and find it lacking in terms of my own workflow and the nature of my projects. TextMate looks great, but it seems to only support AS1 fully, and things like the access to the Flash help fi

Re: [Flashcoders] Date-Classes

2006-02-07 Thread JesterXL
Changing Date.prototype.function to class MyDate extends Date seems trivial to me. While the code uses prototypes, it's still useful. I'm with you on time, though; if something's there, works, and is ready to go, nothing is better! - Original Message - From: "Michael Stuhr" <[EMAIL P

Re: [Flashcoders] dynamic text field width

2006-02-07 Thread Charles Parcell
myText._width = 1; myText.autoSize = true; ?? Charles P. On 2/7/06, Corban Baxter <[EMAIL PROTECTED]> wrote: > > Hey guys just a quick question about creating dynamic text fields. > I am working on a horizontal scrolling menu that uses xml to store url's > and website titles that will be used to

[Flashcoders] dynamic text field width

2006-02-07 Thread Corban Baxter
Hey guys just a quick question about creating dynamic text fields. I am working on a horizontal scrolling menu that uses xml to store url's and website titles that will be used to create a menu. Below is example XML. http://www.google.com /> http://www.msn.com /> http://

Re: [Flashcoders] Date-Classes

2006-02-07 Thread Michael Stuhr
bryan.rice schrieb: On Feb 7, 2006, at 12:15 PM, Michael Stuhr wrote: the prototypes REALLY outdated. Hardly. Action Script will always be a prototype based language. Who needs Class syntax when you have __proto? Long Live the Rebel Alliance! Heh heh heh... : ) blue skies, bryan _

Re: [Flashcoders] Date-Classes

2006-02-07 Thread bryan.rice
On Feb 7, 2006, at 12:15 PM, Michael Stuhr wrote: the prototypes REALLY outdated. Hardly. Action Script will always be a prototype based language. Who needs Class syntax when you have __proto? Long Live the Rebel Alliance! Heh heh heh... : ) blue skies, bryan _

Re: [Flashcoders] Date-Classes

2006-02-07 Thread Michael Stuhr
Martin Wood schrieb: theres a simple date formatter at osflash, but what kind of date classes do you need? http://osflash.org/openclasslibrary (which reminds me i really should sort out that paginator thing i put up, its neither well documented nor well tested..) do you - or someone else

Re: [Flashcoders] Date-Classes

2006-02-07 Thread Michael Stuhr
JesterXL schrieb: Date Formatter http://www.darronschall.com/weblog/archives/40.cfm http://www.darronschall.com/weblog/archives/52.cfm Date Prototypes http://proto.layer51.com/l.aspx?p=9 thanks Jesse, as i've not much time, i'm sticking with OS-Easy-use :-) oh btw: the prototypes REAL

Re: [Flashcoders] Date-Classes

2006-02-07 Thread Michael Stuhr
Martin Wood schrieb: theres a simple date formatter at osflash, but what kind of date classes do you need? http://osflash.org/openclasslibrary BINGO - thanks a bunch! that's enough :-) ::smashes head on table - how could i overlook THAT page! dammit!:: micha __

[Flashcoders] OT (sorry folks): Looking for web design jobs

2006-02-07 Thread Anggie Bratadinata
Hi experts, Sorry for this OT post but I had Googled for this for 2 hrs and only got 1 opening. I'm looking for a company or individual who has a job opening for a part time web designer to work remotely for them. If someone have any info, please let me know. ;) Thanks in advance and I'm very so

Re: [Flashcoders] Re: Setting the last pressed key in the Key class

2006-02-07 Thread elibol
Hi Tyler, Thanks for your reply! I'm not allowed to disclose my reasoning, however, it's essential that it's the Key class that I use. High Regards, M. On 2/7/06, Tyler Wright <[EMAIL PROTECTED]> wrote: > > Define your own static MyKey class and have it subscribe as a listener to > Flash's Key.

Re: [Flashcoders] How do you code your Flash applications?

2006-02-07 Thread elibol
Hi Syams, Way left field bro. I have this mental imagery of you falling from the sky into this topic, not knowing where you are. I remember your post about this question, it was answered. The way to do it without serverside programming is to use shared objects. Good luck with it, M. On 2/7/06,

[Flashcoders] Book Recommendation

2006-02-07 Thread bitstreams
Currently reading Danny Kodicek's 'Mathematics and Physics for Programmers'. Although the coding examples are in lingo, I'm finding it incredibly useful. Highly recommended! Jim Bachalo [e] jbach at bitstream.ca [c] 416.668.0034 [w] www.bitstream.ca ".

Re: [Flashcoders] How do you code your Flash applications?

2006-02-07 Thread Nathan Derksen
It's not a matter of getNextHighestDepth not working, it's a matter of controlling the depth to avoid unexpected behaviors. I've never had a problem with accidentally creating a movie clip at the same depth as something else, and that's one less thing I have to think about when debugging

Re: [Flashcoders] Date-Classes

2006-02-07 Thread JesterXL
Date Formatter http://www.darronschall.com/weblog/archives/40.cfm http://www.darronschall.com/weblog/archives/52.cfm Date Prototypes http://proto.layer51.com/l.aspx?p=9 - Original Message - From: "Michael Stuhr" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 07, 2006 11:34 AM S

Re: [Flashcoders] Date-Classes

2006-02-07 Thread Martin Wood
theres a simple date formatter at osflash, but what kind of date classes do you need? http://osflash.org/openclasslibrary (which reminds me i really should sort out that paginator thing i put up, its neither well documented nor well tested..) martin Michael Stuhr wrote: i need some Links t

Re: [Flashcoders] Audio Chat

2006-02-07 Thread Chris Allen
You can also use Red5 http://osflash.org/red5 or Flash Media Server for this. -Chris On 2/7/06, Ramon Tayag <[EMAIL PROTECTED]> wrote: > > Thanks for that Franto! > > I did a bit more reading and one can use PHP sockets to get it done. > Have you guys done this before? > > Thanks > > On 2/7/06, f

[Flashcoders] Video stopped at beginning doesn't appear on stage

2006-02-07 Thread Mendelsohn, Michael
Hi list... I have a video that I am trying to hold on frame 1. Trying to do that through code makes the video mysteriously not appear on the stage. Is there any code that can hold the video at frame 1? I've tried: vid.stop(); vid.gotoAndStop(1); vid.vidContent.stop(); vid.vidContent.gotoAndStop

[Flashcoders] Date-Classes

2006-02-07 Thread Michael Stuhr
i need some Links to Date-Classes, anyone has some ? micha ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Finding the swf background colour

2006-02-07 Thread Mike Mountain
As with the FPS - but all the info is there - original to each swf, we just can't get at it - seems silly when we can get all the System.capabilities that we can't even get the most basic of info pertaining to the swf we're in. M > -Original Message- > From: [EMAIL PROTECTED] > [mailto

Re: [Flashcoders] Chinese / Japanese Text Input

2006-02-07 Thread Alex McCabe
Okay! Device fonts seems to be the consensus. Thanks. Some more info about Tahoma in case anyone was wondering - I did some research on it - the Chinese characters are definitely available in Tahoma in some installations but never Japanese characters. On 2/7/06, Fitzpatrick, Kevin <[EMAIL PROTECT

Re: [Flashcoders] Finding the swf background colour

2006-02-07 Thread Éric Thibault
It seems the same issue as to get the Stage's dimensions of a loaded SWF inside another SWF... the Stage's color is not transfered... Mike Mountain wrote: Yeah, the background colour information get's included in the swf - otherwise it wouldn't appear when you play the swf back in the flash p

Re: [Flashcoders] Dynamic ring shape

2006-02-07 Thread Helen Triolo
Yes, just draw the hole before you apply endFill: http://flash-creations.com/notes/dynamic_drawingapi.php#cutout Helen Patrick Matte wrote: Is it possible to create a ring shape dynamically ? Like punching a cirle from another circle. ___ Fl

Re: [Flashcoders] suddenly v2 Button not drawing any border or bg

2006-02-07 Thread Michael Stuhr
Ben Smeets schrieb: Another one of those v2 headaches :) this one's a little heavier i think. has to do with Fla personally i think. Not that's it's wrong bashing on v2 :-) micha ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http:/

[Flashcoders] Dynamic ring shape

2006-02-07 Thread Patrick Matte
Is it possible to create a ring shape dynamically ? Like punching a cirle from another circle. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Finding the swf background colour

2006-02-07 Thread Adrian Lynch
A, that makes sense. I wonder why you can't get to it then. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mike Mountain Sent: 07 February 2006 15:15 To: Flashcoders mailing list Subject: RE: [Flashcoders] Finding the swf background colour Yeah, the ba

Re: [Flashcoders] How do you code your Flash applications?

2006-02-07 Thread valters boze
try this, i made it when flash8 was beta.. http://www.m3style.lv/bo/experiments/flash2jpg/ > sir > i have anothe problem. i want to > save a movie clip as image(jpeg)on a flash button click any ides pls mail > to me __ Do You Yahoo!? Tire

RE: [Flashcoders] suddenly v2 Button not drawing any border or bg

2006-02-07 Thread Ben Smeets
Another one of those v2 headaches :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Stuhr Sent: dinsdag 7 februari 2006 16:11 To: Flashcoders mailing list Subject: Re: [Flashcoders] suddenly v2 Button not drawing any border or bg Ben Smeets schr

[Flashcoders] Reading material pointers, please

2006-02-07 Thread Jim Ault
I would like to do some homework, but not sure where to start to get the best answer. Situation: Flash MX, AS, OSX 10.4.2 loading multiple SWFs in sequence as user demand, each SWF containing about 10-15 jpgs (436x327), nothing fancy Each SWF is the same, just different folder level, where I use

RE: [Flashcoders] Finding the swf background colour

2006-02-07 Thread Mike Mountain
Yeah, the background colour information get's included in the swf - otherwise it wouldn't appear when you play the swf back in the flash player external to the ide. It can be overidden by a param in html. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behal

Re: [Flashcoders] Audio Chat

2006-02-07 Thread Ramon Tayag
Thanks for that Franto! I did a bit more reading and one can use PHP sockets to get it done. Have you guys done this before? Thanks On 2/7/06, franto <[EMAIL PROTECTED]> wrote: > just FYI free flash video audio chat :) > http://www.franto.com/blog2/free-flash-webchat-for-your-site > > > On 2/7/

Re: [Flashcoders] suddenly v2 Button not drawing any border or bg

2006-02-07 Thread Michael Stuhr
Ben Smeets schrieb: Did you compile it on exactly the same pc/environment? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Stuhr Sent: dinsdag 7 februari 2006 11:05 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] suddenly v2 Button

Re: [Flashcoders] Audio Chat

2006-02-07 Thread franto
just FYI free flash video audio chat :) http://www.franto.com/blog2/free-flash-webchat-for-your-site On 2/7/06, Ramon Tayag <[EMAIL PROTECTED]> wrote: > Hi everyone, > > I want to know how feasible it would be to create voice chat in Flash. > What would you need to receive, as back end, the micr

RE: [Flashcoders] Finding the swf background colour

2006-02-07 Thread Adrian Lynch
That's the thing, are you sure it's in the swf? Maybe it's just the fla. Ade -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mike Mountain Sent: 07 February 2006 14:34 To: Flashcoders mailing list Subject: RE: [Flashcoders] Finding the swf background colour

RE: [Flashcoders] suddenly v2 Button not drawing any border or bg

2006-02-07 Thread Ben Smeets
Did you compile it on exactly the same pc/environment? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Stuhr Sent: dinsdag 7 februari 2006 11:05 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] suddenly v2 Button not drawing any border

[Flashcoders] Audio Chat

2006-02-07 Thread Ramon Tayag
Hi everyone, I want to know how feasible it would be to create voice chat in Flash. What would you need to receive, as back end, the microphone sound of the users? A Java server? Thanks, -- Ramon Miguel M. Tayag ___ Flashcoders mailing list Flashcoder

RE: [Flashcoders] Finding the swf background colour

2006-02-07 Thread Mike Mountain
Well that's just plain dumb - it should be part of the stage object, the info is contained in the swf. I'm trying to write a double buffering class, the first thing it has to do is take a snapshot of the stage to make an opaque copy - but it only sees what's on the stage. That means I'll have to g

RE: [Flashcoders] Chinese / Japanese Text Input

2006-02-07 Thread Fitzpatrick, Kevin
! It just occurred to me that I've been answering the wrong question. I've been talking about output, not input. I would absolutely agree with Kenneth on input, uses device fonts for inputs. Sorry about the miscommunication. Kevin Fitzpatrick Flash Designer, SAP.com Web Services Team - SAP Glo

RE: [Flashcoders] Chinese / Japanese Text Input

2006-02-07 Thread Fitzpatrick, Kevin
Well, I definitely can't claim to be an expert on the issue, however I'm sure we're using Tahoma 12 Bold in all our files. Perhaps something is being set by the flash player in those locales, such as our Chinese site (http://www40.sap.com/china/index.epx), if the font is not found but we have set

Re: [Flashcoders] Finding the swf background colour

2006-02-07 Thread Stan Vassilev
Well it's not :) In Flash 8 it can be possible by drawing making it opaque, drawing it and sampling it (maybe) but that, I've not tried. You can pass the bg color from HTML as a parameter and set it as well. And with two tags, yes this means total of 4 copies of the bg color per flash instance

[Flashcoders] Finding the swf background colour

2006-02-07 Thread Mike Mountain
I must be having an off day - but I can't for the life of me find out how to get the colour of the swf's background as set in the properties panel in the IDE using actionscript. Surely it's possible? Cheers M ___ Flashcoders mailing list Flashcoders@ch

Re: [Flashcoders] suddenly v2 Button not drawing any border or bg

2006-02-07 Thread Janis Radins
I've had sutch issue with movies embeded in html with wmode=transparent property but those were self made ones. hope this will help, anyways worth to try 2006/2/7, Michael Stuhr <[EMAIL PROTECTED]>: > > i just tested a fairly large project which i compiled nice yesterday, but > today, > all v2 Bu

Re: [Flashcoders] How do you code your Flash applications?

2006-02-07 Thread syam s
sir i have anothe problem. i want to save a movie clip as image(jpeg)on a flash button click any ides pls mail to me - Yahoo! Messenger NEW - crystal clear PC to PC calling worldwide with voicemail __

Re: [Flashcoders] plz suggest.....urgent

2006-02-07 Thread srishti
oh sorry,i don't have much idea regarding your query.i am new to flash. The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s)and may contain confidential or privileged information. If you are not the intend

Re: [Flashcoders] plz suggest.....urgent

2006-02-07 Thread syam s
hai... sorry i have no idea about that. i have anothe problem. i want to save a movie clip as image(jpeg)on a flash button click any ides pls mail to me - To help you stay safe and secure online, we've developed the all new Yahoo! Security Cen

Re: [Flashcoders] plz suggest.....urgent

2006-02-07 Thread syam s
hai... sorry i have no idea about that. i have anothe problem. i want to save a movie clip as image(jpeg)on a flash button click any ides pls mail to me - Yahoo! Messenger NEW - crystal clear PC to PC calling worldwide with voicemail

[Flashcoders] suddenly v2 Button not drawing any border or bg

2006-02-07 Thread Michael Stuhr
i just tested a fairly large project which i compiled nice yesterday, but today, all v2 Buttons lost their complete background and border. only the label and the icon are still visible. has anybody seen such a strange behaviour before ? micha ___ Fla

Re: [Flashcoders] plz suggest.....urgent

2006-02-07 Thread srishti
Well,Grant ,,thanks a lot for ur suggestions. The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s)and may contain confidential or privileged information. If you are not the intended recipient, please notif

Re: [Flashcoders] plz suggest.....urgent

2006-02-07 Thread srishti
its 2pm here...well,i think,its more or less the same which i am trying to implement.what is the logic behind hiding datagrid columns. The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s)and may contain c

Re: [Flashcoders] plz suggest.....urgent

2006-02-07 Thread Grant Cox
Well, not really - it's part of a larger application, and I have certain business obligations not to just give it all away. However, if you are stuck with something specific then I don't mind helping out (although it is almost 7pm here - I will be heading home soon). Basically what we did was

Re: [Flashcoders] Disabling FLVPlayback component skin controls

2006-02-07 Thread srishti
Grant,can u plz send me the code which u had already implemented for hiding datagrid columns The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s)and may contain confidential or privileged information. If y

Re: [Flashcoders] Disabling FLVPlayback component skin controls

2006-02-07 Thread Grant Cox
Well, I got it working to my satisfaction. Definitely hacky, but at least it works. In case anyone else is looking for this, the code used is below (the FLVPlayback component instance name is "videoScreen"). BEGIN CODE private functi

Re: [Flashcoders] plz suggest.....urgent

2006-02-07 Thread srishti
Hi Grant, Can u plz send me ur code for the same...the way u implemented... The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s)and may contain confidential or privileged information. If you are not the