Re: [Flashcoders] Flex interferes with SVN

2009-06-26 Thread Muzak
I use SubClipse and TortoiseSVN and have no problems. Just make sure both have the exact same version, 1.6.2 in my case. regards, Muzak - Original Message - From: "Mario Gonzalez" To: "Flash Coders List" ; "This is the generalmailing list for FlashCodersNY.org" Sent: Saturday, June

Re: [Flashcoders] Flex interferes with SVN

2009-06-26 Thread Steven Sacks
do in this situation? Mario Gonzalez http://onedayitwillmake.com Senior Developer | WDDG.com __ Information from ESET NOD32 Antivirus, version of virus signature database 4193 (20090626) __ The message was checked by ESET NOD32 Antivirus.

[Flashcoders] Flex interferes with SVN

2009-06-26 Thread Mario Gonzalez
ntivirus, version of virus signature database 4193 (20090626) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] flash stops redrawing the stage

2009-06-26 Thread Karl DeSaulniers
Have you tried wrapping in an onEnterFrame? May make it slow though. Karl Sent from losPhone On Jun 26, 2009, at 7:15 AM, Hans Wichman > wrote: Hi list, I have an app in AS2, which I run in flash player 10. If I use fscommand ("fullscreen", "true") and mouseover the stage a lot, flash si

Re: [Flashcoders] Flash MouseWheel Listener Problem

2009-06-26 Thread Steven Sacks
http://www.libspark.org/wiki/SWFWheel/en On Jun 26, 2009, at 1:50 AM, Dav wrote: Hi Guys, I'm having a problem with attaching the mouse wheel listener to the stage in AS3. For some strange reason, when flash is focused and I scroll my mouse wheel, the entire browser scrolls along with f

Re: [Flashcoders] Reach a single attribute value on a XML node with xpath AS3

2009-06-26 Thread Peter Hall
Hi Davide, I assume the asterisks are just for our benefit. And I think the path you are looking for is "root/ancestor/someElement/@someAttribute". You need the / before the @. Peter On Fri, Jun 26, 2009 at 6:17 PM, Dave Watts wrote: >> I'm parsing a huge xml file, and i'm using xpath (as3 ver

Re: [Flashcoders] Reach a single attribute value on a XML node with xpath AS3

2009-06-26 Thread Dave Watts
> I'm parsing a huge xml file, and i'm using xpath (as3 version) with > memorphic package (http://code.google.com/p/xpath-as3/) > but I cannot reach a single attribute value on a node: > ex: > > ... > ... > > and i need this value to build a menu. > I'm trying to reach this value with this path:

Re: [Flashcoders] Query String + Loader odd issue

2009-06-26 Thread Steve Mathews
Oh, I thought I replied here to say I figured it out (kind of), guess I replied somewhere else. So I found that this problem only happened when launching non-debug from the Flash IDE. If I published and ran the swf standalone it worked fine. Strange issue. Thanks. On Thu, Jun 25, 2009 at 7:32 PM,

Re: [Flashcoders] Ruy Adorno portfolio

2009-06-26 Thread Ruy Adorno
Many thanks guys! I used Physaxe as a physics engine, it has an excellent performance and is also opensource, you can check the project here: http://code.google.com/p/physaxe/ I would love if some of you can tweet it and other things to help me spread the word. Best, Ruy Adorno __

Re: [Flashcoders] Ruy Adorno portfolio

2009-06-26 Thread King's Cat (Cassandra King)
Ruy Love your work! Impressive portfolio site On Fri, Jun 26, 2009 at 11:29 AM, Ruy Adorno wrote: > Hello list, > > > http://www.ruyadorno.com > ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinf

Re: [Flashcoders] Ruy Adorno portfolio

2009-06-26 Thread Fabio Pinatti
Pretty nice! Loved the boxes flying around the screen. Which particle system have you used? Congratulations! On Fri, Jun 26, 2009 at 12:29 PM, Ruy Adorno wrote: > Hello list, > > I just released my new flash portfolio this week and want to spread the > word. > It was developed using opensource

[Flashcoders] Ruy Adorno portfolio

2009-06-26 Thread Ruy Adorno
Hello list, I just released my new flash portfolio this week and want to spread the word. It was developed using opensource programming tools like Haxe, SwfMill and FlexSDK. You can check it online here: http://www.ruyadorno.com Thanks, Ruy Adorno ___

[Flashcoders] Reach a single attribute value on a XML node with xpath AS3

2009-06-26 Thread Davide Di Blasi
Hi list, this is my very first message and I'm happy to join this list! I'm parsing a huge xml file, and i'm using xpath (as3 version) with memorphic package (http://code.google.com/p/xpath-as3/) but I cannot reach a single attribute value on a node: ex: ... ... and i need this value to build

[Flashcoders] flash stops redrawing the stage

2009-06-26 Thread Hans Wichman
Hi list, I have an app in AS2, which I run in flash player 10. If I use fscommand ("fullscreen", "true") and mouseover the stage a lot, flash simply stops redrawing the stage. I can click on stuff, I hear sounds from a video thats playing, but I don't see anything, UNTIL I press escape, at which p

Re: [Flashcoders] Flash MouseWheel Listener Problem

2009-06-26 Thread Karl DeSaulniers
NO problem at all.. GL Karl DeSaulniers Design Drumm http://designdrumm.com On Jun 26, 2009, at 4:27 AM, Dav wrote: THANK YOU!!! I can't believe you found it so easily, I spent 30 minutes on Google. Obviously it's too early in the morning for me, thanks mate! Dav -Original Message-

RE: [Flashcoders] Flash MouseWheel Listener Problem

2009-06-26 Thread Dav
THANK YOU!!! I can't believe you found it so easily, I spent 30 minutes on Google. Obviously it's too early in the morning for me, thanks mate! Dav -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSa

Re: [Flashcoders] Flash MouseWheel Listener Problem

2009-06-26 Thread Karl DeSaulniers
Hey there Dav, I did a google for "mouse wheel listener in flash" and found this: http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/ wwhelp.htm?context=LiveDocs_Parts&file=1887.html You may need to make your stage a movieClip itself and then attach the mouse listener to

[Flashcoders] Flash MouseWheel Listener Problem

2009-06-26 Thread Dav
Hi Guys, I'm having a problem with attaching the mouse wheel listener to the stage in AS3. For some strange reason, when flash is focused and I scroll my mouse wheel, the entire browser scrolls along with flash itself! Any ideas how to prevent this? I believe Google is not my friend on this one