Re: [Flashcoders] urgent TweenMax easing question

2008-08-14 Thread allandt bik-elliott (thefieldcomic.com)
thanks for the advice guys On Wed, Aug 13, 2008 at 9:38 PM, Steven Sacks [EMAIL PROTECTED]wrote: Select your transparent PNG and press CTRL+B (Break Apart). Then, use the lasso tool and the eraser tool to erase the transparent pixels as best you can. This will increase your performance a

[Flashcoders] urgent TweenMax easing question

2008-08-13 Thread allandt bik-elliott (thefieldcomic.com)
Hi guys I'm having a problem with a TweenMax animation. I'm animating a shape (broken apart text) over a transparent png but as the text hits the edge of the png, it slows down. Is there something I can do to stop this happneing? thanks a ___

Re: [Flashcoders] urgent TweenMax easing question

2008-08-13 Thread H
I don't think so. It sounds like your issue has to do with rendering changing transparent objects on top of one another. This is inherently slow. On Wed, Aug 13, 2008 at 5:44 AM, allandt bik-elliott (thefieldcomic.com) [EMAIL PROTECTED] wrote: Hi guys I'm having a problem with a TweenMax

RE: [Flashcoders] urgent TweenMax easing question

2008-08-13 Thread Jack Doyle
-Original Message- From: H [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2008 8:53 AM To: Flash Coders List Subject: Re: [Flashcoders] urgent TweenMax easing question I don't think so. It sounds like your issue has to do with rendering changing transparent objects on top of one another

Re: [Flashcoders] urgent TweenMax easing question

2008-08-13 Thread allandt bik-elliott (thefieldcomic.com)
i thought it might be that - i've replaced the tweenmax tween with a timeline tween which seems to be a bit better (but not perfect by any means) thanks for the response a On Wed, Aug 13, 2008 at 2:52 PM, H [EMAIL PROTECTED] wrote: I don't think so. It sounds like your issue has to do with

Re: [Flashcoders] urgent TweenMax easing question

2008-08-13 Thread Steven Sacks
Select your transparent PNG and press CTRL+B (Break Apart). Then, use the lasso tool and the eraser tool to erase the transparent pixels as best you can. This will increase your performance a lot because Flash won't have to render those transparent pixels anymore.

[Flashcoders] urgent combobox query

2008-07-31 Thread allandt bik-elliott (thefieldcomic.com)
i have a combobox placed manually on the stage and the textfield doesn't show anything. I suspect it's a font issue can anyone tell me how i can tell which font is used in it please? thanks a ___ Flashcoders mailing list

[Flashcoders] urgent as3 textfield scroll problem

2008-06-30 Thread Allandt Bik-Elliott (Receptacle)
i really hope someone can help me here i have a textfield that is set up with a defaultTextFormat and has several setTextFormats applied to type within it but when i try to overflow it and add a scrollbar, i get no scroll result. I've looked into it and it seems that no matter how much

Re: [Flashcoders] urgent as3 textfield scroll problem

2008-06-30 Thread Allandt Bik-Elliott (Receptacle)
i should probably mention that the same object is used for several instances but it's just the one that doesn't use the elCreditFormat TextFormat that fails to scroll thanks a On 30 Jun 2008, at 15:10, Allandt Bik-Elliott (Receptacle) wrote: i really hope someone can help me here i have

Re: [Flashcoders] urgent as3 textfield scroll problem

2008-06-30 Thread Allandt Bik-Elliott (Receptacle)
Hi - i found a way around this (by adding a body format as a setTextFormat even though it replicates the defaultTextFormat) but i'd really like to know if anyone has had similar problems and if this is a bug in the player or if there's a problem with my implementation thanks again a

Re: [Flashcoders] urgent as3 textfield scroll problem

2008-06-30 Thread Receptacle
Hi - i found a way around this (by adding a body format as a setTextFormat even though it replicates the defaultTextFormat) but i'd really like to know if anyone has had similar problems and if this is a bug in the player or if there's a problem with my implementation thanks again a

[Flashcoders] urgent - multimap.com flash api?

2008-06-03 Thread allandt bik-elliott
hi does anyone know of any implementations of multimap.com's api in flash? I've looked online but can only find a javascript api. thanks alz ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] urgent angle problem

2008-02-05 Thread Allandt Bik-Elliott (Receptacle)
hi guys i have a problem that i need to sort out - i have a script that checks to see where the mouse pointer is in relation to a point of origin and then selects which frame from a group of 9 to show the problem i'm having is that if the angle is above 180 degrees, it swaps to negative

Re: [Flashcoders] urgent angle problem

2008-02-05 Thread Kenneth Kawamoto
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] urgent angle problem

2008-02-05 Thread Glen Pike
Hi, You make both values absolute and calculate your angle, then subtract 90 from the degrees. You have to detect whether adj is negative and if so, add 180 to your angle or something similar if I remember... var adjside:Number = watchX - originX; var oppside:Number =

RE: [Flashcoders] urgent angle problem

2008-02-05 Thread Steve Abaffy
To: flashcoders Subject: [Flashcoders] urgent angle problem hi guys i have a problem that i need to sort out - i have a script that checks to see where the mouse pointer is in relation to a point of origin and then selects which frame from a group of 9 to show the problem i'm having is that if the angle

Re: [Flashcoders] urgent angle problem

2008-02-05 Thread Kenneth Kawamoto
Oh, sorry Glen List. This was the mail sent out from me. Is the List dodgy again??? -- Try: if (angle0) { angle += 360; } Kenneth Kawamoto http://www.materiaprima.co.uk/ Glen Pike wrote: Dude, how come you keep sending empty emails to the list?? Kenneth Kawamoto wrote:

Re: [Flashcoders] urgent angle problem

2008-02-05 Thread Bob Leisle
er...make that if (angle 0) { angle += 360; } Bob Leisle wrote: Hi Allandt, How about something like this? if (angle 0) { angle += 180; } hth, Bob Allandt Bik-Elliott (Receptacle) wrote: hi guys i have a problem that i need to sort out - i have a script that checks to see where

Re: [Flashcoders] urgent angle problem

2008-02-05 Thread Glen Pike
Dude, how come you keep sending empty emails to the list?? Kenneth Kawamoto wrote: ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders -- Glen Pike 01736 759321

Re: [Flashcoders] urgent angle problem

2008-02-05 Thread Bob Leisle
Hi Allandt, How about something like this? if (angle 0) { angle += 180; } hth, Bob Allandt Bik-Elliott (Receptacle) wrote: hi guys i have a problem that i need to sort out - i have a script that checks to see where the mouse pointer is in relation to a point of origin and then selects

RE: [Flashcoders] urgent angle problem

2008-02-05 Thread Dave Watts
Oh, sorry Glen List. This was the mail sent out from me. Is the List dodgy again??? No, it's something on your end. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Training: Adobe/Google/Paperthin Certified Partners http://training.figleaf.com/ WebManiacs 2008: the

Re: [Flashcoders] urgent angle problem

2008-02-05 Thread Fumio Nonaka
angle = (angle%360+360)%360; Then: 810 - 90 -810 - 270 _ Bob Leisle wrote: if (angle 0) { angle += 360; } -- Fumio Nonaka mailto:[EMAIL PROTECTED] http://www.FumioNonaka.com/ My bookshttp://www.FumioNonaka.com/Books/index.html Flash communityhttp://F-site.org/

RE: [Flashcoders] urgent angle problem

2008-02-05 Thread Keith Reinfeld
frame = Math.ceil(((angle 0)? -1*(angle): -1*(angle - 360))/40); Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Urgent timeout problem

2007-05-15 Thread Berkay Unal
Hi Coders I am capturing and image from swf to jpg with the following code. It sometimes gives the output. But sometimes cause timeout A script is causing flash player . Is there a way to make it not timeout. I have used http://www.buraks.com/swfsli/ with the cmdline swfsli index.swf/t200 /b /d

[Flashcoders] URGENT - flv creation

2007-05-09 Thread nik crosina
Hi, My client has has just told me (they are also supplying th evideo assets) that they are ahving problems creating flv files and keeping the aspect ratio of 16:9. The dimensions of the clip are to be 624×351pixel. I can't think of anything that could prevent an flv from being created with

RE: [Flashcoders] URGENT - flv creation

2007-05-09 Thread Durai Raj
, 2007 10:52 PM To: Flashcoders mailing list Subject: [Flashcoders] URGENT - flv creation Hi, My client has has just told me (they are also supplying th evideo assets) that they are ahving problems creating flv files and keeping the aspect ratio of 16:9. The dimensions of the clip are to be 624

Re: [Flashcoders] URGENT - flv creation

2007-05-09 Thread Wayne McManus
Nothing prevents you from exporting to those dimensions, although there is an argument that keeping sizes divisible by 16 helps with quality. I did a little looking into it. See: http://www.coderkind.com/?p=14 On 09/05/07, nik crosina [EMAIL PROTECTED] wrote: Hi, My client has has just told

Re: [Flashcoders] URGENT - flv creation

2007-05-09 Thread nik crosina
Thanks, interesting article - I alwasy follow the rule of not choosing my dimensions ni such a way that they do not lead to one of them having decimal places, but I haven't heard about the '8' rule. The dimensions I gave 624x351 should be perfect widescreen 16:9. Nik On 5/9/07, Wayne McManus

[Flashcoders] Urgent: flash detection error with swf object and query string

2007-03-15 Thread moveup
Came across something that has me baffled. When appending a query string to a URL, certain query string values give me an arror, ie , i'm prompted for a plugin download. for instance ?ecard=21key=a9a08 gives me an error but if I change the last 8 to any other number, or the previous '0' to

Re: [Flashcoders] Urgent: flash detection error with swf object and query string

2007-03-15 Thread Pedro Taranto
you should use |so.addVariable(variable1, value1); --Pedro Taranto | [EMAIL PROTECTED] escreveu: Came across something that has me baffled. When appending a query string to a URL, certain query string values give me an arror, ie , i'm prompted for a plugin download. for instance

Re: [Flashcoders] Urgent: flash detection error with swf object and query string

2007-03-15 Thread Andy Herrman
What is actually being returned by the server you're hitting? Is it possible that that particular combination of query params is causing something unexpected to be returned, and that page requires some plugin you don't have? -Andy On 3/15/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Came

Re: [Flashcoders] Urgent help !!! Please :)

2007-02-28 Thread tcoz
that are easily avoidable. - Original Message - From: Johnny Zen [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, February 27, 2007 1:45:01 PM GMT-0500 Auto-Detected Subject: [Flashcoders] Urgent help !!! Please :) Hi all Finishing a project and came

[Flashcoders] Urgent help !!! Please :)

2007-02-27 Thread Johnny Zen
Hi all Finishing a project and came to a hurdle. 1. User clicks on link in browser. Opens a new smaller browser window! (Out of interest, what do people think about opening new browser windows?, I cant decide whether this is a bad idea to begin with!) 2. Within new window, there is my flash

[Flashcoders] Urgent Help

2006-08-30 Thread hmdakr
Can anyone please tell me why The M-key on an ‘azerty’ keyboard does not work with this script...? onClipEvent(load) { MIN_CHAR_ALLOWED = 65; MAX_CHAR_ALLOWED = 90; keyObj = {}; var kList = []; for (var i=MIN_CHAR_ALLOWED; i=MAX_CHAR_ALLOWED; i++){

RE: [Flashcoders] [URGENT] Flash effect/transition samples

2006-06-01 Thread Bernard Visscher
2:12 Aan: Flashcoders mailing list Onderwerp: Re: [Flashcoders] [URGENT] Flash effect/transition samples Try this: http://www.actionscript.org/tutorials/advanced/Tween-Easing_Classes_Document ed/index.shtml 8ball Developer wrote: This is good, but I'm looking for very simple things like bounce

Re: [Flashcoders] [URGENT] Flash effect/transition samples

2006-06-01 Thread Serge Jespers
http://weblogs.macromedia.com/mc/archives/2006/04/ transition_and.cfm#more ___ 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

Re: [Flashcoders] [URGENT] Flash effect/transition samples

2006-06-01 Thread 8ball Developer
thank you all very much. On 6/1/06, Serge Jespers [EMAIL PROTECTED] wrote: http://weblogs.macromedia.com/mc/archives/2006/04/ transition_and.cfm#more ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] [URGENT] Flash effect/transition samples

2006-05-31 Thread 8ball Developer
Hi all, I have a client coming in today who wants see some sample effects/transitions to apply to different parts of the Flash work. Do you have links to such samples where I can go through them with him? Any help is much appreciated. Thanks, Ben ___

RE: [Flashcoders] [URGENT] Flash effect/transition samples

2006-05-31 Thread André Goliath
: [Flashcoders] [URGENT] Flash effect/transition samples Hi all, I have a client coming in today who wants see some sample effects/transitions to apply to different parts of the Flash work. Do you have links to such samples where I can go through them with him? Any help is much appreciated. Thanks

Re: [Flashcoders] [URGENT] Flash effect/transition samples

2006-05-31 Thread 8ball Developer
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of 8ball Developer Sent: Wednesday, May 31, 2006 7:31 PM To: Flashcoders mailing list Subject: [Flashcoders] [URGENT] Flash effect/transition samples Hi all, I have a client coming in today who wants see some sample effects/transitions to apply to different

Re: [Flashcoders] [URGENT] Flash effect/transition samples

2006-05-31 Thread Telmo Dias
://www.experiment23.de/tmp/index.html (the menu are the small bars at the left) hth -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of 8ball Developer Sent: Wednesday, May 31, 2006 7:31 PM To: Flashcoders mailing list Subject: [Flashcoders] [URGENT] Flash effect

Re: [Flashcoders] urgent

2005-12-07 Thread Ramon Tayag
Sorry, I don't understand what you mean. The code doesn't seem like it'll even execute. What's your question? Mon On 12/6/05, Mohammad Sajid [EMAIL PROTECTED] wrote: in flash how to cordinate moive name with variable like trace(_root[box_m add i].d+(j).txt1) -- Ramon Miguel M. Tayag

Re: [Flashcoders] urgent

2005-12-07 Thread Danny Kodicek
in flash how to cordinate moive name with variable like trace(_root[box_m add i].d+(j).txt1) I *think* what you're looking for is (_root[box_m+i].d+j).txt1 If the variables are i=1 and j=2, then this will find the variable d of the movieclip box_m1, which, let's say, is jiggle, and return

Re: [Flashcoders] urgent

2005-12-07 Thread Danny Kodicek
in flash how to cordinate moive name with variable like trace(_root[box_m add i].d+(j).txt1) I *think* what you're looking for is (_root[box_m+i].d+j).txt1 If the variables are i=1 and j=2, then this will find the variable d of the movieclip box_m1, which, let's say, is jiggle, and return