Re: [Flashcoders] SharedObject - Urgen Help Needed Please

2007-03-02 Thread Muzak
and use LocalConnection to update other running apps As an alternative, you could just poll the SharedObject for changes on a regular interval instead of using a LocalConnection. regards, Muzak - Original Message - From: Not telling Not Telling [EMAIL PROTECTED] To: Flashcoders

Re: [Flashcoders] AS3... when to start?

2007-03-04 Thread Muzak
/flex2_intro.html I think the following quote (from Nigel Pegg) sums it all up: We Call This 'The Timeline.' No, Wait, Come Back! http://www.adobe.com/devnet/flex/articles/flash_perspective.html regards, Muzak ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] clearInterval(0);

2007-03-06 Thread Muzak
or: var num:Number = Number.NaN; trace(isNaN(num)); regards, Muzak - Original Message - From: Andy Herrman [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, March 06, 2007 6:37 PM Subject: Re: [Flashcoders] clearInterval(0); I would suggest initializing

Re: [Flashcoders] stageHeight issues AS3

2007-03-08 Thread Muzak
Please don't cross-post. - Original Message - From: {reduxdj} [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, March 08, 2007 5:06 PM Subject: [Flashcoders] stageHeight issues AS3 I've been having issues with trying to get stageHeight from every sprite.

Re: [Flashcoders] Help with updating a nodeValue in an XML file

2007-03-08 Thread Muzak
://chattyfig.figleaf.com/mailman/listinfo/flashnewbie http://tech.groups.yahoo.com/group/FLASHmacromedia/ regards, Muzak - Original Message - From: Teresa Hardy [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, March 08, 2007 11:12 PM Subject: Re: [Flashcoders] Help

Re: [Flashcoders] Calling Captivate variables from Flash.

2007-03-08 Thread Muzak
Have you checked the captivate dev center? http://www.adobe.com/devnet/captivate/ yuvarajm wrote: Hi, I need to access the variables of captivate from flash, how do I go about it? I have created an assessment in captivate and I have to access the variables which store score, correct option

Re: [Flashcoders] Bitmaps and Security

2007-03-09 Thread Muzak
In Flash 8 you can add: System.security.allowDomain(www.domain.com); to your Flash app that does the loading. For the flash 9 player, you'll need a cross domain policy file. regards, Muzak - Original Message - From: Patrick Lemiuex [EMAIL PROTECTED] To: flashcoders

Re: [Flashcoders] page scrolling problem

2007-03-14 Thread Muzak
flash uses the opposite from what the browser uses (scroll direction). Also only perform the Javascript call if nothing else in the Flash movie is selected (target == undefined). If you have a TextArea instance that has focus, you don't want to scroll the browser ;-) regards, Muzak

Re: [Flashcoders] Site Check

2007-03-14 Thread Muzak
images dynamically instead of including them in the swf. If you're not familiar with loading external assets, join the flashnewbie mailing list. regards, Muzak - Original Message From: Adrian Lynch [EMAIL PROTECTED] To: Flashcoders flashcoders@chattyfig.figleaf.com Sent: Wednesday

Re: [Flashcoders] xml parse question

2007-03-14 Thread Muzak
check the docs for XMLNode.attributes - Original Message - From: Carl Welch [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, March 15, 2007 2:11 AM Subject: [Flashcoders] xml parse question Hi coders, I just started working on a new

Re: [Flashcoders] xml parse question

2007-03-15 Thread Muzak
, Muzak - Original Message - From: Steven Sacks | BLITZ [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, March 15, 2007 11:04 PM Subject: RE: [Flashcoders] xml parse question Or you can save yourself the very slow Array.reverse() and just iterate through the array

Re: [Flashcoders] http error 302 on upload with filereference object

2007-03-15 Thread Muzak
Not sure if this helps: http://www.mail-archive.com/flashcoders@chattyfig.figleaf.com/msg18396.html regards, Muzak - Original Message - From: Josh Ettwein [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Friday, March 16, 2007 12:49 AM Subject: [Flashcoders] http error 302

Re: [Flashcoders] Re: Component and attachMovie

2007-03-16 Thread Muzak
http://livedocs.macromedia.com/flash/8/main/3024.html Read the Editing the movie clip part. regards, Muzak - Original Message - From: Matthias Dittgen [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Friday, March 16, 2007 8:22 AM Subject

Re: [Flashcoders] component not showing online but with simulateddownload

2007-03-16 Thread Muzak
- In the Flash IDE: Select File Publish Settings. - Click the Flash tab. - Click the Settings button - In the ActionScript Settings dialog box, specify the frame on which the class definition should reside in the Export Frame for Classes text box. regards, Muzak - Original Message

Re: [Flashcoders] Inspectable parameters ignored in my 1st component

2007-03-18 Thread Muzak
Implicit getter/setters are called *before* the constructor of the class. This allows you to set properties in the initObj (the last parameter) when using attachMovie var bubble = attachMovie(Bubble, bubble_mc, getNextHighestDepth(), {text:Hello World}); regards, Muzak - Original Message

Re: [Flashcoders] Poor video quality problem

2007-03-19 Thread Muzak
Not sure you noticed, but this is FlashCoders Try the Flash Media List: http://www.flashcomguru.com/flashmedialist/ regards, Muzak - Original Message - From: creativity [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, March 19, 2007 3:24 PM Subject: [Flashcoders

Re: [Flashcoders] LocalConnection scope extend to different engine?

2007-03-19 Thread Muzak
You can communicate with any swf that supports LocalConnection, which means, Flash 6 and up. The mechanism has changed a bit in AS3, but that's about it. regards, Muzak - Original Message - From: Jeff Gomes [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, March 19

Re: [Flashcoders] Entering hex number (a color) as component parameter

2007-03-20 Thread Muzak
(defaultValue=#66,type=Color)] public function get bgColor():Number { return __bgColor; } public function set bgColor(val:Number):Void { __bgColor = val; if(__hasInitialized) setBgColor(); } regards, Muzak - Original Message - From: Alexander Farber [EMAIL PROTECTED

Re: [Flashcoders] Entering hex number (a color) as component parameter

2007-03-20 Thread Muzak
That's AS3 ;-) - Original Message - From: Johannes Nel [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, March 20, 2007 12:55 PM Subject: Re: [Flashcoders] Entering hex number (a color) as component parameter [Style(name=myName, type=uint, format=Color)]

Re: [Flashcoders] installing sandy.

2007-03-20 Thread Muzak
HD:Applications:Macromedia Flash 8:sources - Original Message - From: Gustavo Duenas [EMAIL PROTECTED] To: Flashcoders mailing list Flashcoders@chattyfig.figleaf.com Sent: Tuesday, March 20, 2007 6:35 PM Subject: [Flashcoders] installing sandy. Hi, I have a mac and I'm trying to

Re: [Flashcoders] too many lines in one frame

2007-03-20 Thread Muzak
responsibilities to other classes. /quote regards, Muzak - Original Message - From: me myself [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, March 20, 2007 9:37 PM Subject: [Flashcoders] too many lines in one frame This may be a well-known issue, and it may have

Re: [Flashcoders] scaling external jpgs or pngs

2007-03-20 Thread Muzak
http://www.kaourantin.net/2005/12/dynamically-loading-bitmaps-with.html - Original Message - From: Carl Welch [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 21, 2007 1:17 AM Subject: [Flashcoders] scaling external jpgs or pngs

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-21 Thread Muzak
Sure, but you posted it to about every mailing list out there. In the end, this won't really solve anything, all you'll get is more of the same.. I suggest you use the bug/wishform and move on. http://www.adobe.com/go/wish/ Muzak - Original Message - From: Francis Bourre [EMAIL

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-21 Thread Muzak
Part from the fact it got posted to about every single mailing list?? - Original Message - From: Cedric Muller [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 21, 2007 4:50 PM Subject: Re: [Flashcoders] Help: test EventDispatcher speed please Hello! why

Re: [Flashcoders] too many lines in one frame

2007-03-21 Thread Muzak
yup - Original Message - From: Mick G [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 21, 2007 6:03 PM Subject: Re: [Flashcoders] too many lines in one frame Perhaps 32K is the compiled size limit - not the uncompressed .as file size limit.

Re: [Flashcoders] Entering hex number (a color) as component parameter

2007-03-22 Thread Muzak
, Muzak - Original Message - From: Alexander Farber [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 21, 2007 6:04 PM Subject: Re: [Flashcoders] Entering hex number (a color) as component parameter Thank you and sorry - I've missed the Color type in Flash help

Re: [Flashcoders] Entering hex number (a color) as component parameter

2007-03-22 Thread Muzak
That is if you're extending UIComponent, which 99.9% of the time I don't ;) regards, Muzak - Original Message - From: Alexander Farber [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, March 22, 2007 9:04 AM Subject: Re: [Flashcoders] Entering hex number (a color

Re: [Flashcoders] Flash crashing dilemna - when adding an inputtextfield

2007-03-23 Thread Muzak
Does your game capture any keystrokes (like arrow keys or WASD for movement)? regards, Muzak - Original Message - From: Paul Steven [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, March 22, 2007 8:09 PM Subject: RE: [Flashcoders] Flash crashing dilemna - when

Re: [Flashcoders] Flash JavaScript Integration Kit Issues

2007-03-23 Thread Muzak
server. regards, Muzak - Original Message - From: Steve Mathews [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, March 22, 2007 11:27 PM Subject: Re: [Flashcoders] Flash JavaScript Integration Kit Issues Thanks for the ideas. Unfortunately after further investigation

Re: [Flashcoders] How to find dimensions of my own component, resized in auth. env.?

2007-03-23 Thread Muzak
and _height (movieclip) properties. regards, Muzak - Original Message - From: Alexander Farber [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Friday, March 23, 2007 9:52 AM Subject: [Flashcoders] How to find dimensions of my own component,resized in auth

Re: [Flashcoders] MDM Zinc v2.5 Trial _ Writing files to hard drive

2007-03-25 Thread Muzak
You can only create text based files (.txt, .xml, etc..). mdm.FileSystem.saveFile(myText.txt, some text to put in file); If you want to create a specific file type (e.g. fla) you could include an empty fla with the project and make a copy of it when needed ;-) regards, Muzak - Original

Re: [Flashcoders] Video Gallery

2007-03-26 Thread Muzak
http://livedocs.adobe.com/flash/8/main/3622.html http://livedocs.adobe.com/flash/8/main/3561.html http://livedocs.adobe.com/flash/8/main/3560.html - Original Message - From: Juan Anzaldo [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, March 26, 2007

Re: [Flashcoders] another setInterval question

2007-03-26 Thread Muzak
() { clearInterval(intervalID); } my_mc.onRollOver = Delegate.create(this, rolloverHandler); my_mc.onRollOut = Delegate.create(this, rolloutHandler); rolloverHandler(); regards, Muzak - Original Message - From: Mauricio Furtado Massaia [EMAIL PROTECTED] To: flashcoders

Re: [Flashcoders] Embedded video playback problem?

2007-03-26 Thread Muzak
set autoPlay to true or listen for the ready event and start the video then. Upload the skin swf that should be in the same directory as the compiled swf. Something like: SteelExternalAll.swf regards, Muzak - Original Message - From: Martin Scott Goldberg [EMAIL PROTECTED

Re: [Flashcoders] another setInterval question

2007-03-27 Thread Muzak
Since the interval is only 5 seconds, I wouldn't bother with a timer and what not to achieve a real pause and just go with resetting the interval. regards, Muzak - Original Message - From: Hans Wichman [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, March 27

Re: [Flashcoders] Getting Return Values from Function withExternalInterface

2007-03-28 Thread Muzak
// JavaScript script type=text/javascript function sayHello() { return Hello from JS; } /script // FLASH var val:String = String(ExternalInterface.call(sayHello)); // display return value in textfield this.info_txt.text = val; regards, Muzak - Original Message - From: TrĂ¢n

Re: [Flashcoders] what ever happened to ritchfx?

2007-04-02 Thread Muzak
you mean richfx? (no 't') http://www.richfx.com/ regards, Muzak - Original Message - From: Josh Santangelo [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Monday, April 02, 2007 4:40 AM Subject: [Flashcoders] what ever happened to ritchfx

Re: [Flashcoders] JSFL - Saving FLAs

2007-04-02 Thread Muzak
disabled in the preferences (as has already been mentioned). This doesn't solve the problem when someone using Flash 8 creates a new document and saves it though (and forgets to select mx2004).. regards, Muzak ___ Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Flash CS3 Announced

2007-04-02 Thread Muzak
, Muzak ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http

Re: [Flashcoders] Events for custom classes?

2007-04-03 Thread Muzak
login_frm.hide(); view_frm.show(); } } Does this help? regards, Muzak - Original Message - From: Merrill, Jason [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 03, 2007 6:46 PM Subject: RE: [Flashcoders] Events for custom classes? Actually, I had

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Muzak
Where's the css for the flashcontent div? - Original Message - From: Matthew Ganz [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 03, 2007 7:37 PM Subject: Re: [Flashcoders] eolas fix for IE7 actually, all of a sudden it's not working again. here's the

Re: [Flashcoders] eolas fix for IE7

2007-04-03 Thread Muzak
Matthew, You'll need some css to properly display the swf at 100% width and height. Check the source of this page: http://blog.deconcept.com/swfobject/fullpage.html And check out the other samples: http://blog.deconcept.com/swfobject/#examples regards, Muzak - Original Message - From

Re: [Flashcoders] Flash CS3 Announced

2007-04-03 Thread Muzak
to that that when Flash CS3 is released Adobe *might* release a Flex update for tighter integration with new Flash CS3 features. But so far I haven't seen any indication that this will happen (which doesn't mean it won't).. regards, Muzak ___ Flashcoders

Re: [Flashcoders] MovieClipLoader ...

2007-04-04 Thread Muzak
Works fine here. Allthough you should consider making the class the MovieClipLoader listener object, rather than creating a seperate object (and using nested functions etc..); I also prefer initializing EventDispatcher outside the constructor (through a static property), because then the mixin

Re: [Flashcoders] import own class (use SOME_CONST insteadofMyUtils.SOME_CONST)

2007-04-04 Thread Muzak
that code when it runs - I a lot like html includes. #include takes place at compile time, not runtime. regards, Muzak ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman

Re: [Flashcoders] Flash and video optimisation ....

2007-04-04 Thread Muzak
Does ffmpeg support VP6 flv encoding yet? Last time I tried it (quite some time ago though) it only supported Sorenson Spark H.263 flv encoding. ON2 VP6 quality is superior to Sorenson Spark. regards, Muzak - Original Message - From: Jon Bradley [EMAIL PROTECTED] To: flashcoders

Re: [Flashcoders] Flash and video optimisation ....

2007-04-04 Thread Muzak
and stopped using it. regards, Muzak - Original Message - From: Dennis Roche [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, April 04, 2007 4:02 PM Subject: Re: [Flashcoders] Flash and video optimisation Yes. There is a way to On2 VP6 with FFmpeg. I

Re: [Flashcoders] Flash 9 CS 3 and Flex framework

2007-04-04 Thread Muzak
is that this is what they're currently (or have been) focusing on ;-) Right now the communication between Flex and a loaded (flash 8) swf is established through a LocalConnection. I guess we'll just have to wait and see ;-) regards, Muzak - Original Message - From: Austin Kottke [EMAIL

Re: [Flashcoders] Flash 9 CS 3 and Flex framework

2007-04-04 Thread Muzak
. Not sure where the Interface idea came from, but you don't need an Interface to work with Classes. What exaclty do you mean with return objects.. you mean data, as in Array, ArrayCollection? If so, with a class associated with the loaded swf that should be a walk in the park. regards, Muzak

Re: [Flashcoders] MovieClipLoader ...

2007-04-05 Thread Muzak
(com.muzakdeezign.samples.Test.prototype); // declare EvenDispatcher methods public var addEventListener:Function; public var removeEventListener:Function; public var dispatchEvent:Function; } regards, Muzak - Original Message - From: Stephen Ford [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent

Re: [Flashcoders] Flash 9 CS 3 and Flex framework

2007-04-05 Thread Muzak
The way I see it the following is just bad OOP: var text:TextArea = myflashmovie.myClass.getText(); regards, Muzak - Original Message - From: Austin Kottke [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, April 05, 2007 4:23 AM Subject: Re: [Flashcoders] Flash 9

Re: [Flashcoders] attaching an event to a movie clip

2007-04-06 Thread Muzak
, Muzak. - Original Message - From: David Ngo [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Friday, April 06, 2007 9:30 PM Subject: RE: [Flashcoders] attaching an event to a movie clip Personally, I find onEnterFrames bad practice to use unless you absolutely have

Re: [Flashcoders] AS3 replacement for: XMLNode_Instance.removeNode();

2007-04-06 Thread Muzak
delete? var xml:XML = body pHello/p pWorld/p /body; trace(xml.toXMLString()); delete xml.p[0]; trace(xml.toXMLString()); regards, Muzak - Original Message - From: [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Friday, April 06, 2007 11:16 PM

Re: [Flashcoders] Constructors in AS2 SWFs not being calledwhenloaded by AS3

2007-04-07 Thread Muzak
http://livedocs.adobe.com/flex/201/langref/flash/display/AVM1Movie.html regards, Muzak - Original Message - From: Michael Mudge [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Saturday, April 07, 2007 4:46 PM Subject: RE: [Flashcoders] Constructors in AS2 SWFs not being

Re: [Flashcoders] Constructors in AS2 SWFs not being calledwhenloaded by AS3

2007-04-08 Thread Muzak
.html Part from simple AVM1 animations (no code), I haven't tried mixing AVM1 and AVM2 swf's and personally avoid doing so (I guess you found out why ;-) ). regards, Muzak - Original Message - From: Michael Mudge [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Sunday, April

Re: [Flashcoders] WebServices in Flash IDE ...

2007-04-08 Thread Muzak
) Class called ServiceLocator regards, Muzak - Original Message - From: Stephen Ford [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Sunday, April 08, 2007 5:10 AM Subject: [Flashcoders] WebServices in Flash IDE ... I can't define web services in the flash IDE.For any URL

Re: [Flashcoders] xml socket server ...

2007-04-09 Thread Muzak
Google knows ;-) http://www.google.com/search?hl=enq=flash+xmlsocket+samplemeta= http://www.gotoandplay.it/_articles/2003/12/xmlSocket.php regards, Muzak - Original Message - From: Stephen Ford [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, April 09, 2007 4:50 AM

Re: [Flashcoders] basic flash games development issues

2007-04-09 Thread Muzak
the FlashPlayerTrust configuration files part. regards, Muzak - Original Message - From: Holth, Daniel C. [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, April 09, 2007 3:17 PM Subject: RE: [Flashcoders] basic flash games development issues We've built some

Re: [Flashcoders] WebServices in Flash IDE ...

2007-04-09 Thread Muzak
For small projects using the WebServices panel is handy. For larger projects you probably should be using a framework (ARP/Cairngorn) in which case everything is written in code. Nah, I've been using Webservices in Flash for over a year now on large RIA projects, and you certainly don't need a

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Muzak
are not a big part of the Flash Component Framework, at least not in the same way it is in Flex. AS3 finally has an Event class, which can be easily extended.. Time to start using it ;-) regards, Muzak - Original Message - From: Merrill, Jason [EMAIL PROTECTED] To: flashcoders

Re: [Flashcoders] WebServices in Flash IDE ...

2007-04-09 Thread Muzak
the first line (creating the object), because the method call returns something (PendingCall). Hence: var myData_pc:PendingCall = myWS.getMyData(); regards, Muzak - Original Message - From: Merrill, Jason [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, April 09

Re: [Flashcoders] Create MXI/MXP with External JSFL

2007-04-09 Thread Muzak
-- file name=MyCommand.jsfl destination=$flash/Commands / !-- jsfl file stored in WindowSWF folder for use with Flash Panel -- file name=MyPanelCommand.jsfl destination=$flash/WindowSWF/jsfl / /files regards, Muzak - Original Message - From: Steven Sacks | BLITZ [EMAIL PROTECTED

Re: [Flashcoders] [as3] using stage.stageWidth property in a constructor

2007-04-09 Thread Muzak
listening for the Event.ADDED_TO_STAGE event. regards, Muzak - Original Message - From: ilteris kaplan [EMAIL PROTECTED] To: Flash Lists flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 10, 2007 12:18 AM Subject: [Flashcoders] [as3] using stage.stageWidth property in a constructor Hello

Re: [Flashcoders] flex tutorial online

2007-04-09 Thread Muzak
back ;-) regards, Muzak - Original Message - From: Gustavo Duenas [EMAIL PROTECTED] To: Flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 10, 2007 1:44 AM Subject: [Flashcoders] flex tutorial online someone would recommend me a good flex tutorial online? I've just fall down in my

Re: [Flashcoders] Create MXI/MXP with External JSFL

2007-04-09 Thread Muzak
I haven't tried running a function, so I'll have to do a test here myself. The quotes and escaping them always makes my head spin ;-) I'll get back to you as soon as I figure it out. regards, Muzak - Original Message - From: Steven Sacks | BLITZ [EMAIL PROTECTED] To: flashcoders

Re: [Flashcoders] Create MXI/MXP with External JSFL

2007-04-09 Thread Muzak
|/ but that's the way jsfl expects it to be. regards, Muzak - Original Message - From: Steven Sacks | BLITZ [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 10, 2007 3:20 AM Subject: RE: [Flashcoders] Create MXI/MXP with External JSFL Muzak, Thanks for your response

Re: [Flashcoders] Create MXI/MXP with External JSFL

2007-04-09 Thread Muzak
Sorry forgot to post the jsfl file (if that matters) It simply contains the following: function sayHello() { fl.trace(Hello from JSFL); } regards, Muzak - Original Message - From: Steven Sacks | BLITZ [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 10

[Flashcoders] JSFL Executer [WAS] Create MXI/MXP with External JSFL

2007-04-09 Thread Muzak
. regards, Muzak ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training

Re: [Flashcoders] WebServices in Flash IDE ...

2007-04-10 Thread Muzak
Maybe for AS3, but I follow the method shown in the AS2 docs. It's not wrong if it works correctly, although as you have illustrated there may be a better more refined method. The code just didn't work, period. regards, Muzak ___ Flashcoders

Re: [Flashcoders] double clicking on swfs to click button

2007-04-10 Thread Muzak
Read: http://www.adobe.com/devnet/activecontent/ and get swfobject: http://blog.deconcept.com/swfobject/ regards, Muzak - Original Message - From: nik crosina [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 10, 2007 4:25 PM Subject

Re: [Flashcoders] WebServices in Flash IDE ...

2007-04-10 Thread Muzak
WOW.. Ok.. var myGetResult:Object = new Object(); myGetResult = myWS.getCategories(); myGetResult = Delegate.create(this, myGetResultMethod) No matter how hard you try, the above will never work, not in a million years. Funny, it pasted from a project of mine and it's been working

Re: [Flashcoders] WebServices in Flash IDE ...

2007-04-10 Thread Muzak
(); Putting it all together (going back to the webservice example): import mx.services.*; import mx.utils.Delegate; function myWSLoadHandler() { var myData_pc:PendingCall = myWS.getMyData(); myData_pc.onResult = Delegate.create(this, myDataResultHandler); } regards, Muzak - Original

Re: [Flashcoders] Create MXI/MXP with External JSFL

2007-04-10 Thread Muzak
Windoze ;-) - Original Message - From: Steven Sacks | BLITZ [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, April 10, 2007 6:43 PM Subject: RE: [Flashcoders] Create MXI/MXP with External JSFL Muzak, Are you on Windows or OSX

Re: [Flashcoders] Muzak's MXI Creator Fatal Error

2007-04-12 Thread Muzak
) version but it's far from finished and currently don't have enough free time to dedicate to it. I will be releasing a new version but it's hard to say when.. regards, Muzak - Original Message - From: Steven Sacks | BLITZ [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 12

Re: [Flashcoders] Muzak's MXI Creator Fatal Error

2007-04-12 Thread Muzak
WIN 9,0,45,0 regards, Muzak - Original Message - From: John Grden [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 13, 2007 3:38 AM Subject: Re: [Flashcoders] Muzak's MXI Creator Fatal Error Muz, what version of flash9 are you running? On 4/12/07, Muzak [EMAIL PROTECTED

Re: [Flashcoders] Re: Muzak's MXI Creator Fatal Error - SWHX/Haxe

2007-04-13 Thread Muzak
, does switching that on/off make any difference? regards, Muzak - Original Message - From: John Grden [EMAIL PROTECTED] To: [EMAIL PROTECTED]; The haXe compiler list [EMAIL PROTECTED] Sent: Friday, April 13, 2007 7:07 AM Subject: [Flashcoders] Re: Muzak's MXI Creator Fatal Error - SWHX

Re: [Flashcoders] as3 added event funkiness

2007-04-13 Thread Muzak
StaticText] regards, Muzak - Original Message - From: Max Kaufmann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 13, 2007 7:05 PM Subject: [Flashcoders] as3 added event funkiness Why doesn't it register the MovieClips as being added? My goal is to define persistent

Re: [Flashcoders] Creating Custom Component Interface

2007-04-13 Thread Muzak
into this in a long time (Flash 7), so things may have changed in Flash 8 So, to make a long story short ;-) if you want to get started creating components, a Data-type component (using Bindings and Shema) may not be the best idea. kind regards, Muzak - Original Message - From: Liam

Re: [Flashcoders] Creating Custom Component Interface

2007-04-13 Thread Muzak
woops: Bindable metadate == Bindable metadata And the property should be public ;-) Class BindableClass extends MovieClip { [Bindable] public var selectedIndex:Number; } regards, Muzak - Original Message - From: Muzak [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday

Re: [Flashcoders] How is it done? coca-cola creator

2007-04-13 Thread Muzak
It's done server side. Probably bitmapdata sent to server which saves it as jpeg. Google: bitmapdata to jpeg regards, Muzak - Original Message - From: Mick G [EMAIL PROTECTED] To: Flashcoders mailing list [EMAIL PROTECTED] Sent: Saturday, April 14, 2007 12:59 AM Subject: [Flashcoders

Re: [Flashcoders] Muzak's MXI Creator Fatal Error

2007-04-14 Thread Muzak
: http://muzakdeezign.com/mxi_creator/files/mxi_creator3.0.6.4.exe Manual install: http://muzakdeezign.com/mxi_creator/files/mxi_creator3.0.6.4.zip Extract to install directory (overwrite existing files). Let me know if it works/doesn't work for you. regards, Muzak - Original Message

Re: [Flashcoders] UUID generation code

2007-04-15 Thread Muzak
Will this do? http://livedocs.adobe.com/flex/201/langref/mx/utils/UIDUtil.html regards, Muzak - Original Message - From: Weyert de Boer [EMAIL PROTECTED] To: Flashcoders mailing list [EMAIL PROTECTED] Sent: Sunday, April 15, 2007 8:39 AM Subject: [Flashcoders] UUID generation code

Re: [Flashcoders] POST with FileReference

2007-04-16 Thread Muzak
That's not a POST, that's a GET ;-) So try: $_GET[myDir] The actual FileReference upload information is sent using POST, which, for security reasons, you have no access to. regards, Muzak - Original Message - From: Gilles Roquefeuil [EMAIL PROTECTED] To: Flashcoders

Re: [Flashcoders] scaling/positioning FLVPlayback

2007-04-16 Thread Muzak
FLVPlayback docs Components Language Reference FLVPlayback Component (Flash Professional Only) http://livedocs.adobe.com/flash/8/main/3477.html FLVPlayback class Components Language Reference FLVPlayback Component (Flash Professional Only) FLVPlayback class

Re: [Flashcoders] IE7 flash player bug

2007-04-16 Thread Muzak
); this.format.load(path); regards, Muzak - Original Message - From: Caleb E. Brown [EMAIL PROTECTED] To: Flashcoders@chattyfig.figleaf.com Sent: Monday, April 16, 2007 6:46 PM Subject: [Flashcoders] IE7 flash player bug I am experiencing a bug in IE7 with a textfield and anchor tags. This doesnt seem

Re: [Flashcoders] remoting with as3 (not flex)

2007-04-16 Thread Muzak
not (but the mixin version is still available). var arr:Array = [hello, world]; var dp:DataProvider = new fl.data.DataProvider(arr); trace(dp.getItemAt(0)); Both have methods and dispatch events. Does that help? regards, Muzak - Original Message - From: Mark Walters [EMAIL

Re: [Flashcoders] Loading a SWF and calling the caller from that SWF

2007-04-16 Thread Muzak
Have b.swf dispatch an event and a.swf listen for that event. regards, Muzak - Original Message - From: John laPlante [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday, April 16, 2007 7:45 PM Subject: [Flashcoders] Loading a SWF and calling the caller from that SWF

Re: [Flashcoders] Weird removeMovieClip problem

2007-04-17 Thread Muzak
the DepthManager (mx.managers.DepthManager) instead. - keep on _root a manageable array of attached MCs - do not attach on _root. Don't use _root at all. regards, Muzak ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

Re: [Flashcoders] UNSUBRSCRIBE

2007-04-17 Thread Muzak
Pending Box. regards, Muzak - Original Message - From: Blaine Fisher [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Cc: [EMAIL PROTECTED] Sent: Wednesday, April 18, 2007 1:45 AM Subject: [Flashcoders] UNSUBRSCRIBE I've unsubscribed countless times, and been told I was taken off

Re: [Flashcoders] List component redraw bug

2007-04-17 Thread Muzak
I've seen this before, but can't remember what caused it though (let alone what fixes it). It sounds like a masking/font problem. Can you reproduce it in a seperate fla? Got a sample we can take a look at? regards, Muzak - Original Message - From: Merrill, Jason [EMAIL PROTECTED

Re: [Flashcoders] Find size of the bounding box of a particular frameof a loaded SWF

2007-04-18 Thread Muzak
Check out the FlashPaper API. http://www.adobe.com/support/documentation/en/flashpaper/2/flashpaper_api/index.html regards, Muzak - Original Message - From: matt stuehler [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, April 18, 2007 5:32 PM Subject: Re

Re: [Flashcoders] Init generic clip

2007-04-18 Thread Muzak
Take the code out of the movieclip and put everything in a class that is associated with that movieclip (Linkage+Class) through the library. regards, Muzak - Original Message - From: Jiri Heitlager | dadata.org [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday

[Flashcoders] flex/flash integration kit

2007-04-19 Thread Muzak
. Seamless workflow for component creation from Flash CS3. /quote Something to look forward to (will be on labs.adobe.com soon). regards, Muzak ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] Web Services / Services in flash 9 cs3

2007-04-19 Thread Muzak
this will change in the final release. Would be a shame if we were forced to use Flex for data integration. regards, Muzak - Original Message - From: Austin Kottke [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, April 19, 2007 8:49 AM Subject: [Flashcoders] Web Services

Re: [Flashcoders] Compiler chokes when using a class method as eventhandler

2007-04-19 Thread Muzak
, Muzak - Original Message - From: Alexander Farber [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, April 19, 2007 2:41 PM Subject: [Flashcoders] Compiler chokes when using a class method as eventhandler Hello, I'm trying to create a v2

Re: [Flashcoders] Compiler chokes when using a class method aseventhandler

2007-04-19 Thread Muzak
typo: card.onPress = raiseCard; function raiseCard() { // runs in scope of card instance and not Deck //bad // this != Card } should be card.onPress = raiseCard; function raiseCard() { // runs in scope of card instance and not Deck //bad // this != Deck }

Re: [Flashcoders] Compiler chokes when using a class method aseventhandler

2007-04-19 Thread Muzak
Bah, and another.. sorry.. function raiseCard() { // runs in scope of Deck //good // this == Card // but which card was clicked?? } should be function raiseCard() { // runs in scope of Deck //good // this == Deck // but which card was clicked?? }

Re: [Flashcoders] Compiler chokes when using a class method aseventhandler

2007-04-19 Thread Muzak
Have you tried using setDepthAbove(instance) DepthManager.setDepthAbove() regards, Muzak - Original Message - From: Alexander Farber [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, April 19, 2007 6:13 PM Subject: Re: [Flashcoders] Compiler chokes when using

Re: [Flashcoders] MXP installation in Flash CS3

2007-04-20 Thread Muzak
has 2 types of FLA documents: - Actionscript 2.0 - Actionscript 3.0 Components written for AS2 will only show up in the components panel if you have an AS2 FLA document open. regards, Muzak - Original Message - From: Gregory N [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent

Re: [Flashcoders] Basic class for swf-question

2007-04-23 Thread Muzak
is the same: you create a tree-structure with the Application Class/MovieClip as the main timeline and the Application takes care of which child movieclip is shown/hidden. regards, Muzak - Original Message - From: Johan Nyberg [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Monday

<    1   2   3   4   5   6   7   8   9   >