SV: [Flashcoders] Flex 2 Datagrid/Tabnavigator bug?

2006-03-26 Thread Fredrik Sandberg
Thank you very much! Very helpfulnow it works as I want it to! And as I´ve been reading further during the weekend the grid shouldn´t be loaded with the data-method (an object) at all if the data is expected to be changeable... /Fredrik -Oprindelig meddelelse- Fra: [EMAIL PROTECTED]

[Flashcoders] >> Textfield LINE RETURN

2006-03-26 Thread Laurent CUCHET
Good morning, I need o put a return or enter to go to next line, have an Idea how to do in a Var ?? Thank you Need : Morning John, Your site is beautiful Have a good day AS2 text1_txt.text = "Morning john, Your site is beautiful. Have a good day";

Re: [Flashcoders] Multiuser A/V Chat ? Which Server?

2006-03-26 Thread Rich Rodecker
its not a server per se, but maybe you can check out some of the solutions over at userplane.com On 3/26/06, Julien Vignali <[EMAIL PROTECTED]> wrote: > You may try the open source Red 5 stream server : > "Red5 is a server that not only streams content to the Flash plugin, but > it can push calls

Re: [Flashcoders] Multiuser A/V Chat ? Which Server?

2006-03-26 Thread Julien Vignali
Hmm sorry, it's monday morning, I hadn't read yet your next coding-style posts ( serverName != "red5")... so ignore my previous post ;-) Yehia Shouman a écrit : Dear Coders, I have to create an Audio/Video Flash multiuser Chat, with text messaging. What are my options as for the server ? I d

Re: [Flashcoders] Multiuser A/V Chat ? Which Server?

2006-03-26 Thread Julien Vignali
You may try the open source Red 5 stream server : "Red5 is a server that not only streams content to the Flash plugin, but it can push calls and information to the Flash client! It can also receive video/audio/data from a flash client and either save or rebroadcast that content." http://osfla

Re: [Flashcoders] >> Link and setTextfield with vars

2006-03-26 Thread Arul Prasad
Set your textFormat to a textField, not to a string. Change the last block to texteCliquable_inst.text = pre1+pre2; texteCliquable_inst.setTextFormat(0,pre1.length-1,style1); texteCliquable_inst.setTextFormat(pre1.length ,texteCliquable_inst.text.length,style2); delete style1; delete style2; Che

[Flashcoders] >> Link and setTextfield with vars

2006-03-26 Thread Laurent CUCHET
Good morning, I need to get multiple link with a dynamic text There is 2 var : var1 and var2, 2 styles : style1 and style2 Why this syntax doesn't work, have you got an idea ?? Thank you Laurent var pre1="Click here "; var style1 = new TextFormat(); style1.url = "http://www.macromedia.com";;

[Flashcoders] trouble with alert component

2006-03-26 Thread Robin Burrer
Hi there, When I send a alert message to the v2 alert component it dose not show the last couple of lines of the message. The wired thing is that on some computers all characters of the message are displayed. It length of the message dose not really make a difference though. Regardless if I want t

[Flashcoders] attachMovie("graphic_on_stage_created_by_user")??

2006-03-26 Thread Monicque Sharman
I have an area on the stage that the user can draw on The user can make a nice pic, that I need to print out. However, the client wants other stuff on the print out like headings, etc. Using PrintJob.addPage(0, {xMin:20,xMax:400, yMin:20, yMax300}) works well, but it only prints the area

RE: [Flashcoders] Fw: Multiuser A/V Chat ? Which Server?

2006-03-26 Thread Scott Hyndman
Read his code more carefully. if(currentCoder.identifiedServer.serverName.toLowerCase()!="red5"){ Scott -Original Message- From: [EMAIL PROTECTED] on behalf of John Grden Sent: Sun 3/26/2006 6:59 PM To: Flashcoders mailing list Cc: Subject:Re: [Flashcoders] Fw: Mult

Re: [Flashcoders] upload a file

2006-03-26 Thread f a r i d | s i l v a | a b o i d
check out this http://sourceforge.net/projects/yamzbrowser/ -- SalU2 f a r i d | s i l v a | a b o i d www.e-foco.com.ar tel: +54 11 4115-0773 ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chatt

Re: [Flashcoders] Fw: Multiuser A/V Chat ? Which Server?

2006-03-26 Thread John Grden
Red5 - Open source Flash server www.osflash.org/red5 It's in beta, we're at 0.3, soon to release .4 - not ready for production, but you should check it out anyway ;) On 3/26/06, Yehia Shouman <[EMAIL PROTECTED]> wrote: > > Come on people ! > for > imports flashcoders.brains.servers > function in

Re: [Flashcoders] hitTest

2006-03-26 Thread Yotam Laufer
Try this: tempShape.hitTest(tempShape._x + i,tempShape._y + y,false) I believe you need to check the coordinates as in the parent's scope. Yotam. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://ch

Re: [Flashcoders] hitTest

2006-03-26 Thread riccardo.roasio
Here is my code : this.createEmptyMovieClip("tempShape",20,1): tempShape.lineStyle... tempShape.moveTo(x1,y1): tempShape.lineTo ... this tempShape is a shape with a strange form... i need to know if a particualr pixel hit this shape for(i=0:ihttp://chattyfig.figleaf.com/mailman/listinfo/flas

Re: [Flashcoders] hitTest

2006-03-26 Thread Adrian Park
Hi Riccardo, I'd have to see a sample of your code and/or the .fla to work out exactly what's happening. I'm going away for holiday for a week from tomorrow so won't be able to help out with this. I hope someone else can help you out. Good luck! Adrian P On 3/27/06, [EMAIL PROTECTED] <[EMAIL P

Re: [Flashcoders] hitTest

2006-03-26 Thread riccardo.roasio
It return me always true...is it possible??? ___ 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

Re: [Flashcoders] hitTest

2006-03-26 Thread Adrian Park
Hi Riccardo, You can use the following form of hitTest for this: MovieClip.hitTest (x, y, shapeFlag ); In your case, the MovieClip will be the movie clip in which you've drawn the shape and x and y will be the coordinates of your pixel (in the global coordinate space). shapeFlag is an optional

Re: [Flashcoders] >> setStyle TextFormat

2006-03-26 Thread Michael Bedar
Set the text format AFTER you set the text or htmlText. On Mar 26, 2006, at 4:49 PM, Laurent CUCHET wrote: There is a var and a textfield with style, var don't get the style, do you know why ?? Thank you, Laurent var style1 = new TextFormat(); style1.url = "http://www.macromedia.com";; sty

[Flashcoders] hitTest

2006-03-26 Thread riccardo.roasio
Is possible to use hitTest function to check if a particolar pixel is inside a run-time created shape? Thanks ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/

[Flashcoders] >> setStyle TextFormat

2006-03-26 Thread Laurent CUCHET
There is a var and a textfield with style, var don't get the style, do you know why ?? Thank you, Laurent var style1 = new TextFormat(); style1.url = "http://www.macromedia.com";; style1.font = "Verdana"; style1.italic = true; style1.size = 17; var pre1="Click here"; var style2 = new TextFormat

Re: [Flashcoders] Enourmous data Transfer by Flash.

2006-03-26 Thread Johannes Nel
>>Theoretically Flex is better fit for the job huh? do you mean as3 and the 8.5 runtime is better. yes that would be true, but flex 1.5 is as apt as flash for large data transfers. On 3/26/06, elibol <[EMAIL PROTECTED]> wrote: > > Theoretically Flex is better fit for the job, but practically spea

Re: [Flashcoders] Enourmous data Transfer by Flash.

2006-03-26 Thread elibol
Theoretically Flex is better fit for the job, but practically speaking, I wouldn't recommend Flex at this time. If you already have experience with AS 2.0 and the Flash IDE, learning to use Flex builder, MXML, and AS 3.0 will take time away from your production schedule, and with beta products, f*e

RE: [Flashcoders] RE: Classes and setInterval ... (Stephen Ford)

2006-03-26 Thread Scott Hyndman
Those "inverted commas" are called quotes. :) Scott -Original Message- From: [EMAIL PROTECTED] on behalf of Stephen Ford Sent: Sun 3/26/2006 5:19 AM To: flashcoders@chattyfig.figleaf.com Cc: Subject:[Flashcoders] RE: Classes and setInterval ... (Stephen Ford) Thanks

RE: [Flashcoders] Enourmous data Transfer by Flash.

2006-03-26 Thread stacey
Break it apart by process - login, registration, search, enter, edit, etc. That will then break up the amount of information you are passing back and forth - remoting would be ideal, but if you could still manage using a drill down type of approach for retrievals - first you get the top level info,

RE: [Flashcoders] Enourmous data Transfer by Flash.

2006-03-26 Thread Kevin Aebig
Even though Flex is a solid answer, you can still do this directly with Flash by breaking up the various pieces into a "wizard" type app and using remoting. Cheers, !k -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of hidayath q Sent: Friday, March 24, 200

Re: [Flashcoders] RE: Classes and setInterval ... (Stephen Ford)

2006-03-26 Thread stacey
My version is the alternative way - not sure about the documentation on it, although I am sure its in there somewhere. Found this: http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004&file=1662.html SetInterval returns you a value- a

Re: [Flashcoders] OT: need turkish translation for some expressions

2006-03-26 Thread Martin Weiser
Thank you so much, i really need it, thanks Best Martin - Original Message - From: "Kevin Bowers" <[EMAIL PROTECTED]> To: "'Flashcoders mailing list'" Sent: Sunday, March 26, 2006 1:49 PM Subject: RE: [Flashcoders] OT: need turkish translation for some expressions Hi, My other h

[Flashcoders] Fw: Multiuser A/V Chat ? Which Server?

2006-03-26 Thread Yehia Shouman
Come on people ! imports flashcoders.brains.servers function informMeWithServerName() { var supportsAudioVideoStreaming:Boolean=true; var isOpenSource:Boolean =true; var Server:DotNetBasedServer= new DotNetBasedServer(supportsAudioVideoStreaming, isOpenSource) var i:Number=0; var lo

[Flashcoders] Multiuser A/V Chat ? Which Server?

2006-03-26 Thread Yehia Shouman
Dear Coders, I have to create an Audio/Video Flash multiuser Chat, with text messaging. What are my options as for the server ? I don't want to use any of Macromedia's Servers. I would love to hear there is an open source dotNet server as well. Are there any ? Please advice me on which way t

RE: [Flashcoders] OT: need turkish translation for some expressions

2006-03-26 Thread Kevin Bowers
Hi, My other half is just involved in an on-line chat with a Turkish friend so I have managed to get some translations for you. Incomplete input data = Tamamlanmamis giris verisi Incorrect data = Hatali veri Slide time= Iki slayt syfasi arasida gecen zaman Total time = Toplam

[Flashcoders] RE: Classes and setInterval ... (Stephen Ford)

2006-03-26 Thread Stephen Ford
Thanks Stacey, Yes it seems you need to pass in the parameter of 'this' before the function name and time, although I couldn't find reference to this in any of the manuals I looked in. Maybe they all just speak of AS1 and not class use of setInterval. _nInt = setInterval(this, "myFunction", 1