Re: [Flashcoders] How to call functions in sequence

2006-01-28 Thread Mike Britton
Yes, don't think in terms of avoiding functions. If something needs to be repeated, it's a candidate for a function. Performance is important for a game, but if an app's object-orientated design makes it a millisecond slower than procedural (inline) code, that's acceptable if you get the

Re: [Flashcoders] ActionScript Cheatsheet Update (new URL)!

2006-01-27 Thread Mike Britton
Nice! It would be great if each element was a link to the docs! Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Window Error wont go away

2006-01-27 Thread Mike Boutin
I am trying to make a window pop up. I take the code from flash docs (put a window component in the library) and put this code, then I get this error everytime. Can anyone tell me why i get it? CODE: import mx.managers.PopUpManager; import mx.containers.Window; var newWindow =

Re: [Flashcoders] Window Error wont go away

2006-01-27 Thread Mike Boutin
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Boutin Sent: Friday, January 27, 2006 1:58 PM To: Flashcoders mailing list Subject: [Flashcoders] Window Error wont go away I am trying to make a window pop up. I take the code from flash docs (put a window component in the library

[Flashcoders] Easiest way to strip an MC of all it's filters?

2006-01-26 Thread Mike Mountain
I want to return an MC to it's original state What's the quickest way - setting the filter array to null or an empty array doesn't seem to reliably work. M ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] Easiest way to strip an MC of all it's filters?

2006-01-26 Thread Mike Mountain
list Subject: Re: [Flashcoders] Easiest way to strip an MC of all it's filters? Mike Mountain wrote: I want to return an MC to it's original state What's the quickest way - setting the filter array to null or an empty array doesn't seem to reliably work. M

Re: [Flashcoders] Re: AMFPHP for commercial projects

2006-01-26 Thread Mike Britton
It's the legal issue -- this implies risk where other options don't. Personally I love AMFPHP and have never observed it blowing up; it's far faster than ColdFusion remoting in my experience. Legal issues aside, I'd go with it for enterprise-scale projects. Mike On 1/26/06, Simen Brekken

Re: [Flashcoders] Re: AMFPHP for commercial projects

2006-01-26 Thread Mike Britton
Any would-be lawyers lurking here who could once and for all help us resolve this issue? Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Re: AMFPHP for commercial projects

2006-01-26 Thread Mike Britton
Because they have a capable competing language, ColdFusion. It would be like bringing a product to market and then releasing a free version of the same thing. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

RE: [Flashcoders] Re: AMFPHP for commercial projects

2006-01-26 Thread Mike Mountain
] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Britton Sent: 26 January 2006 15:24 To: Flashcoders mailing list Subject: Re: [Flashcoders] Re: AMFPHP for commercial projects Any would-be lawyers lurking here who could once and for all help us resolve this issue? Mike

Re: [Flashcoders] Re: AMFPHP for commercial projects

2006-01-26 Thread Mike Britton
If that is their approach, it inhibits AMFPHP which is itself oppressive. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Re: AMFPHP for commercial projects

2006-01-26 Thread Mike Mountain
Yeah, but subtle. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Britton Sent: 26 January 2006 15:50 To: Flashcoders mailing list Subject: Re: [Flashcoders] Re: AMFPHP for commercial projects If that is their approach, it inhibits AMFPHP

Re: [Flashcoders] array question

2006-01-26 Thread Mike Britton
FruitArray = [apples, pears, watermelons, oranges, peaches]; for (i=0; iFruitArray.length; i++) { if (FruitArray[i] == oranges) { trace(i); } } hth, Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] AMFPHP for commercial projects

2006-01-26 Thread Mike Britton
AMFPHP is really straightforward code -- any PHP programmer worth his salt could go in and fix if needed. It also keeps the option of moving to CF or Java open, since your AS2 will be the same. The project has picked up again and has been out of beta for some time. Mike

[Flashcoders] Fullscreen flash

2006-01-26 Thread Mike Boutin
Hi, I am making a fullscreen flash site and I have the width and height set to 100%. In internet explorer it all views fine, but when I view the same page in Firefox and Safari, the flash document doesnt stretch to 100%, it only shows like 1/3 of the page as flash and the rest as just plain

Re: [Flashcoders] Fullscreen flash SOLVED

2006-01-26 Thread Mike Boutin
Thanks Ian, works like a charm! Ian Thomas wrote: Hi Mike, It's a Known Feature with Firefox. It's not strictly speaking a bug - the browser doesn't know how high the document is supposed to be, because there's no sized content in the document. Try sticking this in the head style body

Re: [Flashcoders] Looking for RIA Sample featured in MM(AB)

2006-01-26 Thread Mike Duguid
Does anyone remembers that Demo/Showcase? I have been looking in MM for a while but I cant find it. TIA Helmut. http://www.macromedia.com/resources/telecom/hp_demo/hptelco.html?promoid=BZRP ___ Flashcoders mailing list

Re: [Flashcoders] Microsoft Sparkle

2006-01-26 Thread Mike Duguid
For all the 3d naysayers, perhaps you were the same guys that said a few years back that there was no place for video on the internet, no place for applications on the internet. Perhaps there's no place for telephony on the internet and I'm just imagining skype and the coming wave of

Re: [Flashcoders] Microsoft Sparkle

2006-01-26 Thread Mike Britton
Agreed, well put. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Preview window: always full screen?

2006-01-24 Thread Mike Britton
I apologize if this has been covered, but can someone tell me how to make the Flash IDE preview window launch fullscreen? I have dynamically-scaling apps I need to test without causing a resize event to trigger by making the damn window larger. This is killing me! Thanks in advance, Mike

[Flashcoders] Wierd window error

2006-01-24 Thread Mike Boutin
I copy and paste this code from flash docs and I get a type mismatch error on line 3. I used this same code in a different swf and it worked fine, but in this particular movie I get this error, does anyone know what is causing this? ( I have a window component in my library ) import

[Flashcoders] Dynamically named loadVars

2006-01-23 Thread Mike Boutin
What is the proper way to write the loop that the names of the posted vars and be dynamically named based on i in the loop, as in myData.color_0 = white; myData.color_1 = blue etc. Any ideas? var myData:LoadVars = new LoadVars(); myData.action = create; myData.count =

RE: [Flashcoders] Aliased text corruption problem

2006-01-20 Thread Mike Mountain
I get this with other fonts too...but it's more random - sometimes I get block artefacts as well. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joe Cutting Sent: 20 January 2006 13:17 To: flashcoders@chattyfig.figleaf.com Subject:

RE: [Flashcoders] Stolen content

2006-01-19 Thread Mike Mountain
At least one of the sites did give credit (the french one if I recall) although it was pretty much a cut and paste job... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Grden Sent: 19 January 2006 13:34 To: Flashcoders mailing list

Re: [Flashcoders] embed SWF with PHP

2006-01-17 Thread Mike Britton
to completely hide your swf filename, and techniques for preventing caching are dodgy at best. If anyone knows how to make swfs un-obfuscatable I'd like to hear their approaches. hth Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

[Flashcoders] Fullscreen Flash issue

2006-01-16 Thread Mike Boutin
I am working on a fullscreen flash project. Can anyone tell me why this code acts like a loop rather than just happening once? I am trying to position an object at the bottom of the browser window no matter what the window size. I am using this code to set it right off the start. This all

Re: [Flashcoders] Fullscreen Flash issue

2006-01-16 Thread Mike Boutin
Yes thanks this seems to work. Still not sure why it was doing what it was, either way thanks for the help! Marc Hoffman wrote: not sure why, but try putting Stage properties in a new variable that doesn't get reset when repositioning the object: theWidth=Stage.width/2;

[Flashcoders] unicode escaped via JavaScript - display in Flash

2006-01-13 Thread Mike Lyda
anyone know how to display a unicode (japanese characters) string that has been escaped via JavaScript and sent into the SWF via SetVariable? unescape() works just dandy for the English text, but the JP text just comes out as #65533;92ª#65533;1A¹#65533;9202C6#65533; (boxes, garbage). I could

Re: [Flashcoders] Using the $ sign at the beginning of a variable

2006-01-12 Thread Mike Britton
] wrote: What does a dollar sign do at the beginning of a variable in Flash? Anything? like Stage.$blah = rar; ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders -- Mike

[Flashcoders] Wierd Video

2006-01-11 Thread Mike Boutin
Hi All, I have a FLVPlayback component in flash 8 with the skinAutoHide set to true. In Firefox everything works fine, when you roll over the video, the player controls come up and then go away when you roll off. In Internet Explorer once you roll over the video the controller stays and

[Flashcoders] update to Flash - JavaScript API since FP5?

2006-01-09 Thread Mike Lyda
I'm trying to confirm that the API used to communicate with the Flash Player (via JavaScript for example) hasn't changed since this document was created: http://www.macromedia.com/support/flash/publishexport/scriptingwithflash/scriptingwithflash_03.html I know about the Flash Integration kit

Re: [Flashcoders] Flash 8 and CDATA XML

2006-01-09 Thread Mike Lyda
. Thanks, Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders __ Yahoo! DSL – Something

[Flashcoders] Files in directory?

2006-01-06 Thread Mike Boutin
Is there anyway for flash to find out how many files exist within a specific directory? Thanks ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Files in directory?

2006-01-06 Thread Mike Boutin
Ok thanks, I think ill give'er a try with php :) Ian Thomas wrote: Alternatively, if you're looking in a directory on a server, code up something in a server-side language - PHP or whatever - to do the file count, and have flash request the result. HTH, Ian On 1/6/06, Merrill, Jason [EMAIL

Re: [Flashcoders] Stage.height Misreporting

2006-01-05 Thread Mike Britton
Try using setInterval Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash does not run when wmode is transparent and div is hidden

2006-01-04 Thread Mike Britton
I never use wmode transparent -- it's buggy and broken. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Changing color of window title?

2005-12-29 Thread Mike Boutin
Does anyone know how to change the color of the title in the window component? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] NumericStepper

2005-12-29 Thread Mike Boutin
I have a NumericStepper that changes the value of a price textfield based on the stepper value. Is there anyway to check if the user increment/decrement the stepper so I can muliply/divide the number when needed. Thanks var nstepListener:Object = new Object(); nstepListener.change =

[Flashcoders] Custom combobox

2005-12-23 Thread Mike Boutin
Can anyone tell me how to go about creating a comobox that can hold a 10x10 pixel color palette image and a label beside it per row? Has anyone seen anything like this? Thanks! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Scrollpain Overlap Issues

2005-12-23 Thread Mike Boutin
know if you still can't see the movie. Just curious, can you view source? http://mike.randm.org/flash/scrollpain/index.html Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Friday, December 23, 2005 12:32

Re: [Flashcoders] Custom combobox

2005-12-23 Thread Mike Boutin
. - Original Message - From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Friday, December 23, 2005 3:23 PM Subject: Re: [Flashcoders] Custom combobox Hi Chris, thanks for the help by the way, i managed to get it working like so

[Flashcoders] Combo troubles

2005-12-22 Thread Mike Boutin
I have a swf file that has a combobox component in it with two options. This is loaded into _root.holderClip For some reason when I publish and view it in flash player, it works fine. When I run the same thing in Internet Explorer and comobox does not drop down anymore? Am I missing

Re: [Flashcoders] RE: Flex vs OpenLaszo

2005-12-21 Thread Mike Boutin
So OpenLaszlo may be a better solution as it does not need a OpenLaszlo licence to have a standalone swf on the server? - Original Message - From: Spike [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, December 21, 2005 8:27 AM Subject:

[Flashcoders] IE vs Firefox performance

2005-12-21 Thread Mike Boutin
I recently installed and have been using Firefox as my main browser. I have noticed that all my flash sites in firefox perform noticably slower than they do in internet explorer. Is this an issue with firefox plugin itself or should I just go back to oh no internet explorer. Mike

Re: [Flashcoders] flash and cfm

2005-12-20 Thread Mike Britton
Looks like you're running into the character limit of URL strings. I second Jason's recommendation of remoting. Either that or use coldfusion to write XML files. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

[Flashcoders] What not to do

2005-12-20 Thread Mike Boutin
Does anyone have any links on stuff Not to do in flash that maybe cause the plugin to slow down or halt. Maybe even some best practices when working on large projects? Thanks! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Out of curiosity, XPath and String Datatype Oddity

2005-12-20 Thread Mike Boutin
Maybe something like this may help? myText=XMLNode((XPath.selectNodes(myxml,myNodePath/mynode())[0])).nodeValue; Mike Boutin Merrill, Jason wrote: AFAIK, XPath.selectNodes() returns an Array. How do you use Xpath to return node values then? Jason Merrill | E-Learning

[Flashcoders] Flex vs OpenLaszo

2005-12-20 Thread Mike Boutin
Has anyone played with OpenLaszo as well as Flex? Does flex allow you to compile a stand-alone swf file such as OpenLaszlo does? Thanks! Mike Boutin ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman

Re: [Flashcoders] Out of curiosity, XPath and String Datatype Oddity

2005-12-20 Thread Mike Boutin
. I was wondering just about the XPath implementation and why it doesn't return a native string, thanks though. Jason Merrill | E-Learning Solutions | icfconsulting.com -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Mike

[Flashcoders] Wierd split

2005-12-20 Thread Mike Boutin
Im having a wierd problem with using .split on an array. I create an array 3 frames before in the same timeline like so: _root.cat_colors = new Array(); _root.cat_colors[0] = bob,john,betty; Then 2 frames down the timeline I run a loop like so: for (i=0; i_root.cat_colors.length; i++) {

Re: [Flashcoders] Wierd split

2005-12-20 Thread Mike Boutin
and it works for me. Is anything else happening in the movie or any included movies? See it here: http://www.adrianlynch.co.uk/temp/colours.fla Ade -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mike Boutin Sent: 20 December 2005 23:41 To: Flashcoders mailing

Re: [Flashcoders] Wierd split

2005-12-20 Thread Mike Boutin
Thanks Adrian, your code works exactly like mine should but for some reason mine doesnt get the same results (though its the same code) ;) Mike Boutin Adrian Lynch wrote: Just took your code and plonked it in a new .fla and it works for me. Is anything else happening in the movie or any

Re: [Flashcoders] ****************** Unicode Input ***************************

2005-12-15 Thread Mike Lyda
umm.. it kind of sounds like you want Flash to automatically map the characters to the keypress? i.e. if someone with an English keyboard/system, types into your input field the characters will show up as Chinese? ... it might be possible to have them actually typing into an offscreen/hidden

Re: [Flashcoders] anchors in dynamic textfield?

2005-12-15 Thread Mike Britton
in. The variable could be a few words you know are unique to the line you wish to anchor to. There would have to be some text-parsing code to search for the words, but in theory it would work. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-14 Thread Mike Mountain
Yup doesn't work for me anymore -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cedric Muller Sent: 14 December 2005 09:53 To: Flashcoders mailing list Subject: Re: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me broken

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-14 Thread Mike Mountain
instances of textboxes using the font. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 14 December 2005 10:04 To: Flashcoders mailing list Subject: RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me Yup

RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Mike Mountain
You can embed cue points in flash 8 flvs Then use these to trigger your subtitles -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Derivative Sent: 14 December 2005 16:26 To: Flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Displaying

RE: [Flashcoders] Displaying transcript on-screen for hearing-impaired

2005-12-14 Thread Mike Mountain
Yeah - sorry what I meant was if you use the flash 8 video encoder tool there's a whole section in the setting devoted to cue points, event triggering etc. It's a bit easier to set up than the old MX04 way if I recall. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

[Flashcoders] SVN TortoiseSVN

2005-12-14 Thread Mike Boutin
Just a few questions about SVN TortoiseSVN. I have ran the 1 click setup SVN that installs Subversion and TortoiseSVN. It created the repository in c:\svnrepos I stuck my project in a folder c:\svnrepos\project1, then I import it into the repos. Now when I make a new directory and use

Re: [Flashcoders] SVN TortoiseSVN

2005-12-14 Thread Mike Boutin
- From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, December 14, 2005 10:09 PM Subject: [Flashcoders] SVN TortoiseSVN Just a few questions about SVN TortoiseSVN. I have ran the 1 click setup SVN that installs Subversion

Re: [Flashcoders] SVN TortoiseSVN

2005-12-14 Thread Mike Boutin
. Subversion keeps the files inside its db in its own special format, only keeping the parts of the files that have changed between revisions to save disk space. C Mike Boutin wrote: Just a few questions about SVN TortoiseSVN. I have ran the 1 click setup SVN that installs Subversion

Re: [Flashcoders] SVN TortoiseSVN

2005-12-14 Thread Mike Boutin
it, you'll never look back. Enjoy! C Mike Boutin wrote: Perfect this is what I was just reading in TortoiseSVN help. I just wasnt sure if I could then delete the folder I had imported. It says in the help that their are 2 ways in which it can store the files, in a db, or in the native filesystem

Re: [Flashcoders] Mp3:: issues...

2005-12-14 Thread Mike Duguid
Use 44/22/11Khz sample rates and you should be fine. On 12/14/05, Karim Beyrouti [EMAIL PROTECTED] wrote: Hello ! We are using this software that generates mp3's, which i am loading into flash. The problem: flash makes a mess of decoding the audio. check it out:

Re: [Flashcoders] SVN TortoiseSVN

2005-12-14 Thread Mike Boutin
file(except when you first import). Subversion rules, btw. Once you get used to using it, you'll never look back. Enjoy! C Mike Boutin wrote: Perfect this is what I was just reading in TortoiseSVN help. I just wasnt sure if I could then delete the folder I had imported. It says

Re: [Flashcoders] SVN TortoiseSVN

2005-12-14 Thread Mike Boutin
= passwd ### This option specifies the authentication realm of the repository. ### If two repositories have the same authentication realm, they should ### have the same password database, and vice versa. The default realm ### is repository's uuid. # realm = My First Repository Peace C Mike Boutin wrote

[Flashcoders] sortable list? anyone?

2005-12-14 Thread Mike Lyda
Has anyone seen AS2 code to accomplish this: http://tool-man.org/examples/sorting.html It's doable, and so figure somebody has already done it.. and I'm feeling lazy and not wanting to re-invent the wheel. ;) __ Do You Yahoo!? Tired of spam?

RE: [Flashcoders] debug tool?

2005-12-13 Thread Mike Mountain
I use Xray all the time - can only praise it, it saves me no end of time. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Grden Sent: 13 December 2005 04:33 To: Flashcoders mailing list Subject: Re: [Flashcoders] debug tool? Hey Mike

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread Mike Mountain
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kerem Gülensoy Sent: 13 December 2005 14:24 To: 'Flashcoders mailing list' Subject: AW: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me it still works fine for me...what

RE: [Flashcoders] Loading Xml from Flash over Http

2005-12-13 Thread Mike Mountain
Strange that this should come up, the other day my colleague was working on a file that used relative refferences loaded in from XML, it worked fine, the next day when he open it up it had stopped working - the fix we found was instead of: mydir/myfile.xml Was to use /mydir/myfile.xml The odd

Re: [Flashcoders] debug tool?

2005-12-13 Thread Mike Boutin
Does LuminicBox.Log also work in flash 8? i cant seem to get it to log a message though it doesnt get any errors... John Grden wrote: Yeah i agree, if you're just into logging, LuminicBox/Flashinspector is a great tool John On 12/13/05, Jim Tann [EMAIL PROTECTED] wrote: LuminicBox

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
movieclip.stopAllTweens() will stop all tweening on all the instances that are currently tween. Not sure if this helps. [EMAIL PROTECTED] wrote: Hello everybody, i use tween of laco [laco.wz.cz] with delay on some instances. i want to delete a delay and the tween to on previous instance

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
How exactly are you delaying the tween? the tween class doesnt have a delay in it as far as I know Cinetryx wrote: stopAllTween delete the tween event but not the delay before the tween Mike Boutin a écrit : movieclip.stopAllTweens() will stop all tweening on all the instances

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
this delay. Mike Boutin a écrit : How exactly are you delaying the tween? the tween class doesnt have a delay in it as far as I know Cinetryx wrote: stopAllTween delete the tween event but not the delay before the tween Mike Boutin a écrit : movieclip.stopAllTweens() will stop all

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
); myButton.onRelease = function(){ clip.stopTween(); } Cinetryx wrote: yes, i want. Mike Boutin a écrit : So you are calling the tween, but you want to delete it before the delay happens? Cinetryx wrote: When you write this : my_mc.tween(property, pEnd, seconds, animType, delay, callback

[Flashcoders] Hyperlink to frame?

2005-12-13 Thread Mike Boutin
Is it possible to have a hyperlink (loaded from xml)gotoandplay a certain frame in the movie? Heather ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Hyperlink to frame?

2005-12-13 Thread Mike Boutin
? sort of... you could do: a href=asfunction:_root.gotoAndPlay,label / - Original Message - From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, December 13, 2005 11:40 PM Subject: [Flashcoders] Hyperlink to frame

Re: [Flashcoders] Success Stories with Flash Friendly CVS Systems?

2005-12-12 Thread Mike Boutin
Yes i agree, Subversion seems to do the trick for me. eric dolecki wrote: What's your situation? How big is your team, how often are you changing binary assets, are you working from a large class library, etc? I use SubVersion and its super nice. Nothing is perfect when working with binary

Re: [Flashcoders] debug tool?

2005-12-12 Thread Mike Boutin
I just want to be able to see the incoming/outgoing data, as well as just send random traces to it when developing. Heather - Original Message - From: Pranav [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Monday, December 12, 2005 7:54 PM

RE: [Flashcoders] Convert .FLV to Quicktime

2005-12-09 Thread Mike Mountain
can you import the flv into the flash timeline and just export as quicktime? M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brumm, Mike Sent: 08 December 2005 23:09 To: 'Flashcoders mailing list' Subject: [Flashcoders] Convert .FLV

RE: [Flashcoders] External text from XML file including superscript anditalic

2005-12-09 Thread Mike Hiatt
Paul, Did you receive an answer to this question? I am needing to do the same thing with a service mark Thanks Mike Hiatt [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Steven Sent: Tuesday, November 15, 2005 11:01 AM

[Flashcoders] Loading Image _width _height

2005-12-08 Thread Mike Boutin
Can anyone tell me why when I call the displayImage() function after I fully loaded, and try to get the _width and _height of holderClip, it comes back as zero. But if I wait 1 second after the load and run the displayImage() function through the button click, it then finds the width and

Re: [Flashcoders] Flash is a single-threaded app? Maybe it's just the AVM? or...

2005-12-08 Thread Mike Britton
It scares me too, but so does UI lock, something that's been happening to me a lot lately. Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Convert .FLV to Quicktime

2005-12-08 Thread Brumm, Mike
to Quicktime. Thanks in advance, Mike ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Even odds

2005-12-08 Thread Mike Boutin
Is it possible to check a number to see if its even / odd? Thanks! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Mountain
Our long-term plan is to develop a universal client by combining PDF, Flash and HTML in a single, integrated runtime. How does this differ from a browser? M ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Mountain
So is this to target the 'Konfabulator' widget style market - or will my bank build me a custom app to do my online banking? The security and sandbox issues will be interesting here - the browser developers already have their hands full plugging holes - it'll be interesting to see Adobe tackles

[Flashcoders] Tabbing

2005-12-07 Thread Mike Boutin
I a user login but the input fields do not all sit in the same movieclip. The structure is as such: userMovie.user_input.inputText.text, passMovie.pass_input.inputText.text How do I set the fields so I can tab through them? And also will doing this cause the onFocus function for each

[Flashcoders] fyi : AS3 Info on String / StringBuilder in Flash Player 8.5

2005-12-07 Thread Mike Chambers
fyi http://labs.macromedia.com/wiki/index.php/ActionScript_3:articles:string_stringbuilder mike chambers [EMAIL PROTECTED] ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Yes this is how I have been fixing the problem. Seems like a pain to have to use both methods, rather than just using the xpath. Morten Barklund Shockwaved wrote: Merrill, Jason wrote: [...] Problem overview: using Xpath, HTML tags inside of XML does not render, even with CDATA tags

Re: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Chambers
Yes. That is correct. It is referring to Apollo, and not the web based plugins. mike chambers [EMAIL PROTECTED] hank williams wrote: Yex, it is apollo. I just didnt use the code word. But that is what I am referring to. Regards Hank On 12/7/05, Mark Winterhalder [EMAIL PROTECTED] wrote

Re: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Chambers
Again, the FAQ items refers to Apollo, and not the web based plugins / players. mike chambers [EMAIL PROTECTED] Merrill, Jason wrote: Flash Player X = Flash Player 8 + Adobe Reader I think Flash player 8.5 will be out before PDF is integrated in the player though. At least, that's

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Still wasnt able to get it working. I had to resort to using nodeValue instead. pain in the ass Mike Boutin Juicy Studios Merrill, Jason wrote: Quote: http://www.w3.org/TR/xpath#section-Expressions I can never seem to make heads or tails of the w3.org documentation - maybe I'm just

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
I was able to use xpath to return titlesome html/title then use nodeValue on that. but I *wish* i could just do /xmlnode/xmlnode/text() and cut nodeValue out but i dont think its possible. Morten Barklund Shockwaved wrote: Mike Boutin wrote: Still wasnt able to get it working. I had

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
haven't used those classes before, then its interesting that you are giving advice about a product you don't seem to know the details of. I like Mike cannot get your suggestions to work, which if I am interpreting correctly, would mean: myString = XPath.selectNodes(my_xml,rootNode/myChildNodeNode

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
to know the details of. I like Mike cannot get your suggestions to work, which if I am interpreting correctly, would mean: myString = XPath.selectNodes(my_xml,rootNode/myChildNodeNode/myChildNode/).nodeVa lue; That returns undefined when I try it. Or are you suggesting something else? Jason

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Where is the documentation on selectSingleNode It doesnt seem to be in flash 8 help files. Johannes Nel wrote: use the selectSingleNode method or use the array accessor On 12/7/05, Mike Boutin [EMAIL PROTECTED] wrote: even in this case the result is undefined string = XPath.selectNodes

Re: [Flashcoders] FAQ Adobe acquisition of Macromedia

2005-12-07 Thread Mike Chambers
Based on the workflows shown by Kevin Lynch at the Spark Europe conference, I would think about it more as an app runtime than a browser. mike chambers Merrill, Jason wrote: So Apollo will be a sort of web browser that has a flash and PDF renderer built

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Perfect, thanks for the help! Morten Barklund Shockwaved wrote: Mike Boutin wrote: even in this case the result is undefined string = XPath.selectNodes(my_xml, /pathto[1]/xml).nodeValue; I've just gotten the libraries, and it is exactly as I expected. selectNodes returns an Array

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-07 Thread Mike Boutin
Sweet that works. thanks for the update! ;) Mike Boutin Juicy Studios Merrill, Jason wrote: By the way Martin, I hope I didn't come across as being unappreciative - thanks again for your help. Mike too. Mike, if it's any less painful, while not pretty, I knocked it down to a single line

[Flashcoders] HTML in XML

2005-12-06 Thread Mike Boutin
I am bring in some html text to show in flash in an xml file like this: description id=0 title![CDATA[bpicture 0/b]]/title /description When i trace it back in flash, it shows up like this: lt;bgt;picture 0lt;/bgt; How can I keep it show it shows the html tags because it wont show up

<    3   4   5   6   7   8   9   >