[Flashcoders] copying formatted text out of flash

2007-04-09 Thread Costello, Rob R
Hello Is there any way to copy formatted text to the system clipboard ie I don't really want all the html / textformat tags But I'd like to be able to copy formatted text out of textbox / textarea I'm thinking that's not too easy - its either plain text, or textformat tags? Hoping I'm wrong

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] [as3] mouseEvents are not triggering

2007-04-09 Thread Rákos Attila
You didn't add _sprite to the display list, so how could it trigger mouse events if it is not even visible? And on the other hand, _sprite is totally empty, it has no hit area where you can click and fire the MOUSE_DOWN event. Why don't you add event listener to the particle manager? Sorry if I

Re: [Flashcoders] Recommended frameworks

2007-04-09 Thread eka
Hello :) You can try my opensource framework VEGAS : http://code.google.com/p/vegas/ My framework is based on a AS2/AS3/SSAS(Server Side ActionScript) implementations. - Installation : http://code.google.com/p/vegas/wiki/InstallVEGASwithSVN - Documentation : http://vegas.ekameleon.net/docs -

[Flashcoders] Re: xml socket server ...

2007-04-09 Thread Stephen Ford
Thanks Muzak,I found that link, it doesn't say how to implement or create the socket server from that java code though (I'm a server novice - it's probably quite simple).But I found this one: http://multiuser.web-cd.net/en/default.aspxI got it working enough to understand how xmlSocket works.

[Flashcoders] Does Domain name play any role in within slide movement?

2007-04-09 Thread Vivek Lakhanpal
Hi All, I have designed a flash player for our website i.e. http://www.authorstream.com When i am playing it with full url i.e. http://www.authorstream.com it's playing perfectly fine. But when i am playing it as http://authorstream.com it's not playing within slide movements i.e. gotoAndPlay

Re: [Flashcoders] Editors in use by Actionscript Programmers

2007-04-09 Thread Jon Bradley
Another: Subethaedit for mac Just the fact that it's collaborative editing makes it worthwhile. I've yet to get into all the code-hinting/folding, etc. jazz offered by many of these editors. Though, now I'm getting into more Flex 2 work, I have a feeling I might be making a switch (but

Re: [Flashcoders] Does Domain name play any role in within slide movement?

2007-04-09 Thread Rákos Attila
Do you load SWFs into your player and control them using gotoAndPlay(), etc? If the loader and the loadee are in different domains (or subdomains) then loader has no access to the loadee's content (including its variables/properties, functions/methods, etc.). However loadee can grant access by

Re: [Flashcoders] OT: Happy Easter

2007-04-09 Thread Cedric Muller
whatever! stop this, this is OT, GOD doesn't exist (globally speaking in people's minds) and I am not a believer, so I DON'T need any god's blessing (more than that: keep it for yourself) this is about laicity, this is about secular coding... this is JUST ABOUT CODING WITH FLASH :P sorry

RE: [Flashcoders] Editors in use by Actionscript Programmers

2007-04-09 Thread Hairy Dog Digital
I'd also throw in my 2-cents worth... MultiEdit Lite ...Rob -Original Message- From: Jon Bradley [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 7:16 AM To: [EMAIL PROTECTED]; flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Editors in use by Actionscript

RE: [Flashcoders] basic flash games development issues

2007-04-09 Thread Holth, Daniel C.
We've built some applications for CD, and have run into 'security sandbox' issues. They were very frustrating. The DVD will be considered 'local content', and you can read about the issues here: http://www.adobe.com/products/flashplayer/articles/localcontent/ When you begin testing your

Re: [Flashcoders] Editors in use by Actionscript Programmers

2007-04-09 Thread banzaii
I use Xcode for my flash development on a Mac. It is quite cusomizable, you can setup your own targets (I have some for mtasc (pure actionscript, actionscript with swf library, swfmill) You can grap my code completion files for as2/as3 at http:// opencode.forabettertoday.org/ Just throw

[Flashcoders] XML doesn't show the content twise.

2007-04-09 Thread Parvaiz Patel
Hi All, Can anybody knows the action scripting to clear the XML cache from the Internet temporary files. I am using following URL to send received data from database via aspx in the form of XML nodes. getleftmenu.aspx?Style=BroadloomNeoFloor=YQuickShip=Y But my problem is when I clicked

Re: [Flashcoders] Editors in use by Actionscript Programmers

2007-04-09 Thread Ron Wheeler
Xcode will be in the poll and a link to the autocompletion files has been added. Ron. banzaii wrote: I use Xcode for my flash development on a Mac. It is quite cusomizable, you can setup your own targets (I have some for mtasc (pure actionscript, actionscript with swf library, swfmill)

Re: [Flashcoders] Editors in use by Actionscript Programmers

2007-04-09 Thread Ron Wheeler
Added to the list. If someone wants to add a link to this in the IDE section , that would be great. Ron Hairy Dog Digital wrote: I'd also throw in my 2-cents worth... MultiEdit Lite ...Rob -Original Message- From: Jon Bradley [mailto:[EMAIL PROTECTED] Sent: Monday, April 09,

Re: [Flashcoders] Editors in use by Actionscript Programmers

2007-04-09 Thread Ron Wheeler
It will added . If you can add a link in the IDE section, that would be great Ron Jon Bradley wrote: Another: Subethaedit for mac Just the fact that it's collaborative editing makes it worthwhile. I've yet to get into all the code-hinting/folding, etc. jazz offered by many of these

RE: [Flashcoders] XML doesn't show the content twise.

2007-04-09 Thread Merrill, Jason
Can anybody knows the action scripting to clear the XML cache from the Internet temporary files. When you load the XML, just append a random variable to the URL, like this: var myXMLURLString:String = myXMLFile.xml?cb=+getTimer(); cb just stands for cache buster, but it could be anything.

Re: [Flashcoders] copying formatted text out of flash

2007-04-09 Thread Marc Hoffman
Without the tags, it's unformatted text. In other words, for the copy to show formatting, it must have the tags, and it must be displayed in a viewer that understands those tags. -Marc At 11:22 PM 4/8/2007, you wrote: Hello Is there any way to copy formatted text to the system clipboard ie

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

2007-04-09 Thread Merrill, Jason
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] Accessing the instance of a class

2007-04-09 Thread Michael Mudge
-Original Message by David Ngo- What instance are you trying to access? Your 'whatever' class? If so, you'll need to use a Delegate to force scope: I'm accustomed to lexical scope, so this was a confusing one for me. I understand exactly what you mean about using a delegate -- that

Re: [Flashcoders] basic flash games development issues

2007-04-09 Thread Muzak
You can install a file on the client that will make your CD/DVD app trusted and the user no longer needs to configure anything online. (in fact that's exactly what the security manager does - writes a text file to disk) http://www.adobe.com/devnet/flash/articles/fplayer8_security_04.html Read

RE: [Flashcoders] basic flash games development issues

2007-04-09 Thread Holth, Daniel C.
True, but the trust files are designed to be used by executable installer programs. The applications we have developed (and I'm guessing the original authors as well) needed to be run totally from the CD-ROM/DVD and thus no installing. Anyone know of a way to getting the trust files on the

[Flashcoders] System.as vs System.security

2007-04-09 Thread Dave Segal
I asked a question about this on Friday with no response but here goes again this time with more details. It seems like the Flash compiler is choking on the System class when I delete the ASO cache and compile. Here is all the code in my test fla: System.security.allowDomain(

[Flashcoders] AS3 Delegate

2007-04-09 Thread Ian Thomas
Hi all, In developing my first largish AS3 app, I've discovered something that I think is missing. I'd assumed that Delegate, which peppered all my AS2 projects, would have been made redundant and, indeed, it kind of has - in that AS3 takes care of the context of a function, so you can happily

[Flashcoders] would this bother you?

2007-04-09 Thread geng wang
hello flashcoders, i have two fundamental questions. they somewhat keep bothering me: 1. what are the datatypes of a MovieClip instance and a Textfield instance after calling removeMovieClip()/removeTextField() on that MovieClip/Textfield instance? 2. do they remain in the memory after

RE: [Flashcoders] AS3 Delegate

2007-04-09 Thread Merrill, Jason
However, in AS 2 to tack on variables, I did/do it differently: var myDel:Object = myButton.onRelease = Delegate.create(this, doFunction) myDel.fruit = pineapple; function doFunction():Void { trace(arugments.caller.fruit) } I assumed in AS3 you could do something similar, though I

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

RE: [Flashcoders] would this bother you?

2007-04-09 Thread David Ngo
AFAIK, any instances will remain in memory if there is a reference to it anywhere. Even if you call the remove methods, they just remove them from the Stage/screen but not from the memory stack. You will have to remove any references in any instances in order to garbage collect them properly.

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread T. Michael Keesey
The problem with using proxies is that you circumvent compile-time checking. I find that there are better ways of dealing with such situations. Three suggestions: 1) In the handler function, look for a property of the event target. This works for most cases where you need a handler function to

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread ben gomez farrell
I didn't really read the webpage, but you can't tack on a variable I'm pretty sure. To tack something on, the class needs to be dynamic, which an Object class is, but a MovieClip or Sprite class isn't. So unless you're caller is something you extended from a movieclip or sprite and made

Re: [Flashcoders] would this bother you?

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Ian Thomas
Hi Jason, That's an interesting one - haven't tried that (but then, our Delegate function coped with it). Unfortunately you won't be able to do that as you describe, because in AS3 there's no arguments.caller - only arguments.callee. I doubted that I had to do it my way, too - was quite

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

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 Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Ian Thomas
Hi Michael, I think this is down to a difference in programming style. We don't use events in quite the same way - or rather, for _most_ situations, we use events in exactly the way that you describe. However, there are many situations where defining event types, listeners and dispatchers is

RE: [Flashcoders] OT: Happy Easter

2007-04-09 Thread Steven Sacks | BLITZ
Hahahahahahahaha! And I quote Cedric: whatever! ... respect First, you open with whatever! which is what people say to signify disrespect for something another person said. And then you say respect as if saying that nullifies it. Nice try, buddy. You get hurt by god blessings? How could

[Flashcoders] Relative Paths in a MXI

2007-04-09 Thread John laPlante
I want to build an MXP installation file that installs trust configuration files. I have an MXI in which I want to refer to C:\Documents and Settings\johnl2\Application Data\Macromedia\Flash Player\#Security\FlashPlayerTrust to install a trust configuration file. The MXI format includes

Re: [Flashcoders] would this bother you?

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Ian Thomas
On 4/9/07, ben gomez farrell [EMAIL PROTECTED] wrote: Delegate is still kinda useful. I've been trying to get by without it since I'm still learning, but the way I've been doing things without it is to dispatch customized events that have specific parameters. It's kind of a pain in the butt

[Flashcoders] XPath online

2007-04-09 Thread Hairy Dog Digital
Hey all, Can anyone recommend a solid online reference for XPath (working with XFactorStudio XPath is Flash MX 04 Pro)? Their web site is next to non-existent, I just had to backpeddle on a project, and trying to get my bearings on XPath and their implementation of it for AS2. Thanks, Rob

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Ian Thomas
On 4/9/07, T. Michael Keesey [EMAIL PROTECTED] wrote: By the way, I think the AS3 syntax for this: button.onRelease=myFunction; // AS3 ... is actually: button.addEventListener(MouseEvent.CLICK, myFunction); Sorry, yes - you're quite right. I was illustrating a general point and clearly

RE: [Flashcoders] would this bother you?

2007-04-09 Thread Dave Watts
Tareq, I've disabled your Flashcoders mail. When you return, you may reenable it using the link at the bottom of every list message. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in

[Flashcoders] doLater call to singleton instance

2007-04-09 Thread Mendelsohn, Michael
Hi list... I have a mc on the stage containing 5 RadioButton instances. When the MC appears, I'd like it to show up with the most recently clicked RadioButton in the group selected by default from the previous time this MC was on the stage. I'm trying to do this with doLater, but I can't get it

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

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

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

RE: [Flashcoders] Anti-aliased text in components

2007-04-09 Thread Randy Tinfow
Turns out the original code below works just fine. It just requires that the component be fully loaded first. Thanks, Randy Tinfow and Michael Randolph -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Josh Santangelo Sent: Thursday, April 05,

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

[Flashcoders] Blinking Cursor in text field-Bug?

2007-04-09 Thread Andy Andersson
Hi List, Does anyone know if the issue with a blinking cursor by default in a input TextField only works with IE or does it works with other browsers as well? Thanks Andy ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

[Flashcoders] [JOB] Flash/ActionScript Developer for Social Site | Paid Relo

2007-04-09 Thread Beau Gould
Flash/ActionScript Developer for Social Site | Paid Relo My client is a privately held, venture-backed startup in Los Angeles who just launched their Beta website. Led by a former MySpace executive and other successful veterans, they are offering an exciting opportunity for someone looking for a

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

Re: [Flashcoders] would this bother you?

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

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

2007-04-09 Thread Merrill, Jason
Well, I guess it depends on what you call a large project ;-) I do know that without a proper framework (MVC at a mimimum, doesn't have to be ARP etc..) things get messy, fast.. And I disagree that you have to be an advanced coder to learn and understand them and afterall, this is FlashCoders,

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Tareq AlJaber
I will be out of the office starting 04/09/2007 and will not return until 04/16/2007. I will not have access to my email during this time. If you need immediate assistance, please contact Aaron Dolberg ([EMAIL PROTECTED]). Thank you. ___

Re: [Flashcoders] would this bother you?

2007-04-09 Thread geng wang
Thanks much Dan and David, That makes it clear! On 4/9/07, Holth, Daniel C. [EMAIL PROTECTED] wrote: If you want to free up memory you need to 'delete' all the references, not just removeMovieClip. I grabbed this from the livedocs: Usage 4: The following example shows the behavior of

Re: [Flashcoders] [as3] mouseEvents are not triggering

2007-04-09 Thread ilteris kaplan
Thanks Atila, I am totally new to programming in as3 and I am trying to make sense :) I though it would be a good idea to keep the mouseEvents on the main class file along with everything but as you said I moved it from there to particleManager and it solved my problem. thanks. On 4/9/07,

Re: [Flashcoders] basic flash games development issues

2007-04-09 Thread nik crosina
Thanks Josh, The PDFs are only going onto the DVD as teachers instructions as to how to use it, and I would like to inte3grte them directly into the interface simply for usability reasons. I may well go down the conversion to swf route and then provide the same PDFs in a folder elsewhere on disk

Re: [Flashcoders] XPath online

2007-04-09 Thread Thomas Fowler
I would look on msdn.microsoft.com/library under Win32 and COM Development - XML - MSXML - MSXML 4.0 SDK - XML Standards Reference - XPath Reference. It's an excellent reference for XPath 1.0 and 2.0. There's nothing different about MSFT's XPath implementation other than their specific

RE: [Flashcoders] XPath online

2007-04-09 Thread David Ngo
Try this: http://download.macromedia.com/pub/documentation/en/flash/fl8/XpathAPI.pdf -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hairy Dog Digital Sent: Monday, April 09, 2007 12:07 PM To: flashcoders@chattyfig.figleaf.com; [EMAIL PROTECTED] Subject:

RE: [Flashcoders] XPath online

2007-04-09 Thread Merrill, Jason
While this doesn't cover the xfactorstudios version of Xpath, it may have some info that will help. http://flash.terra.ee/flash-books/o'reilly%20-%20actionscript.cookbook.2 003/0596004907_actscptckbk-chp-19-sect-15.html and http://www.w3schools.com/xpath/default.asp Jason Merrill Bank of

Re: [Flashcoders] AS3 Delegate

2007-04-09 Thread Muzak
I think that's just another example of quick and dirty. If your button needs a property fruit it should be a property of the class. In other words, it should be its own class, eg FruitButton, with a property fruit. In AS2 I have never needed to pass any arguments to a Delegate, ever.. If you

Re: [Flashcoders] basic flash games development issues

2007-04-09 Thread nik crosina
Hi Dan, How did you run the flash files from the disk? Did they run inside a browser, or did you wrap them in a 'swf to exe' app like Zinc? And if you did, do the above limitations still aply? Becasue I just ahd a look at the mdm script

[Flashcoders] Kick this guy off the list

2007-04-09 Thread Steven Sacks | BLITZ
KICK THIS GUY OFF THE LIST! His out of office email is spamming every thread. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tareq AlJaber Sent: Monday, April 09, 2007 12:34 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders]

[Flashcoders] Create MXI/MXP with External JSFL

2007-04-09 Thread Steven Sacks | BLITZ
Hey FC, I have a Flash panel I created which requires an external JSFL file to run. How do I package up the JSFL file into the MXI/MXP and how do I determine what the file path is to it load said JSFL from inside the Actionscript of the panel SWF? Wrapping the JSFL into Actionscript is not an

Re: [Flashcoders] Swf not working when loaded from another movie..

2007-04-09 Thread Omar Fouad
thanks all i found out what was the problem i was created a movie clip on level 1 accidentally.. i replaced it with this.getNextHighestDepth() ; thanks all On 4/9/07, Michael Mudge [EMAIL PROTECTED] wrote: It is quite likely that inner SWF you're loading accesses _root, which by default

Re: [Flashcoders] OT: Happy Easter

2007-04-09 Thread Gustavo Duenas
Man this is ludicrous, so if there is atheist there...fine! I guess your reaction to my 2 lines are like a vampire being wet with holy water!!! If you or other don't believe in the existence of god...is ok! I guess we all live in democracy. So if you don't believe...hmmm!?? at least he

Re: [Flashcoders] OT: Happy Easter

2007-04-09 Thread Gustavo Duenas
I almost forgot, you should have just let it go and stick to the programming stuff. Regards Gustavo Duenas On Apr 9, 2007, at 2:55 PM, Steven Sacks | BLITZ wrote: Hahahahahahahaha! And I quote Cedric: whatever! ... respect First, you open with whatever! which is what people say to

Re: [Flashcoders] basic flash games development issues

2007-04-09 Thread nik crosina
Speaking of which - is there a serious competitor to Zinc when it comes to not only wrapping a swf into an exe but also adding some functionality such as the system functions and methods that come with it? I am looking around the net and can only find relative light weights such as flajector,

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

2007-04-09 Thread ilteris kaplan
Hello Flash Folks, I am trying to access stage.stageWidth property in order to be able to give certain x,y values to my objects when they are created. So when I went ahead tried to use stage.stageWidth by just tracing like trace(stage.stageWidth); this causing flash player 9 to throw an

[Flashcoders] (no subject)

2007-04-09 Thread Gustavo Duenas
hi recently looking in half.com for books I find out a dvd training for AS3, how good is it, if we compare this with the books? Regards Gustavo Duenas ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

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

2007-04-09 Thread Muzak
IMO, using multiple design patterns = framework Whether you throw them together on your own or use an existing one, it's still a framework. Stuff like Cairngorm and ARP are just a step up from MVC. IMO, you can read about them all day long.. the only thing that will help you grasp the concept is

Re: [Flashcoders] OT: Happy Easter

2007-04-09 Thread Snepo - Arse
On 10/04/2007, at 8:10 AM, Gustavo Duenas wrote: at least he BELIEVES IN YOU. As does Satan, Zeus, Quetzalcoatl, Ganesha, Cthulhu and L Ron Hubbard. Though I'm not sure what that has to do with Flash. ___ Flashcoders@chattyfig.figleaf.com To

[Flashcoders] flex tutorial online

2007-04-09 Thread Gustavo Duenas
someone would recommend me a good flex tutorial online? I've just fall down in my curiosity because all the matters in this list regarding Flex that I just download the trial minutes ago,and I'm embarrassed to accept that I'm clueless. Regards Gustavo Duenas

[Flashcoders] Flashcoders really bad lag - just me?

2007-04-09 Thread Steven Sacks | BLITZ
Ever since the Flashcoders server went down, my posts to Flashcoders are taking a long time to appear. Is it just me or are other people experiencing this? These are from today, for instance: RE: [Flashcoders] OT: Happy Easter Sent: Mon 4/9/2007 11:56 AM Appeared: Mon 4/9/2007 2:55 PM 3 hours

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

2007-04-09 Thread Muzak
You can use fl.runScript() to execute jsfl files. I usually install them alongside the Panels in a sub directory called jsfl, unless the jsfl file has to be accessable via the Command menu in the Flash IDE in which case they need to be stored in the Commands folder in the Flash Configuration

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

2007-04-09 Thread Muzak
If I'm not mistaken the stage property is one of the last things that gets created/defined (oddly enough). You'll have to listen to one of the available events and see which one is invoked after the stage property has been set (I'm not sure which one is the best candidate really). Try

Re: [Flashcoders] OT: Happy Easter

2007-04-09 Thread Gustavo Duenas
nice site snep. congratsYou are truly good. It has nothing to do with the list, I was just trying to be polite...that's it. Regards. Gustavo Duenas On Apr 9, 2007, at 7:39 PM, Snepo - Arse wrote: On 10/04/2007, at 8:10 AM, Gustavo Duenas wrote: at least he BELIEVES IN YOU. As

Re: [Flashcoders] flex tutorial online

2007-04-09 Thread Muzak
This should keep you busy: http://www.adobe.com/devnet/flex/?tab:quickstart=1 Flex itself comes with a bunch of quickstart tutorials that show up when you first launch it (starter page). Here's a tip.. have a look at the design view (click some stuff), then switch to code view and never go

Re: [Flashcoders] OT: Happy Easter

2007-04-09 Thread eric e. dolecki
When someone sneezes, I say, God bless you. They don't have to believe in God. No one has ever told me to keep God to myself. If they did, I wouldn't change the way I live. Just my 2 cents. - e On 4/9/07, Snepo - Arse [EMAIL PROTECTED] wrote: On 10/04/2007, at 8:10 AM, Gustavo Duenas

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

2007-04-09 Thread Steven Sacks | BLITZ
Muzak, Thanks for your response. Unfortunately, it's not working for me when I try to test it before I even make it an MXI/MXP. I created a jsfl folder inside the Configuration folder and put my jsfl file in there. uri = MMExecute(fl.configURI) + jsfl/test.jsfl; MMExecute(fl.trace(\ + uri +

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:

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

2007-04-09 Thread Muzak
This works here: import mx.utils.Delegate; var callJSFL_btn:mx.controls.Button; function callJSFLClickHandler(o:Object):Void { trace(Application ::: callJSFLClickHandler); var uri = MMExecute('fl.configURI')+jsfl/myCommand.jsfl; var func = sayHello; MMExecute('fl.trace('+uri+')');

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,

Re: [Flashcoders] OT: Happy Easter

2007-04-09 Thread Paul V.
I probably shouldn't but. .. Easter...named after the goddess of fertility, is about new creations (your choice), so I don't know what you guys generally know about paganism and the gods, but, well more than half of the world still celebrates, 'easter' or 'passover' at the first moon after the

Re: [Flashcoders] [as3] mouseEvents are not triggering

2007-04-09 Thread Aspirin errr
Hi, You do not add the _sprite into the children list of the main movie. Add it here. public function Moodbox2() { _sprite = new Sprite(); addChild(_sprite ); . On 4/10/07, ilteris kaplan [EMAIL PROTECTED] wrote: Thanks Atila, I am totally new to

[Flashcoders] [as3] embedded fonts from external swfs.

2007-04-09 Thread ilteris kaplan
Hello Flashcoders, I am working on a project where I need to embed multiple typefaces in my AS3 project. Here is what I got so far. I could happened to open my flash 8 and create multiple font symbols and add a linkage and check them to export them for actionscript. Then I put that file in

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

2007-04-09 Thread Aspirin errr
You must import the Stage Class, and try to trace it again. On 4/10/07, Muzak [EMAIL PROTECTED] wrote: If I'm not mistaken the stage property is one of the last things that gets created/defined (oddly enough). You'll have to listen to one of the available events and see which one is invoked

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

2007-04-09 Thread Muzak
Since a JSFL topic came up I thought I'd dig up my JSFL Executer command. It's a command that pops a Dialog (XUL) with a simple mulitline textbox. You can fill in some jsfl code, hit ok and the jsfl will be executed. Comes in handy for quickly testing pieces of code. There's two files, one jsfl

[Flashcoders] [as3] colorTransform

2007-04-09 Thread ilteris kaplan
Hello flashcoders, Once again, And after this I am not going to bother you for a while, I am trying to do basic colorTransform in as3. I am following docs from different places and the way I set i up is below: Unfortunately, I am missing something here. I would appreciate any advices