[Flashcoders] Getting modified variable without return

2011-01-21 Thread ktt
ntListener( Event.COMPLETE, onSendUserComplete, false, 0, true ); function onSendUserComplete( e:Event ):void { trace( e.target.returnData ); } What is best practice method to do this? Thank you in advance, Ktt ___ Flashcoders mailing list F

Re: [Flashcoders] Highligting words in a textField

2010-08-15 Thread ktt
Thank you for reply. I use setTextFormat, but the parsing of textfield's lines content is quite tricky. I can extract text with getLineText, but having problems accesing a word's indexOf. Regrds, Ktt --- On Mon, 8/16/10, Henrik Andersson wrote: > From: Henrik Andersson

[Flashcoders] Highligting words in a textField

2010-08-15 Thread ktt
Hello, I have a multiline text in a dynamic textfield with a scroll. How is it possible to higlight some words in a textFiled which is splited to lines (\n) ? Thank you in advance, Ktt ___ Flashcoders mailing list Flashcoders

[Flashcoders] AS2 to AS3 conversion: prototype

2010-08-06 Thread ktt
While converting AS2 to AS3 I struck with some issues with converting prototype into classes: AS2 code 1) _global.Treemap = function(leaf) { this.leaf = leaf; }; 2) Treemap.prototype.appleTree = function(abc) { for (var i = 1; ihttp://chattyfig.figleaf.com/mailman/listinfo/flash

[Flashcoders] Actionscript 1.0 tools

2010-07-30 Thread ktt
Hello, What tools should I use to compile Actionscript 1.0 ? Is it possible to use CS4 with Flash player 10.1? Regards, Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo

[Flashcoders] AS3 text effects library

2010-07-09 Thread ktt
Hello, Are there any goog Actionscript text effects library? For placing text on a curved line, glyph distort etc. Thank you in advance, Kioshin ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman

RE: [Flashcoders] Styling the List component

2010-06-08 Thread ktt
> Home Page: http://keithreinfeld.home.comcast.net > > > -Original Message- > > From: flashcoders-boun...@chattyfig.figleaf.com > [mailto:flashcoders- > > boun...@chattyfig.figleaf.com] > On Behalf Of ktt > > Sent: Tuesday, June 08, 2010 3:15 PM > > To: Flashcoder

[Flashcoders] Styling the List component

2010-06-08 Thread ktt
Hello, I tried to apply setStyle to list component: myList.setStyle("textFormat",tfList); and: myList.setRendererStyle("textFormat", tfList); But these do not work. Regards, Ktt ___ Flashcoders mailing list Flashcoders@c

[Flashcoders] FLVPlayback and NetStream

2010-05-30 Thread ktt
Hello, I can't get NetStream to work with FLVPlayback component. The error: 1061: Call to a possibly undefined method attachNetStream through a reference with static type fl.video:FLVPlayback. Is it possible to use FLVPlayback component with NetStream at all? Regards

[Flashcoders] Can't change SharedObject slot after relogin

2010-03-20 Thread ktt
Hello, I can't change SharedObject slots after relogin // Login myConnection.sharedWObject = SharedObject.getRemote(adminShObjName, _createFMSConnection.uri, true); myConnection.shar

[Flashcoders] SharedObject slot seems to be inaccessible

2010-03-10 Thread ktt
Conn.sharedWObject.setDirty("guesta ctive"); createFMSConn.sharedWObject.connect(_createFMSConn); But I can't update the slot as Guest. Slot remains with "Guest nonactive". sharedWObject is defined as public static. Maybe to use setProperty? Thank you in advance, Ktt _

Re: [Flashcoders] Can't share SharedObject

2010-03-04 Thread ktt
edWObject.data["UsersCounterRegister"]["useractive"] > = "On"; > > Just a thought. > > Karl > > > > > On Mar 4, 2010, at 1:51 AM, ktt wrote: > > Strange SharedObject property error: > > //1 > if ( loginResult == "a

[Flashcoders] Can't share SharedObject

2010-03-03 Thread ktt
Strange SharedObject property error: //1 if ( loginResult == "admin") { var myConnectedUsersRegistry:Object = {tutoractive:"0", useractive:"0"}; fMSConnection.sharedWObject = SharedObject.getRemote("demo", _createfMSConnection.uri, true); fMSConnection.sharedWObject.connect(_createfMSConn ectio

[Flashcoders] Security sandbox error during Upload/Download

2010-02-27 Thread ktt
Hello, I created file Upload/Download function with FileReference, but on different computer I get errors: Error #2044: Unhandled SecurityErrorEvent:. text=Error #2048: Security sandbox violation: http://mydomain.net/myboard/board-1.swf cannot load data from http://www.mydomain.net/myboard/upl

[Flashcoders] Unable to find non-persistent SharedObject

2010-02-21 Thread ktt
Remote line and in Flash Media Server script.. Thank you in advance, Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Limit TextFiled width

2010-02-01 Thread ktt
Hello, TextFiled is placed on a larger box A. How to limit input to TextField, when it touches(visualy) one of the box sides? TextField is not a child of a box A. Regards, ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] SharedObject.lock and client side code

2010-01-20 Thread ktt
vance, Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Actionscript certificate

2010-01-20 Thread ktt
Hello, Is there any Actionscript(or Flash) certificate like a well known and respected Zend PHP? I think after appearance of Actionscript 3 is time to have one.. Maybe Adobe has some programs? Ktt ___ Flashcoders mailing list Flashcoders

[Flashcoders] Best MovieClip removal practice

2010-01-06 Thread ktt
actually "working" MovieClips and Events. What do you think? Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] detect and remove listeners

2010-01-06 Thread ktt
35 AM, Karl DeSaulniers wrote: > > > Maybe create a class or function that applies and > removes the listeners? > > > > Karl > > > > > > > > On Jan 6, 2010, at 5:21 AM, Henrik Andersson wrote: > > > >  ktt wrote: > >> > >&g

[Flashcoders] detect and remove listeners

2010-01-05 Thread ktt
Hello, What is the best method to iterate through MovieClip children, check if they have listeners and if they have - remove them? Thank you in advance, Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

[Flashcoders] How to send a signal to download a file?

2009-12-29 Thread ktt
Hello, After file was uploaded to a server (via Filereference) I want to pass a signal and a file link to a client using the same SharedObject. What should I use? SharedObject.send()? Thank you in advance, Ktt ___ Flashcoders mailing list

[Flashcoders] .fla in Flex/Flash builder

2009-12-10 Thread ktt
Hello, I have .fla file with numerous .swf elements in library and I would like to switch to Flex/Flash builder. Shoul I convert all elements to swc manualy or there is other possible solution? Thank you in advance, Ktt ___ Flashcoders

[Flashcoders] Transfering a file via flash interface

2009-12-03 Thread ktt
Hello, I would like to transfer a file from one flash applet(they are connected to Flash communication server) to another. What is the best method to achieve this? To use Flahs communication server or www server? Thank you in advance, Ktt

Re: [Flashcoders] Detect child parent

2009-11-22 Thread ktt
strangely trace (myChild.parent) outputs [object someObject] but it doesn't work when I try to remove via myChild.parent.removeChild(myChild) or via reference.. the child before was added simply by addChild(myChild) Ktt --- On Sun, 11/22/09, Chris wrote: > From: Chris >

[Flashcoders] Detect child parent

2009-11-22 Thread ktt
Hello I would like to remove Child, but can't detect it's parent. How to remove a Child without knowing it's parent? mychild.parent.removeChild(mychild) doesn't work.. Ktt ___ Flashcoders mailing list Flashcoders@chatty

[Flashcoders] Mouse bounds

2009-11-13 Thread ktt
Hello, I'm writing a small drawing program and wonder what is the best method to limit mouse dragging area? 1. if (mouseX < 100) {...} 2.Event.MOUSE_LEAVE or any other? Could you advice? Thank you in advance, Ktt ___ Flashcoders

[Flashcoders] Update TextFields after SharedObject was updated

2009-11-02 Thread ktt
Hello, I have two TextFields and their data written to SharedObject. How to update these TextFields after data was updated in SharedObject? Could you recommend any good resource? Regards, Ktt ___ Flashcoders mailing list Flashcoders

[Flashcoders] Movieclip in a remote shared object

2009-10-17 Thread ktt
Hello, Is it possible to store Movieclip in a remote shared object? Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Access shared object from other class

2009-10-14 Thread ktt
I need to connect to "sharedBoard02" directly? Regards, Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Best way to detect key KEY_DOWN on MovieClip

2009-09-24 Thread ktt
Hello, I would like to add listener to movieclip, listenining for DELETE. What is the best way to do that? In Actionscript 3 it gets complicated. Thank you in advance, Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

[Flashcoders] How to set children to null? Mysterious garbage collector question

2009-09-15 Thread ktt
Hello, I'm removing children of movieclip with: var count:int = myroot.numChildren; for (var i:int=0; ihttp://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Access dynamically created MovieClip from class?

2009-09-11 Thread ktt
e class that will be compiled is the one in > C:\Myprojects > > \someProject\src\, because it has a higher priority, > since it's set  > > up in the fla file. Take that into account to avoid > some hard to  > > find bugs caused by these kind of "conflicts"

RE: [Flashcoders] Access dynamically created MovieClip from class?

2009-09-11 Thread ktt
f America Flash Platform Community  > (note: this is for Bank of America employees only) > > > > > -Original Message- > From: flashcoders-boun...@chattyfig.figleaf.com > [mailto:flashcoders-boun...@chattyfig.figleaf.com] > On Behalf Of ktt > Sent: Friday, Se

[Flashcoders] Access dynamically created MovieClip from class?

2009-09-11 Thread ktt
Hello, I have created Movieclip in main actionscript file main.as : var drawingSign:Movieclip = ne MovieClip(); drawingSign.x = 40; drawingSign.y = 40; How could I access it (add listeners etc.) from a class file? Is it possible? Thank you in advance, kioshin __

RE: [Flashcoders] Access dynamically created MovieClip from class?

2009-09-11 Thread ktt
m: flashcoders-boun...@chattyfig.figleaf.com > [mailto:flashcoders-boun...@chattyfig.figleaf.com] > On Behalf Of ktt > Sent: vrijdag 11 september 2009 15:40 > To: Flash Coders List > Subject: [Flashcoders] Access dynamically created MovieClip > from class? > > Hello, > >

[Flashcoders] Elastic effect doesn't work in Flash

2009-08-31 Thread ktt
(release, releaseOutside){ stopDrag(); drag=false; } --- Thank you in advance. Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Image as intro to FLV

2006-11-24 Thread ktt
hould be visible before mouse click. Could you forward best resources about flash video embeding? Thank you in advance, ktt Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail beta.