[Flashcoders] ActionScript 3 API Poster (PDF download @ Flex.org)

2006-10-18 Thread greg h
ActionScript 3 API PDF at Flex.org www.flex.org/download/AS3API_01.pdf print dimensions 40x28 fyi ... Acrobat Drawing Error has been reported by some on opening the pdfs also ... Flex 2 Framework API PDF at Flex.org www.flex.org/download/FX2API_01.pdf print dimensions 48x36 For sale onsite at

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-18 Thread Ron Wheeler
You should be able to get Eclipse and asdt working pretty easily. osflash.org is the place to look for open source tools for Actionscript programming. Ron Andy Herrman wrote: So, I haven't used Eclipse at all for Java. I've been using Netbeans for the last year or so, and before that stuck

Re: [Flashcoders] ActionScript 3 API Poster (PDF download @ Flex.org)

2006-10-18 Thread Jason Jiang
Yeah, Drawing Error is true, how can I do? Jason - Original Message - From: greg h [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, October 18, 2006 2:07 PM Subject: [Flashcoders] ActionScript 3 API Poster (PDF download @ Flex.org)

Re: [Flashcoders] Re: [osflash] OpenSource Data Charting frameworkwanted ?

2006-10-18 Thread Jason Jiang
Can you offer me your sourcecode? thanks! - Original Message - From: Darren Cook [EMAIL PROTECTED] To: Open Source Flash Mailing List osflash@osflash.org Cc: flashcoders@chattyfig.figleaf.com Sent: Tuesday, October 17, 2006 8:00 PM Subject: [Flashcoders] Re: [osflash] OpenSource Data

Re: [Flashcoders] doLater not working

2006-10-18 Thread David Buff
I think... You have to be attentive about the fact that flash execute the code from the upper layer to the lower layer. So if your _root.panelBG.sp.doLater(_root, displayCorrectFrame); is written on a layer witch is upper layer of the one where is created your scrollPlane, this last one

Re: [Flashcoders] doLater not working

2006-10-18 Thread Rich Rodecker
i think it might be a case that the component is not yet intialized when you are assigning the doLaterso you might need to wait a frame for the component to initialize. you can also just do an onEnterFrame that runs just once: this.onEnterFrame = function(){ this.displayCorrectFrame();

Re: [Flashcoders] ActionScript 3 API Poster (PDF download @ Flex.org)

2006-10-18 Thread David Rorex
Problem seems to be that there is some weird encryption on the file. Try these fixed versions: http://davr.org/flash/posters.rar Note: I had to change the page size, but it still looks ok to me. The fixed versions even open in xpdf, so it should be ok. -David R On 10/17/06, Jason Jiang [EMAIL

[Flashcoders] Flashsql component

2006-10-18 Thread Laurent CUCHET
Hello I use flashsql component a component to manage database I meet a bug with it and impossible to make it works at another level than _level0 If you are at _level0 its ok with : on (release) { flashsql.Execute(SELECT * FROM client, pros, , , , myComboBox); } If you lad the swf at

[Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread mastro
hello ! i made a draggable mc and include 3 buttons in it. how can i make the buttons working? i include a test.fla in this e-mail. thanx for helping !! m. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

Re: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread mastro
okay, it`s not possible to attach files to this mailinglist, here you can find the test file... http://nano.machfeld.net/download/test.zip cheers, m. hello ! i made a draggable mc and include 3 buttons in it. how can i make the buttons working? i include a test.fla in this e-mail. thanx

[Flashcoders] Bitmap filters

2006-10-18 Thread Randy Tinfow
Having a hard time understanding the new bitmap filters, specifically the color matrix filter. We want to programmatically invert an image's colors. Is there any documentation that explains the color matrix properties succintctly? Or provides step-by-step instructions on it's application?

Re: [Flashcoders] RE: LoadVars to XML object

2006-10-18 Thread Chip Moeser
Thanks Jack! On Oct 17, 2006, at 6:28 PM, Jack Doyle wrote: This may be overkill, but feel free to use the XMLParser class I wrote which handles a bunch of stuff related to getting XML into and out of Flash without all the headaches. For example, you can: - Throw any object at the

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-18 Thread Marcelo de Moraes Serpa
ASDT is dead... :/ I would rather buy FDT or search for alternatives if I were on a mac of linux.. as I'm on windows, there's FlashDevelop, of course! On 10/18/06, Ron Wheeler [EMAIL PROTECTED] wrote: You should be able to get Eclipse and asdt working pretty easily. osflash.org is the place to

RE: [Flashcoders] Flash Projectors - mProjector vs. Zinc

2006-10-18 Thread Mike Mountain
The problem I found with Director is you have to go out and buy a bunch of Xtras to really achieve anything notable. Have you considered ScreenweaverHX? M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of slangeberg Sent: 17 October 2006 17:58

Re: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Éric Thibault
Your drag code on your toolbox takes over the button events inside it Place an invisible button inside your toolbox (like a drag bar...) and attach your drag code to it... inside your toolbox... drag_btn.onPress = function() { startDrag(this._parent);

Re: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Julien V.
Mastro, For your information, you can't attach files to the emails you send to the list. You'd better put your .fla file online somewhere and provide us with the corresponding URL... Cheers, Julien Vignali - Message d'origine - De: mastro [EMAIL PROTECTED] Date: Wed, 18 Oct 2006

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-18 Thread Andy Herrman
That's the one I tried, but I couldn't get it to function. For instance, when I went to try and add my files it couldn't see my filesystem for some very strange reason. There were a couple other problems as well, but I don't remember them off the top of my head. So far FlashDevelop seems to be

RE: [Flashcoders] hello, and interval management question

2006-10-18 Thread Karina Steffens
I've got a class here that manages intervals as well. It can be used to create intervals that fire off once (after a delay), continuously or a specified number of times. The events can then be applied to the parent object or another target object. Cheers, Karina /** * Delay class - executes

Re: [Flashcoders] LocalConnection and Media Components?

2006-10-18 Thread Andy Herrman
Have you put any logging in place to see if the communication itself is working, or are you just not seeing it change the media? Looking at the code you have there it looks like you're trying to load a file from the local FS, which I don't think will work if the movie is loaded in a browser over

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-18 Thread Troy Rollins
On Oct 18, 2006, at 10:22 AM, Marcelo de Moraes Serpa wrote: ASDT is dead... :/ I would rather buy FDT or search for alternatives if I were on a mac of linux.. as I'm on windows, there's FlashDevelop, of course! As far as I can tell, there really is only FDT for Mac users. Everything

Re: [Flashcoders] Flash Projectors - mProjector vs. Zinc

2006-10-18 Thread Troy Rollins
On Oct 18, 2006, at 5:21 AM, Mike Mountain wrote: The problem I found with Director is you have to go out and buy a bunch of Xtras to really achieve anything notable. Have you considered ScreenweaverHX? Interesting. I hadn't seen that. Is anyone using this? http://haxe.org/swhx -- Troy

Re: [Flashcoders] Flashcoders Emails

2006-10-18 Thread Ray Chuan
You should also avoid subscribing with the digest option, because your email won't be recognized as a follow-up to a thread. (So far I haven't seen an email client that gives you control over the message-id header of email messages, because that's how messages are recognized as follow-ups) On

Re: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Michael Bedar
What you are seeing is that assigning an onPress and/or onRelease handler to a MC means that an contained subclips do not receive mouse events. What you need to do is create a movieclip at the same level as your buttons to be the clickable area, and assign the mouse functionality to that.

Re: [Flashcoders] Flashsql component

2006-10-18 Thread Adrian Ionut Beschea
hate to be offtopic here but I have to say this. are you sure you want to have your sql selects in flash ? one quick decompile and the whole database structure is exposed. Laurent CUCHET [EMAIL PROTECTED] wrote: Hello I use flashsql component a component to manage database I meet a bug with

RE: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Keith Reinfeld
mastro, You must remove any button behaviors that are assigned to your draggable mc. Such button behaviors will intercept mouse actions and effectively disable your three buttons. The code below should give you an idea of how to accomplish your goal. This list does not support e-mail

RE: [Flashcoders] Alternative IDE for Flash Devel

2006-10-18 Thread Steven Sacks | BLITZ
That's odd. Ben Jackson uses it exclusively and has it tied to MTASC and Subversion. He never has to open the Flash IDE. Have you seen some of the macros videos out there? I know firsthand that the learning curve can be a little steep, but if you take the time to learn the program in and out,

RE: [Flashcoders] Flash Projectors - mProjector vs. Zinc

2006-10-18 Thread Steven Sacks | BLITZ
The problem I found with Director is you have to go out and buy a bunch of Xtras to really achieve anything notable. All you need with Director for OS level control is BuddyAPI. There is another extra to disable certain key combos (like CTRL+ALT+DEL, etc.) for kiosk purposes but the name of

RE: [Flashcoders] doLater not working

2006-10-18 Thread Mendelsohn, Michael
Hi Rich and Dave... Thanks for the responses. Rich, your solution worked. I needed a combination of delaying a one frame *and* a doLater. I was doing just either or, but it was needing both, although I have no idea why. I would have thought the doLater was automatically scheduled to fire

RE: [Flashcoders] scrollable dynamic text field

2006-10-18 Thread Steven Sacks | BLITZ
I handle scrolling in the simplest, most straightforward way possible. First, I get the percentage of where the scrollbar is along its track from and have it dispatch that percentage. var perc = (BTN_Shuttle._y - orgShuttleY) / range; dispatchEvent({type:change, data:perc}); The listener then

RE: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Keith Reinfeld
mastro, You must remove any button behaviors that are assigned to your draggable mc. Such button behaviors will intercept mouse actions and effectively disable your three buttons. The code below should give you an idea of how to accomplish your goal. This list does not support e-mail

Re: [Flashcoders] scrollable dynamic text field

2006-10-18 Thread Duncan Reid
Hi Doug, I would recommend looking up and using scrollRect especially if there is a chance you will be scrolling through large amounts of text. i recall there being a nice scrolling example on ifbin (free and open now), created by guy watson, if i'm not mistaken. It involved scrollRect and

Re: [Flashcoders] Bitmap filters

2006-10-18 Thread julien castelain
hi randy, in this article, (which is in french but i guess you could try to translate it) http://www.tweenpix.net/blog/index.php?2005/09/21/532-colormatrixfilter there's really good stuff ciao On 10/18/06, Randy Tinfow [EMAIL PROTECTED] wrote: Having a hard time understanding the new bitmap

Re: [Flashcoders] Flash Projectors - mProjector vs. Zinc

2006-10-18 Thread slangeberg
http://haxe.org/swhx While I think it's probably a decent OS product, it seems a little behind the curve at this point. When I inquired as to how I could change the icon for the executable, I was directed to hack the .EXE in a resource editor. Not that that is a deal breaker, but leads me to

RE: [Flashcoders] RE: LoadVars to XML object

2006-10-18 Thread Steven Sacks | BLITZ
// XML2AS - DO NOT AUTO FORMAT! _global.XML2AS = function(n, r) { var a, d, k; if (r[k=n.nodeName] == null) r = ((a=r[k]=[{}]))[d=0]; else r = (a=r[k])[d=r[k].push({})-1]; if (n.hasChildNodes()) { if ((k=n.firstChild.nodeType) == 1) { r.attributes =

RE: [Flashcoders] Flashsql component

2006-10-18 Thread Kevin Aebig
Even though you probably don't want to be using _level##, you can create a global reference. _global.flashsql = _root.flashsql; !k -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Laurent CUCHET Sent: Wednesday, October 18, 2006 2:32 AM To: Flashcoders

Re: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Hans Wichman
Hi, dont use the onPress etc for the draggable clip, but implement something using hitTest. greetz JC On 10/18/06, mastro [EMAIL PROTECTED] wrote: hello ! i made a draggable mc and include 3 buttons in it. how can i make the buttons working? i include a test.fla in this e-mail. thanx for

Re: Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-18 Thread Chris Allen
FDT has been the best thing that I've been able to find for coding AS2 on the Mac. I like Eclipse as I use it for Java development as well. Anyway, auto completion, some minor refactoring features and integration with Ant and version control make it a hell of a tool. It does cost money though

Re: Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-18 Thread Marcelo de Moraes Serpa
FDT is great, no doubt. But it's way too, and I mean too expensive :( At least for us poor third-world human-beings, the price in euros turns out to become a fortune on our currency... Just my $ 0,02 cents On 10/18/06, Chris Allen [EMAIL PROTECTED] wrote: FDT has been the best thing that

Re: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Ujjwal Kabra
If you've made your parent movie clip draggable by catching the onMouseDown, onMouseUp events etc., then you can't use the same events on your child movie clip (the buttons). You need to have logic in your parent movieclip to figure out which of the children gets affected by the mousedown (or

Re: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Victor Gaudioso
Don't know if you know how to impliment what Ujjwal was talking about...so if you don't, here is how I do it: // create listener for mouseDown mouseListener = new Object(); // when mouseDown occurs run the mouse_down func mouseListener.onMouseDown = Delegate.create(this,mouse_down); // add

[Flashcoders] AS 3.0 - Loader.load() a .swf and than control it

2006-10-18 Thread Dave Geurts
I am a little confused with loading media into the loader object. I can load a swf in fine but than how do you control that swf's timline? I think that the swf gets loaded into a loader object, that has a display container? Im a little lost with the loader object concept. I assumend it would

RE: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Steven Sacks | BLITZ
Or you could skip the mouse listener and delegate and just in your movieclip put the following: onMouseDown = function() {}; onMouseUp = function() {}; No listener or delegate needed. ___ Flashcoders@chattyfig.figleaf.com To change your subscription

Re: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Victor Gaudioso
See? Told you someone would chime in with a way to do it better. LOL. I used Delegate beacuse I was having scope issues. V - Original Message - From: Steven Sacks | BLITZ [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, October 18,

[Flashcoders] [JOB] Flash Developer: Domani Studios, Brooklyn

2006-10-18 Thread Domani Jobs
Domani Studios seeks an inspired and motivated Flash developer to join our team. Responsibilities include creating and building experiential projects guided by a creative and technical lead. You will create games, animations, banners, sites, videos, and tons of other interactive

[Flashcoders] OT: job posting in netherlands (dutch)

2006-10-18 Thread Hans Wichman
Hi list, the remainder of this post will be in dutch, and it will be a job posting. If you are from outside of the Netherlands and would like a translated copy, let me know:). greetz JC --- *Gezocht: Ervaren Flash programmeur (40 uur)*

Re: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Michael Bedar
If you use mouseDown - clicking the buttons will generate the mouseUp/ mouseDown and onPress/onRelease events, which seems at best overkill, and at worst could cause complications. Its much better to use a subclip to be the draggable area. On Oct 18, 2006, at 4:38 PM, Victor Gaudioso

Re: [Flashcoders] AS 3.0 - Loader.load() a .swf and than control it

2006-10-18 Thread Muzak
info on loader: http://livedocs.macromedia.com/labs/as3preview/langref/flash/display/Loader.html or http://livedocs.macromedia.com/flex/2/langref/flash/display/Loader.html http://livedocs.macromedia.com/labs/as3preview/langref/flash/display/LoaderInfo.html If you load a v8 swf in v9 it becomes

RE: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Steven Sacks | BLITZ
Well yes. That is the best way. I was just responding to using a mouse listener delegate. You definitely want to keep it simple and just put a clickable area behind the buttons in the clip. ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] LocalConnection and Media Components?

2006-10-18 Thread Martin Scott Goldberg
Hi Andy, I started with a working player, meaning I had a working flash movie that played the local mp3 in the web browser window. So the locality shouldn't be an issue. I then tried extending it with the LocalConnection material. I've been trying to do some things to check out what's being

Re: [Flashcoders] Fuse Kit Sequence

2006-10-18 Thread Jon Bennett
I usually do it like this... mport com.mosesSupposes.fuse.*; ZigoEngine.register(PennerEasing, Fuse); this.mcOne._alpha = 0; this.mcTwo._alpha = 0; var dur=3; var delay=.5; var ease=easeOutQuad this.mcOne.tween([_alpha,_x],[100,400],dur,ease,delay);