Re: [Flashcoders] physics engines - which do you recommend?

2010-06-25 Thread Mark Burvill
Box 2d is great - particularly since the recent 2.1 update. If it's 3d you want though, definitely look into JigLib. -- Mark Burvill Antifuzz www.antifuzz.com twitter.com/antifuzz Tel: 07780 608 498 On 25 Jun 2010, at 10:56, allandt bik-elliott

Re: [Flashcoders] CS4 crashing - tips please?

2010-04-12 Thread Mark Burvill
Did you get the 10.0.2 patch? http://download.macromedia.com/pub/flash/updates/10_0_3/Flash_10_0_3_AdobeUpdate.dmg CS4 was notoriously buggy on launch, but the above patch sorts a lot of the stability. Cheers, Mark. -- Mark Burvill Antifuzz www.antifuzz.com

Re: [Flashcoders] Events can be tedious, general thoughts on best practice?

2010-03-26 Thread Mark Burvill
Signals gets a big plus from me. Takes a lot of the donkey-work out of setting up custom events. On 24 Mar 2010, at 22:21, Taka Kojima wrote: You bring up some valid points, however some of them are irrelevant for this example, i.e. multiple listeners. I could be a minority, but I don't

Re: [Flashcoders] OOP Books (OT)

2010-03-08 Thread Mark Burvill
Advanced Actionscript 3 with Design Patterns by Joey Lott and Danny Patterson is excellent for good solid AS3 applications of standard patterns http://www.amazon.co.uk/gp/product/0321426568/ref=oss_product -- Mark Burvill Antifuzz www.antifuzz.com twitter.com

Re: [Flashcoders] Just a stupid question (hope you can help me)

2009-07-23 Thread Mark Burvill
Have you tried posting on the Gaia forum? Stephen is usually pretty good at answering. On 22 Jul 2009, at 17:07, PWMedia|Paul Wolthuis wrote: Hi Guys, Thanks for helping me out!!! I know about the Gaia panel option to set 100% width and 100% height in combination with the center/center

[Flashcoders] Filtering xml with E4X

2009-07-16 Thread Mark Burvill
Hello flashcoders, I'm trying to work out how to filter the below XML (loaded into a var called projectsXML) by the contents of the tag nodes, but can't quite get it working. So for instance, how would I use an E4X expression to return an XMLList that contained only those projects which

Re: [Flashcoders] Filtering xml with E4X

2009-07-16 Thread Mark Burvill
Awesome - that's what I'm after. I didn't know about contains. Thanks On 16 Jul 2009, at 13:56, Kenneth Kawamoto wrote: You may want to try: projectsXML.project.(tags.tag.contains(Website)) Kenneth Kawamoto http://www.materiaprima.co.uk/ Mark Burvill wrote: Hello flashcoders, I'm trying

Re: [Flashcoders] Good External Actionscript Editor for Mac?

2006-12-19 Thread Mark Burvill
Yep - another vote from Textmate from me. It's speeded up my coding ten times over. Although I'll also put in a word for Sepy, which I used to use on PC. It always used to be really buggy on Mac, but a new release has just come out that *so far* seems a lot more stable on OS X. M. Reuben

[Flashcoders] Detecting a click on an html link in a text field

2006-11-08 Thread Mark Burvill
Hi List, If you have an href link within an html text field in Flash, is there any way of detecting when the user clicks on it? Not being a standard button, you obviously can't do: on (press) { doStuff(); } But is there another way? Cheers.

Re: [Flashcoders] Detecting a click on an html link in a text field

2006-11-08 Thread Mark Burvill
this : a href=asfunction:myFunction,arg1,arg2 HTH A. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Burvill Sent: 8 novembre 2006 11:39 To: Flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Detecting a click on an html link in a text field

Re: [Flashcoders] Accessing a file on the local hard drive?

2006-09-12 Thread Mark Burvill
That's a good idea hadn't thought of that. Mind you, don't think we can use FP8 but worth considering. I'm still looking for the reason that it doesn't work straight from the hard drive though. Is it a Flash player thing or a service pack thing? *- **Mark Burvill* Interactive

[Flashcoders] Accessing a file on the local hard drive?

2006-09-08 Thread Mark Burvill
Hi all, A client has asked for something with the same functionality as this: www.bbc.co.uk/cbeebies/tweenies/gametime/jointhetweenies/ Bascially it's a kid's thing where you are told to save a picture of yourself called me.jpg in a directory on your hard drive called temp, and then flash

[Flashcoders] quick question about buttons

2006-05-02 Thread Mark Burvill
Hi list, Is there a way to condense several button handler commands into one line? ie instead of writing: myButton_btn.onRelease = function(){ doStuff(); } myButton_btn.onPress = function(){ doStuff(); } myButton_btn.onRollOver = function(){ doStuff(); } Can I do something like:

[Flashcoders] Listeners / ASBroadcasters / Event Dispatchers confusion

2006-04-27 Thread Mark Burvill
Hi group, AS2 newbie question here... I've been going round and round in circles trying to work out the best way of doing this, so maybe someone can help me. Let's say I have a movieclip on the main timeline of my fla called acrobat_mc which is an animation of a little man doing a

Re: [Flashcoders] Question about xpath and cdata

2006-02-03 Thread Mark Burvill
Anyone? :o) Mark Burvill wrote: Hi everyone, I'm still a bit new to using xml with flash, and I'm just starting to dig into xfactorstudio's xpath for AS2. I'm generally loving the way it's clearly going to save me loads of time in searching through my xml docs, but I'm having a bit

Re: [Flashcoders] Question about xpath and cdata

2006-02-03 Thread Mark Burvill
Ugly indeed - but at least it works! Thanks Jason - you're a star! -- *Mark Burvill* Interactive designer www.eyegas.com http://www.eyegas.com Merrill, Jason wrote: This is the only thing I have found that works: XMLNode((XPath.selectNodes(myXML,root/node/text())[0])).nodeValue; Ugly

[Flashcoders] Question about xpath and cdata

2006-02-02 Thread Mark Burvill
. in my textfield - not good. My question is, how do I get the same result using xpath? Doing this: XPath.selectNodes (myXML, /content/biog/text()); ..gives me the right text, but won't treat it as html. Thanks! Mark. -- *Mark Burvill* Interactive designer www.eyegas.com http://www.eyegas.com

[Flashcoders] Can an object delete itself?

2005-12-21 Thread Mark Burvill
Hi all, I've just started transitioning to AS2 (so go easy on me), and have a question about a game I'm building... I have a Baddie object which handles a baddie on the screen, and when one gets killed, and has finished it's death animation, I'm running a method within the Baddie object

Re: [Flashcoders] Can an object delete itself?

2005-12-21 Thread Mark Burvill
Nice one - thanks Andreas. :o) Andreas Rønning wrote: Mark Burvill wrote: Hi all, I've just started transitioning to AS2 (so go easy on me), and have a question about a game I'm building... I have a Baddie object which handles a baddie on the screen, and when one gets killed, and has

Re: [Flashcoders] Distort bitmap in flash 8?

2005-11-24 Thread Mark Burvill
it helps Franto ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders -- *Mark Burvill* Interactive designer www.eyegas.com http://www.eyegas.com *Work:* 0117 953 0100 *Mobile*: 07780

[Flashcoders] Distort bitmap in flash 8?

2005-11-23 Thread Mark Burvill
Quick question about Flash 8 (I'm still using Flash 7 and my trial has expired for 8)... Is it possible to actually distort a bitmap image now in the same way that you can distort a shape (modify - transform - distort)? I want to create a perspective look as though you are looking at a

Re: [Flashcoders] Distort bitmap in flash 8?

2005-11-23 Thread Mark Burvill
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Burvill Sent: Wednesday, November 23, 2005 11:10 AM To: 'Flashcoders mailing list' Subject: [Flashcoders] Distort bitmap in flash 8? Quick question about Flash 8 (I'm still using Flash 7 and my trial has expired for 8)... Is it possible to actually

Re: [Flashcoders] FLV's dropping frames on import for timeline playback.

2005-10-31 Thread Mark Burvill
Putting videos directly on the timeline (if I'm right in thinking that's what you're doing) is not really the way to go, it's notoriously unreliable for anything other than really small videos. Have you tried using one of the Media Display components? Matt Muller wrote: Hi, I have a 360 of