[Flashcoders] outlook need to be oppened from Flash

2006-02-27 Thread Bharat Group
Hi , I want to open the oulook express from my flash presentation. I ve one email link and I want on clicking on that link it should open the outlook express with same email add. in " To " field. IBM ___ Flashcoders@chattyfig.figleaf.com To change you

Re: [Flashcoders] outlook need to be oppened from Flash

2006-02-27 Thread Danny Kodicek
Hi , I want to open the oulook express from my flash presentation. I ve one email link and I want on clicking on that link it should open the outlook express with same email add. in " To " field. The simplest (but not 100% reliable) method is to use a mailto: link: give your link the url mail

RE: [Flashcoders] outlook need to be oppened from Flash

2006-02-27 Thread Adrian Lynch
If you mean from a Flash movie in the browser, then you don't really have a choice as to what email client is used for mailto links. If you just mean you want any email client to open, Outlook, Outlook Express, Thunderbird etc. then two ways. 1. From HTML text in a text field mailto:[EMAIL PROTECT

Re: [Flashcoders] outlook need to be oppened from Flash

2006-02-27 Thread Mayur Bais
try this link.onRelease = function(){ getURL("mailto:[EMAIL PROTECTED]"); }; <[EMAIL PROTECTED]");};> or you can create a text box ,select some text in it..and in the getURL box in the property inspector write : mailto:[EMAIL PROTECTED] <[EMAIL PROTECTED]");};> Mayur ! On 2/27/06, Bharat

RE: [Flashcoders] outlook need to be oppened from Flash

2006-02-27 Thread Nick Weekes
Look up getURL in the Help docs. You don't open a specific application (e.g. outlook express), but create an email message using the local machines default mail client. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bharat Group Sent: 27 February 2006 09

[Flashcoders] Andre Michelle experiments

2006-02-27 Thread Alan Skinner
Wow had a look at this guys stuff! He's a true genius! Is there any source you can download on the site, I cant find it? ta -- This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have rece

Re: [Flashcoders] Andre Michelle experiments

2006-02-27 Thread Guntur N. Sarwohadi
Yeah.. I know.. I think he's currently working on new stuff for flash8.. espesially gamepackage.. what source are u talking about? [g] On 2/27/06, Alan Skinner <[EMAIL PROTECTED]> wrote: > > > Wow had a look at this guys stuff! He's a true genius! > > Is there any source you can download on the s

[Flashcoders] mailto is not working

2006-02-27 Thread Bharat Group
Guys, mailto: is not working in flash movie although it's email publish is working with it. In movie it does nothing. IBM Subject: [Flash] outlook need to be opened from Flash Hi , I want to open the outlook express from my flash presentation. I ve one email link and I want on clicking on t

RE: [Flashcoders] mailto is not working

2006-02-27 Thread Adrian Lynch
Can you show us what you have so far? Adrian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Bharat Group Sent: 27 February 2006 10:53 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] mailto is not working Guys, mailto: is not working in fla

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Danny Kodicek
Is this in a browser or a standalone? What exactly did you do? 'Not working' isn't very helpful. Danny - Original Message - From: "Bharat Group" <[EMAIL PROTECTED]> To: Sent: Monday, February 27, 2006 10:53 AM Subject: [Flashcoders] mailto is not working Guys, mailto: is not wor

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Bharat Group
It's a standalone presentation in flash, in contact us page , it need to open a default mail client with email add. in " to" field. I ve attach the code on the button , but after running it, it shows nothing, I mean when I click the link it does not open any thing. I tried following actions li

[Flashcoders] Easing equations - explanation of parameters

2006-02-27 Thread Keith Salisbury
Does anyone have a explanation of the parameters used in the class mx.transitions.easing.Elastic (t:Number, b:Number, c:Number, d:Number, a:Number, p:Number) t = Current Timer b = Initial Value c = End Value - Initial Value d = Duration a = ? p = ? tia keith

RE: [Flashcoders] mailto is not working

2006-02-27 Thread Nick Weekes
Is the click event firing? Have you traced the code in this event? Maybe you have instance naming issues. Does it fail in both 'Preview in browser' and 'test movie'? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bharat Group Sent: 27 February 2006 11

RE: [Flashcoders] Easing equations - explanation of parameters

2006-02-27 Thread Nick Weekes
I use these references for tweening/easing: http://www.kirupa.com/developer/actionscript/tween.htm http://www.macromedia.com/devnet/flash/articles/tweening.html Cheers, Nick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Keith Salisbury Sent: 27 Febr

Re: [Flashcoders] mailto is not working

2006-02-27 Thread [a /]
It might actually be a blocker in IE. I have had problems opening Microsoft Word documents from a link within a swf embedded in a browser. I have no such problems if the swf is opened in Mozilla. If the IE problem is an anomaly as the .doc opens on some computers and fails on others [a /]

[Flashcoders] Dynamic .as reference to MC

2006-02-27 Thread James Marsden
Hello, Does anyone know if it's possible to dynamically apply a class file reference to an mc created with createEmptyMovieClip or attachMovie? Thanks, James ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the ar

Re: [Flashcoders] mailto is not working

2006-02-27 Thread [a /]
This problem only seems to occur if you try to fire an event which requires a Microsoft program to open from an IE embedded swf. Unfortunately its hard to locate as the event will fail on some IE browsers and be successful on others [a /] - Original Message - From: "[a /]" <[EMAIL PRO

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Bharat Group
No, click event is not firing, it does nothing on clicking. and it fails in both - Original Message - From: "Nick Weekes" <[EMAIL PROTECTED]> To: "'Flashcoders mailing list'" Sent: Monday, February 27, 2006 5:02 PM Subject: RE: [Flashcoders] mailto is not working Is the click even

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Danny Kodicek
It's a standalone presentation in flash, in contact us page , it need to open a default mail client with email add. in " to" field. I ve attach the code on the button , but after running it, it shows nothing, I mean when I click the link it does not open any thing. Is this on all computers o

Re: [Flashcoders] Easing equations - explanation of parameters

2006-02-27 Thread Keith Salisbury
Cheers Nick, already seen those, but unfortunately it seems everywhere there is documentation for the Tween class, but absolutely no documentation for the easing class. I dont want to use the tween class, i just need to use the easing methods directly, so i just need some documentation on the param

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Bharat Group
am not using IE embedded swf. it's just a flash presentation and want to open any default mail client from swf. - Original Message - From: "[a /]" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, February 27, 2006 5:09 PM Subject: Re: [Flashcoders] mailto is not working

Re: [Flashcoders] [SOLVED] Start/stop function - not working as AS2.0?

2006-02-27 Thread Michael Hulse
On Feb 26, 2006, at 6:30 PM, Shy Aberman wrote: Try passing in the function name as a string. Ah, thanks for the tip. :) Got it working now! On top of what you mentioned above I had to change a few other things I over-looked... see comments below: /* Update: Changed second argument to a "s

RE: [Flashcoders] mailto is not working

2006-02-27 Thread Adrian Lynch
Are you using this: link.onRelease = function(){ getURL("mailto:[EMAIL PROTECTED]"); }; <[EMAIL PROTECTED]");};> The extra bit was added by the posters email client(server?). It should be: link.onRelease = function(){ getURL("mailto:[EMAIL PROTECTED]"); }; And that should be in a frame

RE: [Flashcoders] mailto is not working

2006-02-27 Thread Nick Weekes
Ok, you have problems with your instances and/or placement of the click event. Post the fla and I'll take a look. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bharat Group Sent: 27 February 2006 11:41 To: Flashcoders mailing list Subject: Re: [Flashco

RE: [Flashcoders] Easing equations - explanation of parameters

2006-02-27 Thread Mike Mountain
I thought it was something like amplitude and damping... M > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Keith Salisbury > Sent: 27 February 2006 11:32 > To: Flashcoders mailing list > Subject: [Flashcoders] Easing equations - explanation o

RE: [Flashcoders] Easing equations - explanation of parameters

2006-02-27 Thread Nick Weekes
Ah ok. The easing parameters in those two articles are all ive ever seen with regard to easing documentation, so maybe someone else has more detail (Jessie/Jason?). Cheers, Nick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Keith Salisbury Sent: 27 Fe

Re: [Flashcoders] Dynamic .as reference to MC

2006-02-27 Thread Adrian Park
I think you might be looking for the Object.registerClass() method... http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=2587.html I haven't actually used it myself as I only became aware of it a few days ago! Adrian On 2/27/06, Jam

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Bharat Group
pl. ve a look of fla and reply. The main prob. is that neither it showing any error nor on clicking doing any thing. - Original Message - From: "Nick Weekes" <[EMAIL PROTECTED]> To: "'Flashcoders mailing list'" Sent: Monday, February 27, 2006 5:26 PM Subject: RE: [Flashcoders] mailto

RE: [Flashcoders] mailto is not working

2006-02-27 Thread Nick Weekes
ok ive taken a look, and the click event IS firing and the mail link works fine with my machine (Outlook 2003). (to test this, put a breakpoint on the 'GetURL' line, then debug the movie (Shift + Ctrl + Enter). the code will break at this line, which means your event is in the correct space.)

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Bharat Group
Hi Nick, Waitig for u r reply. IBm - Original Message - From: "Nick Weekes" <[EMAIL PROTECTED]> To: "'Flashcoders mailing list'" Sent: Monday, February 27, 2006 5:26 PM Subject: RE: [Flashcoders] mailto is not working Ok, you have problems with your instances and/or placement of th

Re: [Flashcoders] Easing equations - explanation of parameters

2006-02-27 Thread Mark Walters
Taken from Robert Penner's book ... t = time b = begin c = change d = duration - markW On 2/27/06, Keith Salisbury <[EMAIL PROTECTED]> wrote: > Does anyone have a explanation of the parameters used in the class > > mx.transitions.easing.Elastic > > (t:Number, b:Number, c:Number, d:Number, a:Num

Re: [Flashcoders] Easing equations - explanation of parameters

2006-02-27 Thread Helen Triolo
From a post from Zeh in the archives (http://chattyfig.figleaf.com/pipermail/flashcoders/2004-July/117628.html), In elastic's case, extra1 is 'amplitude' and extra2 is 'period'. (any parameters after the basic 4 apparently have different meanings depending on the type of tween). Helen -- h

[Flashcoders] Issues with Player Version 7,0,24

2006-02-27 Thread lars
hi all. i have a small game exported to flash 7, as 2.0 which is running fine on my machine (flash player 8 installed) but not on 2 other machines having player 7,0,24 installed. are there any bugs in that version that relate to as 2.0 scripting? (its a game using movieclip positioning for "enem

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Latcho
try to add ,"_self" as second getURL param regards, latcho Bharat Group wrote: Hi Nick, Waitig for u r reply. IBm - Original Message - From: "Nick Weekes" <[EMAIL PROTECTED]> To: "'Flashcoders mailing list'" Sent: Monday, February 27, 2006 5:26 PM Subject: RE: [Flashcoders] mailto is

Re: [Flashcoders] Issues with Player Version 7,0,24 // GEEEZ?

2006-02-27 Thread lars
got it, but gez, what is it??? i did a flash rewrite of a javascript game. that uses "setTimeout(func,speed)" which i copied 1:1 and forgot to translate to as2.0... if i remove that javascript function its not running, if i keep it it's running ... but it's a javascript function?!?! how can tha

Re: [Flashcoders] How can I display a tall document?

2006-02-27 Thread Arul Prasad
1. set Stage.scalemode="noScale'; 2. set textBox.autoSize= true and then textBox.width = num; This will make the textBox stretch heightwise, and fix the width to a particular value (num). 3. After you set the text to the textfield, pass that height to the javascript code in the container html pa

[Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread lars
anyone has a timer class handy? something to display minutes and seconds counting, starting at 0:00... sorry, but i tried to calc a date/time difference using the date and time objects, but i can't make it :( tsk tsk ___ Flashcoders@chattyfig.figleaf.c

RE: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread Mike Mountain
Use getTimer() instead. M > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of lars > Sent: 27 February 2006 14:24 > To: Flashcoders mailing list > Subject: [Flashcoders] AS2.0 time/date Objects: Timer class? > > > anyone has a timer class handy? som

Re: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread Jim Armstrong
lars wrote: anyone has a timer class handy? something to display minutes and seconds counting, starting at 0:00... sorry, but i tried to calc a date/time difference using the date and time objects, but i can't make it :( tsk tsk http://www.2112fx.com/blog/pivot/entry.php?id=13 timestamp wit

Re: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread lars
indeed. next question: easiest way to format it to m:s display? :) Am 27.02.2006 15:26 Uhr schrieb "Mike Mountain" unter <[EMAIL PROTECTED]>: > Use getTimer() instead. > > M > >> -Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] On Behalf Of lars >> Sent: 27 F

Re: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread lars
yes, also nice, but how to avaid using "your" textfield? when i use timer.start( myownfield, timer.count_up) it's still displaying the one created by the class? Am 27.02.2006 15:35 Uhr schrieb "Jim Armstrong" unter <[EMAIL PROTECTED]>: > lars wrote: >> anyone has a timer class handy? something t

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Mike Britton
Better yet, don't use mailto: at all. Personally I don't like when Outlook opens from links. It's disruptive. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/lis

Re: [Flashcoders] Dynamic .as reference to MC

2006-02-27 Thread James Marsden
thanks, unfortunately I couldn't get it work - and found several threads of other people not getting it to work either... :S I've solved my problem another way... Cheers, J Adrian Park wrote: I think you might be looking for the Object.registerClass() method... http://livedocs.macromedia.c

Re: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread Jim Armstrong
lars wrote: yes, also nice, but how to avaid using "your" textfield? when i use timer.start( myownfield, timer.count_up) it's still displaying the one created by the class? You could rewrite the code to accept a reference to your own textfield or have the method that computes the timestamp r

RE: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread Mike Mountain
At it's simplest [as] this.onEnterFrame = function() { var tme = getTimer(); var secs = Math.ceil(tme/1000); var mins = Math.floor((tme/1000)/60); num_txt.text =mins+":"+secs }; [/as] > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECT

RE: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread Mike Mountain
Ooops addendum. [as] this.onEnterFrame = function() { var tme = getTimer(); var mins = Math.floor((tme/1000)/60); var secs = Math.ceil(tme/1000)-(mins*60) num_txt.text =mins+":"+secs }; [/as] Will reset seconds when the minutes increments ___

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Danny Kodicek
Better yet, don't use mailto: at all. Personally I don't like when Outlook opens from links. It's disruptive. I agree, and just a reminder in case my previous message was missed: both SwfStudio and Director have the potential to create a silent email, although both require an extension to ma

RE: [Flashcoders] mailto is not working

2006-02-27 Thread Mike Mountain
> Better yet, don't use mailto: at all. Personally I don't > like when Outlook opens from links. It's disruptive. > Really? As long as I know it's going to happen (ie - I've clicked on an email address) I much prefer the email opening up in the mail client of my choice, rather than me having

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Bharat Group
Danny Dear, what you suggest.. I ve made this whole project in flash MX with win xp. Now this little prob bugged me a lot. I can not switch to director or any other software.. tell me the solution.. - Original Message - From: "Danny Kodicek" <[EMAIL PROTECTED]> To: "Flashcoders mail

[Flashcoders] Sorting content in DataSet

2006-02-27 Thread Manuel Saint-Victor
I've tried to use the DataSet components's useSort method on a dataset bound to a datagrid. I did the binding through the component inspector but have the following code in my timeline: import mx.controls.Alert; my_ds.addSort("lastFirst", ["lastName", "firstName"]); my_dg.enabled = false; cl

Re: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread lars
eh, any chance to "reset" the timer? i guess not, so i have to work with 2 vars and calculate the diff? in my example the timer needs to start when the users starts the game... Am 27.02.2006 15:59 Uhr schrieb "Mike Mountain" unter <[EMAIL PROTECTED]>: > Ooops addendum. > > [as] > this.onEnt

Re: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread eric dolecki
www.layer51.com/proto you could probably take a prototype and make a class out of it fairly quickly... and then you'd always have one at the ready. perhaps there is a class already you might wanna use. On 2/27/06, lars <[EMAIL PROTECTED]> wrote: > > eh, any chance to "reset" the timer? i guess no

Re: [Flashcoders] mailto is not working

2006-02-27 Thread Danny Kodicek
Danny Dear, what you suggest.. I ve made this whole project in flash MX with win xp. Now this little prob bugged me a lot. I can not switch to director or any other software.. tell me the solution.. I'm not saying you should switch to Director, but that you could embed your Flash swf into

Re: [Flashcoders] OT: AfterEffects crashes

2006-02-27 Thread Elaine Montoya
The specs from adobe does say that for the windows platform it requires a Pentium 4 ... maybe that is your problem. good luck! elaine On Feb 26, 2006, at 9:32 PM, Anggie Bratadinata wrote: Does your computer have a Pentium 4 processor? You didn't state this below "Athlon64", I forgot to wr

Re: [Flashcoders] Re: sorting a collection of points clockwise

2006-02-27 Thread Bart Wttewaall
Thanks, I guess I needed a little nudge to actually get working on the method. If anyone sees a quicker method than the code below, then please say so. Thanks Ron, A.Cicak & others! function orderClockwise(coll:Array, center:Point):Array { if (!center) center = getCenterPoint(coll);

Re: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread lars
i already checked proto51, but didnt find a as2 class handy. anyway: i'll do one :) Am 27.02.2006 16:32 Uhr schrieb "eric dolecki" unter <[EMAIL PROTECTED]>: > www.layer51.com/proto > > you could probably take a prototype and make a class out of it fairly > quickly... and then you'd always have

[Flashcoders] hidden function: settimeout?

2006-02-27 Thread lars
i just ported a little javascript game to flash and forgot to "translate" on line: settimeout(moveenemies, speed)... i first noticed when exporting it to flash7 because the enemies didnt move, but the do when exported to flash8! what's going on? settimeout works in flash8? is this some externalinte

[Flashcoders] dynamic and updating index values in datagrid

2006-02-27 Thread Manuel Saint-Victor
Is there a way to have the first column in the datagrid be a dynamic value that for example is bound to the index value of that object in a DataSet- I'm looking into this as a solution for providing a user with a list of items that he/she can remove items from within the set and the numbers will re

Re: [Flashcoders] Re: sorting a collection of points clockwise

2006-02-27 Thread Morten Barklund TBWA\\Play
Bart Wttewaall wrote: Thanks, I guess I needed a little nudge to actually get working on the method. If anyone sees a quicker method than the code below, then please say so. This would actually be one of the few places, where Array.RETURNINDEXEDARRAY could be used - just create an array of th

Re: [Flashcoders] hidden function: settimeout?

2006-02-27 Thread eric dolecki
Its like the javascript setTimeout... fire once & forget about it - cleans itself up (instead of creating a setInterval and then cleaning it up, checking to make sure it didn't exist before creating, etc.) It is undocumented but its in there. - e.dolecki On 2/27/06, lars <[EMAIL PROTECTED]> wrot

[Flashcoders] RE: Andre Michelle experiments

2006-02-27 Thread Alan Skinner
Just some source for the examples on his web side, they are so good I was wanting to play about with them. Found a few on his site though >Yeah.. I know.. I think he's currently working on new stuff for flash8.. >espesially gamepackage.. what source are u talking about? [g] >> >> >> Wow ha

[Flashcoders] >> percent Loading

2006-02-27 Thread CARABUS plus
To know the percent loades of a movie I done thisand its working If I load a movie like this : loadMovie("number.swf", "CIBLE"); How can I do to Know the percent loaded ? loadBar._xscale = Math.round((getBytesLoaded() / getBytesTotal()) * 100); percent = Math.round((getBytesLoaded() / getBytesTo

RE: [Flashcoders] hidden function: settimeout?

2006-02-27 Thread Geoffrey Williams
It's in Flash, just undocumented. http://www.flashguru.co.uk/flash-8-settimeout/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of lars Sent: Monday, February 27, 2006 11:13 AM To: Flashcoders mailing list Subject: [Flashcoders] hidden function: settimeout?

Re: [Flashcoders] hidden function: settimeout?

2006-02-27 Thread lars
but flash8 only, isnt it? i just could use it, but for a flash 7 project :) Am 27.02.2006 17:21 Uhr schrieb "eric dolecki" unter <[EMAIL PROTECTED]>: > Its like the javascript setTimeout... fire once & forget about it - cleans > itself up (instead of creating a setInterval and then cleaning it u

[Flashcoders] Attaching code to buttons already on stage

2006-02-27 Thread Kevin Cannon
Hey all, I'm used to using registerClass to apply code to navigation buttons at the like dynamically added to movie. If I've got a few buttons already on stage I'm wondering what the cleanest way is to add code to them: I could do something like this: home_btn.onRelease = news_btn.onRelease = a

Re: [Flashcoders] hidden function: settimeout?

2006-02-27 Thread JesterXL
setTimeout works in Flash 8, but it's not documented. They didn't bother because they deprecated it in Flash Player 8.5. ...I still like setTimeout the best, though, so I still use it. Long live setTimeout! - Original Message - From: "lars" <[EMAIL PROTECTED]> To: "Flashcoders mailin

Re: [Flashcoders] hidden function: settimeout?

2006-02-27 Thread eric dolecki
flash 8 only - but you could create a setInterval manager... to ensure you aren't creating the same one again (which is disasterous), and cleans them up neatly, etc. On 2/27/06, lars <[EMAIL PROTECTED]> wrote: > > but flash8 only, isnt it? i just could use it, but for a flash 7 project > :) > > >

Re: [Flashcoders] hidden function: settimeout?

2006-02-27 Thread lars
yeah, gotta "switch back" from settimeout to setinterval now (because of the need to export for flash 7). btw: is there an better way to update the interval without having to clear it first? Am 27.02.2006 17:38 Uhr schrieb "eric dolecki" unter <[EMAIL PROTECTED]>: > flash 8 only - but you could

Re: [Flashcoders] Attaching code to buttons already on stage

2006-02-27 Thread Mike Britton
var universalButtonHandler = new Object(); universalButtonHandler.click = function(eventObject) { trace("click!"); trace(eventObject.target); // get button name // Logic here } btn00.addEventListener("click", universalButtonHandler); btn01.addEventListener("click", universalButtonHandle

[Flashcoders] scrollbar script

2006-02-27 Thread murder design
semi working flash movie: http://198.104.154.25/ here is my fla: http://198.104.154.25/scroller.fla OK this is the most perplexing action script problem i have ever had. i am desperately trying to solve this problem. my scroller works, but goes up too far, and does not act correctly. if someone can

Re: [Flashcoders] Re: sorting a collection of points clockwise

2006-02-27 Thread Bart Wttewaall
Thanks Morten, that actually made it 23% faster :-) 2006/2/27, Morten Barklund TBWAPlay <[EMAIL PROTECTED]>: > Bart Wttewaall wrote: > > Thanks, > > > > I guess I needed a little nudge to actually get working on the method. > > If anyone sees a quicker method than the code below, then please say s

Re: [Flashcoders] Easing equations - explanation of parameters

2006-02-27 Thread Zeh Fernando
In 'back' easing: the fifth parameter means 'overshoot'. In words by Mr. Penner himself, slightly edited: a controls the amount of overshoot: higher a means greater overshoot a has a default value of 1.70158, which produces an overshoot of 10 percent a==0 produces cubic easing with no overs

[Flashcoders] Focus within the Browser

2006-02-27 Thread Claudia Barnal
Ok, so I have a pretty simple question. How can I know if the SWF has the focus within the Browser. I need to do something like this: if ( playerHasFocus == true ) { myMC._visible = true; } else { myMC._visible = false; } Thanks, Claudia ___

Re: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread Ryan Matsikas
Looking for something like this? http://out.chewtinfoil.com/Timer.as On 2/27/06, lars <[EMAIL PROTECTED]> wrote: > > i already checked proto51, but didnt find a as2 class handy. anyway: i'll > do > one :) > > > Am 27.02.2006 16:32 Uhr schrieb "eric dolecki" unter <[EMAIL PROTECTED]>: > > > www.lay

Re: [Flashcoders] AS2.0 time/date Objects: Timer class?

2006-02-27 Thread Ryan Matsikas
Guess I should read the whole thread.. ignore that class it's not for formatting Time :) On 2/27/06, Ryan Matsikas <[EMAIL PROTECTED]> wrote: > > Looking for something like this? > http://out.chewtinfoil.com/Timer.as > > On 2/27/06, lars < [EMAIL PROTECTED]> wrote: > > > > i already checked proto5

Re: [Flashcoders] hidden function: settimeout?

2006-02-27 Thread Ryan Matsikas
Posted this to the wrong thread earlier, but this may be of use http://out.chewtinfoil.com/Timer.as and as eric suggested.. http://out.chewtinfoil.com/IntervalManager.as Cheers, Ryan On 2/27/06, lars <[EMAIL PROTECTED]> wrote: > > yeah, gotta "switch back" from settimeout to setinterval now (beca

Re: [Flashcoders] Cannot attach movieclip to root???

2006-02-27 Thread Ryan Matsikas
yer getRoot function is useless, it will step back until yer in the _root of the loader On 2/26/06, judah <[EMAIL PROTECTED]> wrote: > > Hi Adrian, > > That is indeed what is happening. I copied the library resource in my > second movie into the first movie and it did then work. Although the > ass

Re: [Flashcoders] Focus within the Browser

2006-02-27 Thread Mike Britton
IE and Mozilla handle this differently. I wasn't able to detect focus via JavaScript unless I took the embed tag out of the object tag. Ref: http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/object.asp http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/embed.asp T

[Flashcoders] Fire/Flame Effect Tutorials/Strategies/Help?

2006-02-27 Thread bryan.rice
Hi All, I am trying to understand how to create fire/flame effects with the Flash 8 filters and bitmap class, but I don't really know where to start. I have found at least one code sample out there, but I don't want to simply copy and paste code. I want to understand what I am trying t

[Flashcoders] specific circumstance with shared library fonts

2006-02-27 Thread elibol
I'm sorry guys, I know questions related to this topic are often repeated, but the circumstance of my problem is very specific. My goal: I must load my fonts from a shared library, then load the font into a dynamically generated textfield. My problem: It doesn't work. Here is where I am: items:

RE: [Flashcoders] Cannot attach movieclip to root???

2006-02-27 Thread Judah
Yeah, it's doing what I want. The real _root is where I wanted my movieclip to be attached. Since I cannot use library assets from one .swf in another I copied the resource to the loader movieclip and then it does what I want. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROT

Re: [Flashcoders] hidden function: settimeout?

2006-02-27 Thread eric dolecki
nice ;) On 2/27/06, Ryan Matsikas <[EMAIL PROTECTED]> wrote: > > Posted this to the wrong thread earlier, but this may be of use > http://out.chewtinfoil.com/Timer.as > and as eric suggested.. > http://out.chewtinfoil.com/IntervalManager.as > > Cheers, > Ryan > > On 2/27/06, lars <[EMAIL PROTECTED

[Flashcoders] How to remove component listener in CellRenderer

2006-02-27 Thread Oleg Filipchuk
Hi list, I use my custom components in tree and other list based components with CellRenderer API. I create it with createChildren method: function createChildren(Void) : Void{ combo = JViewCreator.createView (ComboBox, this, this.getNextHighestDepth(), "combo", {width: 97, height: 20, _x:

Re: [Flashcoders] How often do you use components? Or do you use it at all?

2006-02-27 Thread Sander
Hey Adobe, why don't you go ahead and open source those babies [components] so we can really share our applications? The source is in your apps folder, free to mod. // I'm a developer using them more and more. When you need a clear interface with elements that just work, components are grea

RE: [Flashcoders] specific circumstance with shared library fonts

2006-02-27 Thread jim
Your explanation has A: confused me :) im sure I can help you out with this as I have done it before. 1. create sharedassets.fla, add font export for Actionscript & export in first frame. 2. add a movieclip "stub" to library & export for runtime sharing in sharedassets.swf & export for Actionsc

Re: [Flashcoders] How often do you use components? Or do you use it at all?

2006-02-27 Thread Mike Britton
I meant distribution / EULA concerns, not the ability to look at the code. Mike ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by

[Flashcoders] Full Time Flash Developer Wanted

2006-02-27 Thread Liz Miles
We at 8e6 Technologies in Orange, Ca have an immediate opening for: Flash Developer 8e6 Technologies is the pioneer and leading provider of appliance-based Internet filtering and reporting solutions for business, education, government and ISPs worldwide. Recognizing security threats and distrac

[Flashcoders] working with multiple sound objects.

2006-02-27 Thread Matt Ganz
hi. i have 3 sound objects that i'm working with in my app. i have them all load when the site launches but i stop() them all at first because i don't want them all to start playing. here's the code: var room1Music:Sound = new Sound( _level0.room1_mc ); room1.setVolume( 80 ); room1.stop(); var ro

RE: [Flashcoders] specific circumstance with shared library fonts

2006-02-27 Thread jim
I Made an example, http://www.codesortium.com/demo/sharedlibrary/example.zip Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of jim Sent: 27 February 2006 19:24 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] specific circumstance with shared

Re: [Flashcoders] working with multiple sound objects.

2006-02-27 Thread eric dolecki
I assume you forgot your attachSound code in your email? On 2/27/06, Matt Ganz <[EMAIL PROTECTED]> wrote: > > hi. > > i have 3 sound objects that i'm working with in my app. i have them > all load when the site launches but i stop() them all at first because > i don't want them all to start playin

Re: [Flashcoders] working with multiple sound objects.

2006-02-27 Thread Matt Ganz
no. i thought you could just pass in a reference to the sound constructor with the instance name of the movie clip that houses the mp3 file. On 2/27/06, eric dolecki <[EMAIL PROTECTED]> wrote: > I assume you forgot your attachSound code in your email? > > On 2/27/06, Matt Ganz <[EMAIL PROTECTED]>

Re: [Flashcoders] working with multiple sound objects.

2006-02-27 Thread Helen Triolo
You can. But are your sound instances named room1Music or room1? Does it make a difference if you correct that? Helen Matt Ganz wrote: no. i thought you could just pass in a reference to the sound constructor with the instance name of the movie clip that houses the mp3 file. On 2/27/06, er

Re: [Flashcoders] working with multiple sound objects.

2006-02-27 Thread Matt Ganz
the reference is named room1Music but the actualy movie clip instance name is _level0.room1_mc. i've been using the reference before the sound methods, i.e. room1Music.start(), etc... im trying to manipulate several sounds independently of another. i have 4 sound objects; 1 for each media display

Re: [Flashcoders] specific circumstance with shared library fonts

2006-02-27 Thread elibol
It does! You're right, my explanation is ludacris. But in the context of my explanation, you've introduced two new conditions. It's some hack: One is to load a library stub, which seems to make library elements dynamically accessible, and the other is to load the library in as a movieclip, which s

Re: [Flashcoders] working with multiple sound objects.

2006-02-27 Thread Helen Triolo
Matt Ganz wrote: the reference is named room1Music but the actualy movie clip instance name is _level0.room1_mc. i've been using the reference before the sound methods, i.e. room1Music.start(), etc... That's not what I see in the code you posted. I see room1 being used as the (non-existe

Re: [Flashcoders] working with multiple sound objects.

2006-02-27 Thread Matt Ganz
nice catch. that's my bad but i have it fixed now. i just got it working and i simply pass the container movie clip housing my media display component into the sound constructor a la: var sound_md1:Sound = new Sound( _level0.container_mc1 ); and it's working fine. thank you very much for your hel

RE: [Flashcoders] specific circumstance with shared library fonts

2006-02-27 Thread jim
So to summerize, you have no more issues? I only ask because we are quickly running out of letters. Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of elibol Sent: 27 February 2006 20:45 To: Flashcoders mailing list Subject: Re: [Flashcoders] specific ci

Re: [Flashcoders] Focus within the Browser

2006-02-27 Thread Claudia Barnal
Thanks Mike, I'm going to try this out as soon as possible. I had a quick look at it, for which I have only one question. Would this handle both when you loose focus and when you receive it? _ Are you using the latest version of

Re: [Flashcoders] Focus within the Browser

2006-02-27 Thread Mike Britton
No - just when you receive it. When you lose focus, onblur is called. The event handler would look like var obj00 = document.getElementById ("oid"); obj00.onblur = function() { alert("Embed tag has lost focus"); } On 2/27/06, Claudia Barnal <[EMAIL PROTECTED]> wrote: > > Thanks Mi

Re: [Flashcoders] specific circumstance with shared library fonts

2006-02-27 Thread elibol
I apologize friend, I'm having trouble communicating like a ordinary human today. The technique you've shared works fabulously, I was able to implement it like you did in the example. The final bit of additional conditions was me just making fun with myself. M. On 2/27/06, jim <[EMAIL PROTECTED]>

  1   2   >