Re: [Flashcoders] Can't share SharedObject

2010-03-04 Thread Karl DeSaulniers
What is the reason this line is omitted from the second login? fMSConnection.sharedWObject.setProperty (UsersCounterRegister,myConnectedUsersRegistry); It seems to me that you would need this to set the property of UsersCounterRegister in this line

Re: [Flashcoders] Can't share SharedObject

2010-03-04 Thread ktt
--- On Thu, 3/4/10, Karl DeSaulniers k...@designdrumm.com wrote: From: Karl DeSaulniers k...@designdrumm.com Subject: Re: [Flashcoders] Can't share SharedObject To: Flash Coders List flashcoders@chattyfig.figleaf.com Date: Thursday, March 4, 2010, 10:17 AM What is the reason this line is

Re: [Flashcoders] Re: Pop up window locally

2010-03-04 Thread natalia Vikhtinskaya
Thank you, it seems is more stable way. 2010/3/4 Chris Foster cfos...@catalystinteractive.com.au: Don't call the 'window.open' method from Flash, write a function in the HTML page and call that function from Flash. Here's an example of the function on the HTML page: loadPopup =

Re: [Flashcoders] how to reduce CPU usage

2010-03-04 Thread Fahim Akhter
There is a difference between invisible and not being rendered my friend, even if you can't see something doesn't mean its not there ;) *Fahim Akhter* |* Software Design Engineer | White Rabbit Inc* | +92.321.5307672 | akhter.fa...@gmail.com | http://apps.facebook.com/feline-frenzy/ On Thu, Mar

[Flashcoders] can't remove listener

2010-03-04 Thread Kurt Dommermuth
Hi All, I've searched and read a lot about people having difficulties using removeEventListener, but I just don't get why I'm having problems removing one. I'm sort of new to AS3 so that would probably explain a lot. I've tried so many variations of the following code that it probably

Re: [Flashcoders] Rcommendation for server side Java remoting libs - AS3 Flash compatible

2010-03-04 Thread Matt Muller
Thanks for the response. So you can use BlazeDS from flash. Im just wondering how you would do that taking into account security tokens etc. As far as I can tell its only meant for Flex unless you compile the flex libs to use from flash. Can you point me in the right direction please? cheers,

Re: [Flashcoders] Draw Outline Slowly

2010-03-04 Thread Victor Subervi
On Wed, Mar 3, 2010 at 11:22 AM, Ivan Dembicki ivan.dembi...@gmail.comwrote: Hello Victor, Wait a minute! How's that work on curves? Can I scale that, too? you have one way only: use Bezier package http://bezier.googlecode.com demo:

Re: [Flashcoders] Draw Outline Slowly

2010-03-04 Thread allandt bik-elliott (thefieldcomic.com)
that's amazing a On Thu, Mar 4, 2010 at 12:44 PM, Victor Subervi victorsube...@gmail.comwrote: On Wed, Mar 3, 2010 at 11:22 AM, Ivan Dembicki ivan.dembi...@gmail.com wrote: Hello Victor, Wait a minute! How's that work on curves? Can I scale that, too? you have one way only: use

[Flashcoders] Mac Script Window Issue

2010-03-04 Thread David Benman
Often the script window in Flash CS4 flows off the bottom of my screen and then I can't resize the window smaller because I can't move the window up anymore and the resize area is off the bottom of the screen. Anybody have an idea on how to stop this or fix it easily? Right now I reset the

[Flashcoders] remove Listener problems written better....

2010-03-04 Thread Kurt Dommermuth
Ok, I sent a note for the last post of mine to be ignored, but it's awaiting moderation. anyway, the following is written more clearly. The problem is I can't remove a listener. Probably my noob status with as3. the remove listener works within the ENTER_FRAME fuction itself, but if I

[Flashcoders] Problem Importing Class

2010-03-04 Thread Susan Day
Hi; I have this line in the importing package: import Star; and this in the function of the same package: Star(); Star package has this code: package { import flash.display.MovieClip; public class Star extends MovieClip { public function Star() { trace('star'); } } } When I run the

RE: [Flashcoders] Problem Importing Class

2010-03-04 Thread Keith Reinfeld
This reproduces the error: package { import flash.display.MovieClip; import Star; public class App extends MovieClip { public function App() { trace('app'); Star(); } } }

Re: [Flashcoders] Problem Importing Class

2010-03-04 Thread Henrik Andersson
Susan Day wrote: 1136 Incorrect number of arguments. Expected 1. Star.as What argument is it expecting?! The object to convert to the type. You omitted the keyword new and got the function style typecast. ___ Flashcoders mailing list

Re: [Flashcoders] how to reduce CPU usage

2010-03-04 Thread Steven Sacks
On 3/4/2010 2:04 AM, Fahim Akhter wrote: There is a difference between invisible and not being rendered my friend, even if you can't see something doesn't mean its not there ;) Your intentions are correct, even if your terminology is not. Don't confuse the word rendered with the word

[Flashcoders] Dynamic text animation library

2010-03-04 Thread Guilherme Almeida
Hi, check out the TextAnim library. A class for dynamic text animation in AS3, that is event based and tween engine independent. TextAnim works creating blocks of text, then applying functions that you create to each one of them. We call these functions as effects. These functions must receives a

Re: [Flashcoders] Mac Script Window Issue

2010-03-04 Thread Karl DeSaulniers
Window menu - cascade Karl Sent from losPhone On Mar 4, 2010, at 7:24 AM, David Benman d...@dbenman.com wrote: Often the script window in Flash CS4 flows off the bottom of my screen and then I can't resize the window smaller because I can't move the window up anymore and the resize area

Re: [Flashcoders] how to reduce CPU usage

2010-03-04 Thread Steven Sacks
It only makes sense that Flash decompresses jpgs when it loads them. The visible property has nothing to do with that. When you say visible = true, that would be the absolute worst time to decompress the image. Imagine decompressing 1000 jpgs at once in a for loop. Imagine when setting

[Flashcoders] (no subject)

2010-03-04 Thread Michael Teniente
I want to ask a question about embedding fonts without flash. I want to use 3.0 in the flex builder. Can u give me a sample of how that is done? I searched the online tutorials but all I get is samples of how to do it in flash. Well, if I don't have flash..what good is that? I need a 3.0

[Flashcoders] Tween Issues

2010-03-04 Thread Lehr, Theodore
I have a bar graph where the bars are tweened the do no alway finish tweening... They are being drawn from the top down, so they do not alway make it to the bottom - and sometimes they do not get drawn at all... What could be causing this? ___

Re: [Flashcoders] how to reduce CPU usage

2010-03-04 Thread Kerry Thompson
Steven Sacks wrote: Don't confuse the word rendered with the word processed. Rendering is the act of drawing pixels on the stage. Invisible DisplayObjects are not rendered (though alpha 0 ones are) during the render phase, but they are processed. If you have 1000 invisible sprites on the

Re: [Flashcoders] (no subject)

2010-03-04 Thread Bob Wohl
number one search result on google: http://www.adobe.com/devnet/flex/quickstart/embedding_assets/ Plenty of info there on embeding assests. hth On Thu, Mar 4, 2010 at 1:26 PM, Michael Teniente tenientem...@yahoo.com wrote: I want to ask a question about embedding fonts without flash. I want to

[Flashcoders] Custom FLVPlayback skin volume control

2010-03-04 Thread Mattheis, Erik (MIN - WSW)
I need to have a volume control in a FLVPlayback custom skin that scrubs vertically instead of horizontally. I'm looking for the class file I'd have to modify but can't find one that references the standard skin scrubbder, volumeBarHandle_mc. My thought is that I can have my vertical scrubber

Re: [Flashcoders] (no subject)

2010-03-04 Thread Glen Pike
Hi, If you google Flex + [Embed] that will give you lots of tutorials, but simply, the [Embed] meta-tag in AS3 allows the compiler to embed external assets like images and fonts at compile time... You can use similar methodology as you do for Flash CS4 for Pure AS3 classesput your [Embed]

Re: [Flashcoders] Font embedding without Flash // Was: (no subject)

2010-03-04 Thread Gerry
http://blog.bobbyjuncosa.com/2009/06/14/flex-3-font-embedding-from-swc/ On Mar 4, 2010, at 3:26 PM, Michael Teniente wrote: I want to ask a question about embedding fonts without flash. I want to use 3.0 in the flex builder. Can u give me a sample of how that is done? I searched the online

Re: [Flashcoders] Tween Issues

2010-03-04 Thread Henrik Andersson
Lehr, Theodore wrote: I have a bar graph where the bars are tweened the do no alway finish tweening... They are being drawn from the top down, so they do not alway make it to the bottom - and sometimes they do not get drawn at all... What could be causing this? Non-deterministic

Re: [Flashcoders] Tween Issues

2010-03-04 Thread Kerry Thompson
Theodore Lehr wrote: I have a bar graph where the bars are tweened the do no alway finish tweening... They are being drawn from the top down, so they do not alway make it to the bottom - and sometimes they do not get drawn at all... What could be causing this?

RE: [Flashcoders] Tween Issues

2010-03-04 Thread Barry Hannah
What Tween engine are you using? The built in Adobe Tween class? Are your tween instances declared within a class? I used to get a lot of issues with Tweens doing random things. I discovered that any tween instances needed to be declared as class vars as opposed to locally scoped. i.e., rather

Re: [Flashcoders] Tween Issues

2010-03-04 Thread John R. Sweeney Jr
AS3 or AS2? I had the exact problem in AS3. John on 3/4/10 2:32 PM, Lehr, Theodore at ted_l...@federal.dell.com wrote: I have a bar graph where the bars are tweened the do no alway finish tweening... They are being drawn from the top down, so they do not alway make it to the bottom -

Re: [Flashcoders] Tween Issues

2010-03-04 Thread John R. Sweeney Jr
For me it was GARBAGE COLLETION, when I didn't want it. :) John on 3/4/10 2:51 PM, Kerry Thompson at al...@cyberiantiger.biz wrote: You have a bug in your code. Sorry--if you want something more specific, you need to tell us more. Cordially, John R. Sweeney Jr. Interactive Multimedia

Re: [Flashcoders] Tween Issues

2010-03-04 Thread Karl DeSaulniers
+1 Personally I'd ditch Tween and move to TweenLite/TweenMax Karl ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders