Re: [Flashcoders] Custom combobox

2005-12-23 Thread Chris Hill
_ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders -- _ < __ __ > < | | \/ ___\ Chris Hill > < | | / /_/ > [EMAIL PROT

Re: [Flashcoders] aseditor discussion

2005-12-28 Thread Chris Allen
On 12/27/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > Eclipse is of course powerful but java based apps always seem a bit slow > on OSX IMHO. Hey Jim, Did you try upgrading the JVM to 1.5? That seemed to help performance quite a bit onc

[Flashcoders] Flash, Ant and the Mac

2005-12-28 Thread Chris Griffith
next baby steps. Thanks and have a happy new years! Chris Griffith ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Anyone have a current link to XMLSA for AS2?

2006-01-04 Thread Chris Whiteford
I have been looking and can't find any current links. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclo

[Flashcoders] Finally keeps you dry

2006-01-04 Thread Chris Velevitch
the principle of "finished what you started" says you need to destroy the movieclip in the routine that created it. Without the finally block, you would violate the DRY principle by destroying the movieclip in the catch block as well as at the end of the routine. By putting in a final

Re: [Flashcoders] > XMLSocket + close()

2006-01-06 Thread Chris Allen
here: http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part_ASLR.html -Chris On 1/6/06, Weyert de Boer <[EMAIL PROTECTED]> wrote: > Hmm, does anyone know a way to get a call to find if I got succesfully > disconnected us

Re: [Flashcoders] > XMLSocket + close()

2006-01-06 Thread Chris Allen
s for the clarification. -Chris On 1/6/06, Weyert de Boer <[EMAIL PROTECTED]> wrote: > Hi Jobe, > > > I think that you're supposed to assume it worked. The only time you > > get the closed event is when its not intiated by the client. > > Bummer, then we have

Re: [Flashcoders] Attaching the same Clip with differing widths along the X axis

2006-01-06 Thread Chris Hill
t;; box.spacing = 4; for(var i;i<10;i++){ box.addElement("symbolID",{myText:"TabName",initData:myData}); } Handles spacing, attachMovie, spacing, etc. Very handy dandy class. If you're changing the widths of them dynamically, you can re-arrange them by calling bo

[Flashcoders] Creating An OOP MC Via Composition

2006-01-11 Thread Chris Kennon
Hi, I attempting to create a mc, then attach a textField via composition, instead of extending the movieClip class. Could someone point out what I missed? [CODE] /** A Simple hello class that assigns a custom message to a text field based upon time of day. **/ class com.bushidodeep.Hello {

Re: [Flashcoders] Creating An OOP MC Via Composition

2006-01-11 Thread Chris Kennon
= true; } } [/CODE] On Jan 11, 2006, at 5:32 PM, Martin Wood wrote: passing the target into the constructor. martin. Chris Kennon wrote: Hi, I attempting to create a mc, then attach a textField via composition, instead of extending the movieClip class. Could someone poi

Re: [Flashcoders] Creating An OOP MC Via Composition

2006-01-11 Thread Chris Kennon
Have I missed something in the displayGreeting(); method or creating the timeline object? Nothing appears on stage. Would you like to view the files? Respectfully, Chris On Jan 11, 2006, at 5:47 PM, Andy Johnston wrote: public function Hello(target:MovieClip) { container_mc

Re: [Flashcoders] Creating An OOP MC Via Composition

2006-01-11 Thread Chris Kennon
Hi, This worked on the FLA timeline test is displayed in the textField, but shouldn't this functionality be in the class? Respectfully, Chris On Jan 11, 2006, at 5:56 PM, Andy Johnston wrote: nah actually should be [CODE] var myHelloClip:MovieClip = createEmptyMovieClip("he

Re: [Flashcoders] Creating An OOP MC Via Composition

2006-01-11 Thread Chris Kennon
Perfect.. Thanks so much! On Jan 11, 2006, at 6:25 PM, Andy Johnston wrote: import com.bushidodeep.*; var myHello:Hello = new Hello(this); ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/

[Flashcoders] Using a Function as Variable

2006-01-12 Thread Chris Kennon
Hi, In the following, I'm attempting to apply the value os an expression in a function to a textField. A pit of quicksand has developed. Would someone lend a hand? Respectfully, Christopher Kennon Bushidodeep.com ___ Flashcoders mailing list Flash

Re: [Flashcoders] Using a Function as Variable[code]

2006-01-12 Thread Chris Kennon
Greeting() { if (now == "afternoon") { message = "Disco Rules"; } else { message = "Samba Rules"; } } } On Jan 12, 2006, at 2:29 PM, Chris Kennon wrote: Hi, In the following, I'm at

Re: [Flashcoders] Using a Function as Variable[SOLVED]

2006-01-12 Thread Chris Kennon
Thanks for your help. Fixed it On Jan 12, 2006, at 2:39 PM, Johannes Nel wrote: public function get displayGreeting():String { if (now == "afternoon") { message = "Disco Rules"; } else { message = "Samba Rules";

Re: [Flashcoders] Using a Function as Variable[code]

2006-01-12 Thread Chris Kennon
The following returned undefined: /** A Simple hello class that assigns a custom message to a text field based upon time of day. **/ class com.bushidodeep.Hello { private var width:Number; private var height:Number; private var stageHeight:Number = 300; private var

Re: [Flashcoders] Job Opportunity in Madrid (Spain)

2006-01-13 Thread Chris Kennon
Microsoft? On Jan 13, 2006, at 7:28 AM, Nick Weekes wrote: Id rather earn 21000 euros than work for the antichrist. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Éric Thibault Sent: 13 January 2006 15:23 To: Flashcoders mailing list Subject: Re: [Flas

[Flashcoders] Can't redefine class method

2006-01-15 Thread Chris Velevitch
sional v 8.0. Has anyone seem this problem before? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] ComboBox not firing change event when selectedIndex set

2006-01-15 Thread Chris Velevitch
This is the intended behaviour. You should fire the change event yourself. The reason being, know you changed it, so you can call or do anything else you like at the same time. It's only when the user interacts with a component that you want to detect. Chris -- Chris Velevitch Manager - S

Re: [Flashcoders] Can't redefine class method

2006-01-15 Thread Chris Velevitch
> >} > > > >and when I call B.doit(), the trace output is:- > > > > A.dothis > > > >whereas I'm expecting B.dothis. > > > >I using Flash Professional v 8.0. > > > >Has anyone seem this problem before? > > > > &g

Re: [Flashcoders] Can't redefine class method

2006-01-15 Thread Chris Velevitch
t;> trace("A.dothis"); > >>> } > >>> > >>>} > >>> > >>>import A; > >>> > >>>class B extends A { > >>> > >>> private function B(){}; > >>> > &

Re: [Flashcoders] (no subject)

2006-01-15 Thread Chris Velevitch
e transformation Matrix but Im sure theres a > way to do it with the Displacment Map > ___ > Flashcoders mailing list > Flashcoders@chattyfig.figleaf.com > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > -- Chri

Re: [Flashcoders] Flash Projects & Visual Source Safe

2006-01-16 Thread Chris Allen
ust a suggestion. I hope it helps. -Chris On 1/16/06, Fitzpatrick, Kevin <[EMAIL PROTECTED]> wrote: > > Miles, > > Sorry I wasn't more specific, I am using MX 2004 Pro and the option > isn't there. I can't seem to find any more information on the problem. > &

[Flashcoders] Class Error Message

2006-01-16 Thread Chris Kennon
Hi All, In the following code my attempt at formatting the date returns this to the output window: // **Error** BushidoDeep:Users:chris:Desktop:hello:com:bushidodeep:Hello.as: Line 55: This statement is not permitted in a class definition. now = new Date(); **Error** BushidoDee

Re: [Flashcoders] Class Error Message

2006-01-16 Thread Chris Kennon
you must apply; willing is not enough, you must do." ---Bruce Lee On Jan 16, 2006, at 3:32 PM, PR Durand wrote: Hi Chris At the end of your code you have this now = new Date(); outside any method so flash doesn't know what to make with. Th

Re: [Flashcoders] Can't redefine class method

2006-01-16 Thread Chris Velevitch
t this behaviour. Consider static methods as though > they existed in a totally different class. If class A refenced a method > of class C, then just because A was subclassed into B, B still refers to > class C - what else should it do? Honour the heritance tree which is what seems to be ha

Re: [Flashcoders] Focus in the text field

2006-01-16 Thread Chris Velevitch
You might also need to set the cursor position Selection.setSelection(0, 0); Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

Re: [Flashcoders] Focus in the text field

2006-01-16 Thread Chris Velevitch
What value does Selection.setFocus(text_txt) return? If it's false, then is failed. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] [Flash Remoting MX]->null

2006-01-16 Thread Chris Velevitch
What does:- [Flash Remoting MX]->null in the coldfusion server Flash Remoting log mean? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.

[Flashcoders] An Issue of Encapsulation

2006-01-17 Thread Chris Kennon
Hi, If my understanding of encapsulation is misguided, please correct. In the following code snippet, should in the interest if encapsulation, the "Good Morning/Afternoon" strings be called from another function? //code snippet private function formatTime(theDate) {

Re: [Flashcoders] An Issue of Encapsulation

2006-01-17 Thread Chris Kennon
an enormously enlarged scale, of some aspect of personality." -- Aldus Huxley On Jan 17, 2006, at 7:04 PM, Alan MacDougall wrote: Chris Kennon wrote: Hi, If my understanding of encapsulation is misgui

Re: [Flashcoders] Flash 8 Mac Projector - Remoting Issue

2006-01-18 Thread Chris Velevitch
er where Responder is an interface class and RelayResponder implements that interface. Try that to see if makes a difference. [1] http://livedocs.macromedia.com/flashremoting/mx2004/actionscript_api_reference/mx/remoting/PendingCall.html Chris -- Chris Velevitch Manager - Sydney Flash

Re: [Flashcoders] Documenting my code

2006-01-19 Thread Chris Allen
refer to keep my classes small and > many, so it hasn't been an issue for me yet. Btw, I thought it was 5000 > lines of code per class, not for the whole project? I'm not sure anymore. Nope it's 5000 lines for your whole project. :-) Thus it doesn't work for me either. -Chris

Re: [Flashcoders] Q:Tracing out objects in an array

2006-01-19 Thread Chris Allen
Try using Xray http://osflash.org/xray It comes with a tt(YourObject) method that will recursively trace your objects. It also allows you to inspect objects, MovieClips or whatever is in your Flash movie and manipulate them with a GUI at run-time. It's freaking great! -

[Flashcoders] Another Class Error Message

2006-01-20 Thread Chris Kennon
Hi, Working away on the renamed hello class, now time stamp. However getting the following errors: **Error** BushidoDeep:Users:chris:Desktop:classes:timeStamp:com:bushidodeep:TimeSt amp.as: Line 23: Type mismatch in assignment statement: found Void where TextField is required.

[Flashcoders] Final Class Question

2006-01-21 Thread Chris Kennon
Hi, The following Class is complete except I've run into a snag passing a custom amMessage and pmMessage. Would some kind soul help the newbie, completing his first Class? /** A class that assigns a custom message to a text field based upon time of day. **/ class com.bushidodeep.TimeStamp {

Re: [Flashcoders] Final Class Question

2006-01-21 Thread Chris Kennon
Hi, Very helpful best practices information, however, as previously stated, this is my first Class. The custom greeting still returns undefined. It's probably how I call them in the class instance constructor? import com.bushidodeep.TimeStamp; // var my_ts:TimeStamp = new TimeStamp(this,

Re: [Flashcoders] Final Class Question[It's Done!!]

2006-01-21 Thread Chris Kennon
/ __ "Knowing is not enough, you must apply; willing is not enough, you must do." ---Bruce Lee On Jan 21, 2006, at 3:48 PM, Maximilian Reuss wrote: Hi Chris, for me, this is right all worked fine output white on

Re: [Flashcoders] Final Class Question[Correction]

2006-01-21 Thread Chris Kennon
/ __ "Knowing is not enough, you must apply; willing is not enough, you must do." ---Bruce Lee On Jan 21, 2006, at 3:48 PM, Maximilian Reuss wrote: Hi Chris, for me, this is right all worked fine output white on

Re: [Flashcoders] Final Class Question

2006-01-21 Thread Chris Velevitch
I agree with Nathan's observations, amMessage and pmMessage properties are being obscured by the constructor arguements of the same name in the class constructor and those properties aren't being set anywhere, which is why the result is undefined. Chris, did you change your class as pe

Re: [Flashcoders] Final Class Question

2006-01-22 Thread Chris Kennon
Hi, The revised code, Nathan's, worked. Chris On Jan 21, 2006, at 11:13 PM, Chris Velevitch wrote: I agree with Nathan's observations, amMessage and pmMessage properties are being obscured by the constructor arguements of the same name in the class constructor and those propert

Re: [Flashcoders] Flash Remoting

2006-01-22 Thread Chris Velevitch
On Windows, did you run the AS2 Remoting Components installer? I only use Windows, so I can't help you with Mac. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashc

[Flashcoders] Flash (AS2) vs Flex Remoting with CF

2006-01-22 Thread Chris Velevitch
this in Flash? There is an implicitation that the Flash Remoting classes for Flex and Flash are different. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashc

Re: [Flashcoders] XPathDocument()

2006-01-25 Thread Chris Allen
nces of XML not XPathDocuments, so you have to convert those if you need that functionality on the results. It's working this way, because I decided not to alter the XMLNode class's prototype. -Chris /** Copyright (c) 2002 Neeld Tanksley. All rights reserved. Redistribution and

Re: [Flashcoders] Fav XML editor

2006-01-27 Thread Chris Allen
I've found that using 1.5 with it is pretty damn good though. My 2 cents, I hope it helps. -Chris ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] ActionScript Cheatsheet Update (new URL)!

2006-01-29 Thread Chris Velevitch
Great work! Wouldn't be a good idea to include the AS2 operators? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figlea

[Flashcoders] Re: Flashcoders Digest, Vol 13, Issue 5

2006-02-01 Thread Chris Rounds
I will be out of the office from Wednesday, Feb 1 through Monday Feb 6th and may not be able to get to my email very often. Please direct any immediate needs to [EMAIL PROTECTED] or to the CDR Services office at: 505.391.7768. Thanks, Chris

Re: [Flashcoders] Tell me more about "_professionalism"

2006-02-01 Thread Chris Allen
n. Okay, I'm shutting up before I get in trouble. :-) -Chris ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] using flash for UI in applications

2006-02-01 Thread Chris Velevitch
. In fact Zinc uses an OO class to wrap the fscommand to make it compatible with an OO approach to writting code. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] using flash for UI in applications

2006-02-02 Thread Chris Velevitch
On 2/2/06, Mike Mountain <[EMAIL PROTECTED]> wrote: > What's wrong with the new external interface api? Nothing. The external interface api is stated to be better and more flexible than fscommands, but you still need to know which container you are talking to and what it can do.

Re: [Flashcoders] xpath / xpath4as2 beginners question

2006-02-02 Thread Chris Kennon
Hi, After reading this article, I'm confused why client name does not merit an element? (http://www-128.ibm.com/developerworks/xml/library/x-eleatt.html) On Feb 2, 2006, at 10:00 AM, Merrill, Jason wrote: It's well formed, sure, but I would do it like this instead - make heavy use of att

Re: [Flashcoders] xpath / xpath4as2 beginners question

2006-02-02 Thread Chris Kennon
inal Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Chris Kennon Sent: Thursday, February 02, 2006 2:19 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] xpath / xpath4as2 beginners question Hi, After reading this article, I'm confused why client na

Re: [Flashcoders] xpath / xpath4as2 beginners question

2006-02-02 Thread Chris Kennon
Hi, This tutorial may prove helpful (http://www.w3schools.com/xpath/default.asp) Jason, As with anything in this field, we collect various tools, then call upon ones applicable to the occasion. Your observation that attributes speed processing of a larger app is certainly well founded.

Re: [Flashcoders] Question about xpath and cdata

2006-02-03 Thread Chris Allen
Why not use Xpath.selectSingleNode() if you are only looking for one node? mySting = XPath.selectSingleNode(myXML, "/content/biog").firstChild.nodeValue; Works fine in my application in a node with CDATA content. -Chris On 2/3/06, Merrill, Jason <[EMAIL PROTECTED]> wrote: >

Re: [Flashcoders] Attn: John Grden

2006-02-03 Thread Chris Allen
micha Good point Micha, I think Hank was setting John to be Manuel. A typical syntax error, which might have evaluated to true in the end, and not to mention it would have been tough to debug. :-) Yikes, what a thought. Have a great weekend. -Chris _

Re: [Flashcoders] As2 Event Broadcasting for fp 6.0.0.0 [was: 6.0]

2006-02-06 Thread Chris Velevitch
On 2/6/06, Giles Taylor <[EMAIL PROTECTED]> wrote: > Sorry, should have said that I need it for fp 6.0.0.0 (rather than 6.0). > EventDispatcher is 6.0.79.0. I believe it should work as is, because the full source of the EventDispatcher class is included in the mx classes. Ch

Re: [Flashcoders] Flash Senior Developer/Copenhagen

2006-02-06 Thread Chris Alexander
your user group, man I would truely appreciate it. This is a position that would require relocation, but having said that, we are going to be looking for what we can get, so if you just do contract work then we would definitely keep you in consideration. -Chris Alexander [EMAIL PROTECTED] Little P

Re: [Flashcoders] Audio Chat

2006-02-07 Thread Chris Allen
You can also use Red5 http://osflash.org/red5 or Flash Media Server for this. -Chris On 2/7/06, Ramon Tayag <[EMAIL PROTECTED]> wrote: > > Thanks for that Franto! > > I did a bit more reading and one can use PHP sockets to get it done. > Have you guys done this before? >

[Flashcoders] Unit Tesing Framework Recommendations

2006-02-07 Thread Chris Velevitch
I'm interested in finding what unit testing frameworks exist for Flash and the pros and cons of each. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashc

Re: [Flashcoders] Extract actionscript from .FLA?

2006-02-07 Thread Chris Velevitch
t search utility to do batch searches across multiple files and/or directories.. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.

Re: [Flashcoders] Flex Pricing

2006-02-09 Thread Chris Velevitch
Apart from Flex Builder and the unlimited Flex Enterprise Services, everything is free. Flex 2 that is. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] Flex Pricing

2006-02-12 Thread Chris Velevitch
will also be free. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/fla

Re: [Flashcoders] Jabber - XIFF & Dreamhost

2006-02-13 Thread Chris Allen
Hey Jesse, I don't know about the XMPP implementation that Dreamhost uses, but some of these servers don't like to return a null byte to terminate the stanza which Flash XMLSocket requires. Sometimes you need to give the Jabber server a special initiator to let it know that you are a Flash client

Re: [Flashcoders] vardump an object in ActionScript?

2006-02-13 Thread Chris Allen
Man, I feel like a broken record. :-) Didn't this just come up recently. Anyway, I suggest that you try Xray: http://osflash.org/xray as it has this ability (Xray.trace(myObject);) and tons more. It will indeed save you time in debugging your Flash application. -Chris On 2/13/06, Josh McD

Re: [Flashcoders] vardump an object in ActionScript?

2006-02-13 Thread Chris Allen
On 2/13/06, Josh McDonald <[EMAIL PROTECTED]> wrote: > > I suppose a marriage proposal would be out of order? > > Super useful - Cheers dude :) > > -Josh > Hahaha! Don't ask for my hand in marriage. It should be John Grden, he created the thing. Keep in mind he's already taken, so it might take

Re: [Flashcoders] vardump an object in ActionScript?

2006-02-13 Thread Chris Allen
later in my code. I can go on and on about the benefits. As for Lumixbox, it is really great too. In fact John Grden is planning on having a way to include it in Xray so that your logging can be done through this more robust logging tool. Anyway, if you don't l

[Flashcoders] Post data in frameset never makes it to new window, IE only.

2006-02-13 Thread Chris Hill
can't unmake this site so it doesn't use frames. Would anyone have any magic fairy dust, or even better, a solution to this problem? I'd also be interested in knowing why this bug still exists, as I'm working on Flash 8. Any shedded light is mucho appreciated. Chris _

Re: [Flashcoders] Flex Pricing

2006-02-14 Thread Chris Velevitch
rver you are expecting. And there are other ways to connect to the server, such as Flash Remoting and Web Services. The server side costs vary from free and up depending on your server needs. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au __

Re: [Flashcoders] multiuser flash games

2006-02-16 Thread Chris Allen
ing a Jabber implementation that's hosted by dreamhost. From what he told me it's working fine with Flash after he had to configure a few things with the XIFF library. Anyway, I hope these tips help. Good luck! -Chris On 2/16/06, Oleg Kolokolov <[EMAIL PROTECTED]> wrote: > I

[Flashcoders] gotoandlearn()

2006-02-16 Thread Chris Kennon
Hi, I've contacted lee directly, but thought this might prove additionally helpful. I'm working with OS 10.4.5, both Safari and FireFox cannot load gotoandlearn() tutorials, and both are unable to download the material. I'm at a loss why this happening? Return True, Christopher

Re: [Flashcoders] gotoandlearn()

2006-02-16 Thread Chris Kennon
Hi, Player 8.x On Feb 16, 2006, at 11:54 AM, JesterXL wrote: What Flash player is installed in both browsers? - Original Message - From: "Chris Kennon" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, February 16, 2006 2:41 PM Subject:

Re: [Flashcoders] gotoandlearn()

2006-02-16 Thread Chris Kennon
Hi, After completing a clean install of Flash Player 8.5, the situation continues with the following error returned to the activity window: "http://fpdownload.macromedia.com/pub/flashplayer/update/current/ install/version.xml plugin-canceled" Respectfully, C

Re: [Flashcoders] Issue with two instances on a timeline

2006-02-16 Thread Chris Velevitch
If there are 2 instances with the name name in different frames, can't you refer to a specific instance by including the frame number or frame name in the reference? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.o

[Flashcoders] Red5 Flash Server 0.3 Release

2006-02-20 Thread Chris Allen
still not production worthy, but it does contain some of the core functionality that we are very excited about. Thanks in advance for checking out the Red5 project if you haven't already. Chris Allen and John Grden ___ Flashcoders@chattyfig.figlea

Re: [Flashcoders] how to liesten XML onLoad Event?

2006-02-20 Thread Chris Velevitch
doc.ignoreWhite = true; doc.onLoad = function (ok) { ... } doc.load (xmlPath); Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders@chattyfig.figleaf.com To change your subscription

Re: [Flashcoders] how to liesten XML onLoad Event?

2006-02-20 Thread Chris Velevitch
On 2/21/06, zikey Han <[EMAIL PROTECTED]> wrote: > Hi,Chris Velevitch, > Thank you for your replay!But I use you mathod ,it's helpless! > you mean that : > put doc.load after doc.onLoad function assigment.But it can do nothing when > i compile it! Is the onLoad functi

[Flashcoders] [ann] Sydney Developers Group March meeting

2006-02-27 Thread Chris Velevitch
the kick off event for WebDu 2006 (www.webdu.com.au) Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

[Flashcoders] Regular Expression

2006-02-28 Thread Chris Kennon
Hi All, Does AS 3 have support for regular expressions? Return True, Christopher Kennon Principal/Designer/Programmer -Bushidodeep www.bushidodeep.com ___ "An ideal is merely the projection, on an enormously enlarged scale, of some aspect of personality."

Re: [Flashcoders] oop question?

2006-03-01 Thread Chris Hill
You're mixing together AS1 and AS2. #include should be import: import mLoader; You're getting the error because you're trying in include the source of a class inside the flash, instead of importing the class itself. C murder design wrote: my main flash file only contains: #include "mLoad

Re: [Flashcoders] XPATH Question

2006-03-01 Thread Chris Allen
Try this: /Localidades/Localidad[idLocalidad='83' or idComunidadAutonoma='15'] That should work for you. On 3/1/06, julian atienza <[EMAIL PROTECTED]> wrote: > I have this XML > > > 83 >34 >15 > > > 106 >35 >15 > > > > > And want to generate a XPATH to select all n

Re: [Flashcoders] Error only when viewing in browser ...

2006-03-01 Thread Chris Hill
Instead of using the trace() function, look into using the LuminicBox logger, which logs to an external window, even when in the browser: http://osflash.org/luminicbox.log Enjoy, Chris Stephen Ford wrote: Hi All, I have a flash application that is causing an error only when it’s viewed

Re: [Flashcoders] RIA patent granted

2006-03-02 Thread Chris Allen
Aral Balkan has created a page on the OSFlash.org wiki for documenting these prior projects. Moonfruit.com is already listed, but if any of you have other early RIAs to add, please do so. Here is the link: http://osflash.org/balthaser_patent_prior_art_discovery On 3/2/06, Alias <[EMAIL PROTECTED

[Flashcoders] MD5 Class in AS2.0?

2006-03-02 Thread Chris Hill
I see a couple older MD5 classes in 1.0. Is there a 2.0 version floating around somewhere? Thanks Chris ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo

Re: [Flashcoders] RIA patent granted

2006-03-02 Thread Chris Allen
On 3/2/06, elibol <[EMAIL PROTECTED]> wrote: > Chris, the evidence being collected at OSFlash should only serve to bestow > the ownership of the patent to someone else. I apologize, but I would need > help understanding what else this kind of documentation could prove. The > pro

Re: [Flashcoders] MD5 Class in AS2.0?

2006-03-02 Thread Chris Hill
My googling yielded 1.0, not 2.0, my search skills must not be very leet. Thanks for the link! Chris Scott Hyndman wrote: http://www.meychi.com/archive/31.php You really should search on google or through the archives before asking. People ask for this often. Scott -Original

[Flashcoders] [ann] Sydney Developers Study Group 13th March

2006-03-06 Thread Chris Velevitch
require us to purchase beverages and/or snacks in exchange. Please RSVP at http://www.flashdev.org.au/rsvp. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] trace inside the browser

2006-03-07 Thread Chris Hill
Use the luminic box logger. http://www.luminicbox.com/blog/default.aspx?page=post&id=2 Rodrigo Guerra wrote: hi, i'm trying to figure out a way to implement a debug that i can see online (in the browser) and not just inside the flash environment. just like trace, but it must work when the sw

[Flashcoders] [ann] 20th March Sydney Developers study group meeting

2006-03-15 Thread Chris Velevitch
exchange. Please RSVP at http://www.flashdev.org.au/rsvp. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] flv local playback on linux

2006-03-15 Thread Chris Hill
Hmm...just tried playing flv locally on linux via a flash movie within an html page. Didn't work at all :( Ubuntu with Firefox and Flash 7. I don't see why it wouldn't work. Did you read something somewhere stating whether or not its possible? Chris Alfonso Florio wrote: A

[Flashcoders] Tonight (20th Mar) Sydney Developers study group

2006-03-19 Thread Chris Velevitch
exchange. Please RSVP at http://www.flashdev.org.au/rsvp. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] XPathAPI question

2006-03-20 Thread Chris Allen
On 3/20/06, Patrick Matte <[EMAIL PROTECTED]> wrote: > Is it just me or the mx.xpath library doesn't support the "//" syntax to > select every nodes that match the selection no matter where they are? > > Like this for example doesn't work: > > XPathAPI.selectNodeList(menuXML,"//[EMAIL PROTECTED]'tr

[Flashcoders] 27th March Sydney Developers study group

2006-03-21 Thread Chris Velevitch
. Please RSVP at http://www.flashdev.org.au/rsvp. Chris-- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] Multiuser - which backend?

2006-03-22 Thread Chris Allen
a variety of protocols and connections including RTMP, AMF, HTTP, XMLSocket. The only drawback, as John already mentioned, is that it's not complete yet. But considering your project is in the experimental stage, this might not be an issue for you. -Chris On 3/22/06, John Grden <[EMAIL P

Re: [Flashcoders] 27th March Sydney Developers study group

2006-03-22 Thread Chris Velevitch
fugli list or at least boost my confidence that the target audience is subscribed to fugli. Let's begin with:- Hey all Sydneysiders!, Post a message to http://lists.daemon.com.au/cgi-bin/lyris.pl?enter=fugli if you're in Sydney (or near Sydney) (Australia that is,sorry Canada) and

Re: [Flashcoders] Using Flash with Ruby on Rails

2006-03-23 Thread Chris Allen
till new and finding ISPs that will host it might be a problem. Obviously PHP is a good choice if you need a lot of flexibility in finding cheap hosting situations. Anyway, I hope that helps. -Chris On 3/23/06, Chad Royer <[EMAIL PROTECTED]> wrote: > thanks, but at first glance I can

How (and more specifically) where to promote my groups events (was Re: [Flashcoders] 27th March Sydney Developers study group)

2006-03-27 Thread Chris Velevitch
> for listening. You're not offending me. There are too many places to post about flash/flex, I wish there was only one place, but it turns out that's not possible and especially since not everyone is on every list, forum, newsgroup etc. What&

[Flashcoders] 3rd April Sydney Developers study group

2006-03-27 Thread Chris Velevitch
club are free, the club does require us to purchase beverages and/or snacks in exchange. Please RSVP at http://www.flashdev.org.au/rsvp. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashc

Re: [Flashcoders] If not Zinc, then what?

2006-03-28 Thread Chris Velevitch
.com/1097 It's a little old now, but is a good starting point. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or se

[Flashcoders] Flowing Text in Flash

2006-03-29 Thread Chris Hill
ed tokens. Keep adding tokens and checking maxscroll to see if it is equal to 1. If maxscroll equals 1 then subtract the last token. Move on to the next text field. Not an ideal solution, but the only one that I think will work. Has anyone done anything similar?

<    1   2   3   4   5   >