[Flashcoders] Bonafide AS2.0 class template ...

2006-01-09 Thread Stephen Ford
I am fairly new to AS2.0 and OOP in general and I was wondering if anyone has a template file for AS2.0 classes that they wouldn't mind sharing. I am looking for a blank AS2.0 template that contains dummy content and layout that can be used (and should be used) every time I want to start

[Flashcoders] Error only when live - pulling my hair out !!!

2006-01-13 Thread Stephen Ford
Hello, I have a flash based app. that works fine when run in the IDE or locally on my machine, however, when I upload the app. to my server, it doesn't work. The app. just freezes my machine and I get the damned A script in this movie is causing Macromedia Flash Player 8 to run slowly. If it

[Flashcoders] Listener objects vs event handler functions ...

2006-01-14 Thread Stephen Ford
If this is an example of the listener object approach: myObj = new Object(); myObj.onMouseDown = myFunction; function myFunction() { trace(tracing something); } Mouse.addListener(myObj);

[Flashcoders] Error only when live - pulling my hair out !!! (JesterXL)

2006-01-14 Thread Stephen Ford
will take a look see if it does the same for me. Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Ford Sent: 14 January 2006 01:23 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Error only when live - pulling my hair out !!! Hello

[Flashcoders] Components and addEventListener ...

2006-01-14 Thread Stephen Ford
True or false (not a trick question, just a straight answer needed): The addEventListener method can only ever be called on a component ? e.g: myButton.addEventListener(click, myFunction); ... and if click is one thing you can 'listen' for, what is the complete list ?? (this might help me

[Flashcoders] Naming conventions for AS2.0 ...

2006-02-01 Thread Stephen Ford
Does anyone have an opinion, or a preferred method, in regards to naming conventions for AS2.0 objects ? For example, Macromedia recommends: clip_mc (movie clip) comm_lc (local connection) names_array (array) beep_sound (sound) field_txt (text field) etc, etc, etc but what if I wanted to

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

2006-03-01 Thread Stephen Ford
Hi All, I have a flash application that is causing an error only when it’s viewed within the browser. I can replicate the error whenever I like, as it always occurs the same way. If I could replicate the error within the Flash IDE, I could use the debugger to find what is causing the

[Flashcoders] SEO for Flash .....

2006-03-15 Thread Stephen Ford
Does anyone have any good links or advice for optimising Flash for search engines. Please let me know if anyone can advise on this or if some research has been done in this area. Thanks, Stephen.___ Flashcoders@chattyfig.figleaf.com To change your

[Flashcoders] Why is my setInterval only firing once ...

2006-03-21 Thread Stephen Ford
I have a setInterval call that is only firing once. Here is the part of my class where it's occuring: --- public function repositionClip():Void{ nWidth = Math.round(Stage.width); nHeight =

[Flashcoders] RE: Classes and setInterval ... (Stephen Ford)

2006-03-26 Thread Stephen Ford
Thanks Stacey, Yes it seems you need to pass in the parameter of 'this' before the function name and time, although I couldn't find reference to this in any of the manuals I looked in. Maybe they all just speak of AS1 and not class use of setInterval. _nInt = setInterval(this, myFunction,

[Flashcoders] Flash and various date formats ...

2006-03-30 Thread Stephen Ford
I have a little flash app. that pulls in various dates that are formatted in numerous ways. Before I look at creating a class that will return me a standard way to display the date, has anyone done anything like this before or know where I can download something similar to use or build on ?.

[Flashcoders] Flash and the OBJECT tag or EMBED tag in HTML ...

2006-04-01 Thread Stephen Ford
Can anyone tell my why the following icon/image appears momentarily in the top left of my browser screen when visiting my website: (click link to see image) http://i56.photobucket.com/albums/g194/CarlosBrems/image.gif Is this something to do with the OBJECT tag or EMBED tag that I have

[Flashcoders] Flash in HTML and the Object Embed tags ...

2006-04-03 Thread Stephen Ford
Can anyone tell my why the following icon/image appears momentarilyin the top left of my browser screen when visiting my website: (click link to see image)http://i56.photobucket.com/albums/g194/CarlosBrems/image.gif Is this something to do with the OBJECT tag or EMBED tag that Ihave

Re: [Flashcoders] Flash in HTML and the Object Embed tags ...

2006-04-04 Thread Stephen Ford
It's a flash movie that replaces the broken icon, not an image. There's nothing else on the HTML page other than one flash movie. Thanks if anyone can help. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] Active X and Microsoft IE ...

2006-04-09 Thread Stephen Ford
Can anyone answer this: What happens if a user doesn't have javascript enabled in their browser for the recommended Macromedia solution (see link: http://www.macromedia.com/devnet/activecontent/articles/devletter.html) to this whole Active X debacle ? ??? Please answer this if you can. It

[Flashcoders] RE: Active X and Microsoft IE

2006-04-09 Thread Stephen Ford
Thanks to Steven Sacks and Paul BH. After reading your thoughts (about javascript being enabled by default and stats of 3 out of 75000 users have it switched off) I am now going to go forward and use the FlashObject solution from here on in for everything I build. Anyone who thinks I am

Re: [Flashcoders] RANT: Collect Fonts Button

2006-04-14 Thread Stephen Ford
I agree 100% on this issue. I have lost count as to how many times the missing font issue has come up in projects. It always stalls a project, sometimes for days (especially when one group of developers are in a different time zone on the other side of the world). Adobe/Macromedia need to

[Flashcoders] Re: Sorting objects within an Array

2006-04-15 Thread Stephen Ford
Thanks all. I found this function online and it works perfectly: - Array.prototype.sortOn = function(p){Array.$sortprop = p;var sortfunc = function (a, b){var p = Array.$sortprop;return b[p] a[p];

Re: [Flashcoders] New wrinkle in IE activation issue...

2006-04-19 Thread Stephen Ford
Well said Lee. Microsoft has taken their own initiative to include Active X, Object, Embed activation in their latest IE patch. Has nothing to do with a court ruling. Can only be an attempt to make life more difficult for Adobe.___

[Flashcoders] A different kind of FOR loop ???

2006-04-29 Thread Stephen Ford
Please advise, What is this piece of code doing: for (posArray = [], i = 0; i this.length; posArray[i] = i++) {} I though it might have been another way of coding: for (i=0; ithis.length; i++) {posArray[i] = i;} But what would be the point of that anyway ? I have never seen a FOR loop

[Flashcoders] Casting a string to a number ...

2006-05-08 Thread Stephen Ford
A couple of times I have tried to cast a string to a number like so (this is just an example): var string:String = 9;trace(string);var number:Number = Number(string);trace(number);trace(typeof(number)); It seems to work, but is this the correct way to cast. Thanks,

[Flashcoders] What does this code mean and What are Inspectables ...

2006-06-04 Thread Stephen Ford
Thanks all, Much appreciated. I now understand Inspectables and how they relate to classes/components/the flash IDE property panel. However, I shouldn't have compressed two questions into one. So the first part of my question remains. What does code appearing inside brackets mean, for

[Flashcoders] UML Modelling for AS2.0 applications ...

2006-06-07 Thread Stephen Ford
Can anyone recommend a good application or website for UML modelling of an AS2.0 application. I have taken a look at gmodeler and downloaded an application called Enterprise Architect, but can anyone recommend anything else I should look at. Thanks,

[Flashcoders] UML to AS2.0 classes ...

2006-06-11 Thread Stephen Ford
Hello all, I have searched the flashcoders archive for around 20 mins and couldn't find exactly what I need, so here is my question. Can anyone recommend, or does anyone know of, a tool for creating UML diagrams that will export a set of AS2.0 classes from said UML diagram. From what I

[Flashcoders] The Delegate class ...

2006-06-14 Thread Stephen Ford
Hello All, Can anyone confirm that the Delegate class is only helpful when using components ? Or should it also be used for events outside the component framework ? No doubt it depends on what your trying to achieve, but just generally speaking, what do you think. Thanks, Stephen.

[Flashcoders] Sort within an object ....

2006-06-19 Thread Stephen Ford
I thought all objects were associative arrays ? Is this incorrect ? Stephen.___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by

[Flashcoders] Abstract Classes and Interfaces ...

2006-06-21 Thread Stephen Ford
Are Abstract Classes and Interfaces the same thing ? Stephen.___ 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

[Flashcoders] Singleton issues with AS2 class ...

2006-06-28 Thread Stephen Ford
Hi, My singleton is throwing +256 levels of error. Below I will show the code from my class and code from the .fla: DateShaper.as /class Sampler{// :: Private Properties ::private static var dsInstance:Sampler; // The master

[Flashcoders] AS2 and Singleton causing dreaded loop error ...

2006-06-28 Thread Stephen Ford
Hi, My singleton is throwing +256 levels of error. Below I will show the code from my .as file and from the .fla file: DateShaper.as /class Sampler{// :: Private Properties ::private static var dsInstance:Sampler; // The master

[Flashcoders] AS2 and Singleton woes ...

2006-06-28 Thread Stephen Ford
Hi, My singleton is throwing +256 levels of error. Below I will show the code from my .as file and from the .fla file: - DateShaper.as -class Sampler{private static var dsInstance:Sampler; // The master instance of this class public function Sampler(){getInstance();} public

[Flashcoders] Security Sandbox issue ...

2006-07-02 Thread Stephen Ford
Hello, I received this error while remotely debugging a swf: (15917) Connections: true | true*** Security Sandbox Violation ***Connection to http://my.abcnews.go.com/rsspublic/fp_rss20.xml halted - not permitted from http://localhost/test.swf I have added the file in question

[Flashcoders] AS2 and watch ...

2006-07-05 Thread Stephen Ford
How often do you use 'watch' in your applications?. It seems pretty powerful to me, and I've only just discovered it. Any thoughts on this. Cheers, Stephen.___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] Classes, Components and a Greyed out box ...

2006-08-21 Thread Stephen Ford
I have a preloader class for my app that doesn't appear until more than half way through the loading of my entire application. This is because I have a flash v2 combo box further along in my application. I should know this, but how do I get my preloader (which is a class of it's own) up and

[Flashcoders] Tab, tab, tab ...

2006-08-21 Thread Stephen Ford
I have a number of movieclips in my flash application. Within these movieclips is one textfield. The movieclips all have an AS2.0 class definition. The problem I am having is tabbing between the textfields within these movieclips and I don't know what the problem is. If I copy a few of the

[Flashcoders] Passing values to a backend

2006-08-23 Thread Stephen Ford
I have a created a little form in flash. I need to get the values into a backend. What I have is a variable called sQuery, like so: sQuery = questionnaire.asp?firstname=James%20J.lastname=Delaneyjobtitle=Web%20Dev[EMAIL PROTECTED]company=The%20Factoryphone=34563456customer=trueq1=7q2=39

[Flashcoders] Tabbing and Components (again) ...

2006-08-24 Thread Stephen Ford
Hi, I have a flash application that has a couple of combo box components and a couple of text fields. Trying to tab between my text fields doesn't work, even though they are all tab enabled and have tab indexes. The reason for this, I have recently found out, is due to the combo box

[Flashcoders] Google Adsense in Flash ...

2006-09-27 Thread Stephen Ford
Hi, Has anyone successfully incorporated Google Adsense ads into their flash site ?? Is this currently possible ?? Thanks.___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Flash webcam sites ...

2006-10-02 Thread Stephen Ford
I have recently purchased a webcam for my pc. Does anyone know of any sites (flash or other) that currently incorpotate webcams into their site. Community sites / online chat / etc, I want to see how webcams are currently being used on the net. I saw one site a while back that used flash

[Flashcoders] Flash Player Active X and Plugin ...

2006-10-05 Thread Stephen Ford
Can someone explain (or point to a URL) the difference between Flash Player Installer Active X and Flash Player Installer Plugin ??? Thanks.___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Global sound control ...

2006-10-11 Thread Stephen Ford
I have an interactive demo that consists of one main SWF file that loads in other SWF files depending on what the user clicks on in the main SWFs navigation. Within this main SWF and within all the seperate SWFs are numerous movies each with their own timeline doing it's own thing. In

[Flashcoders] Flash Classes and Preloading ...

2006-10-15 Thread Stephen Ford
I'm using AS2 classes in my flash movie. I have created a class called Preloader. How can I load this class without loading all other classes. The problem is that when testing my movie, nothing appears onscreen until about 30% of the total movie has loaded (because by default flash loads

Re: [Flashcoders] Flash Classes and Preloading ...

2006-10-15 Thread Stephen Ford
Thanks Alain, I have used that technique before, but surely there must be another way without using multiple SWFs ? I am trying to keep everything together in one FLA file. Stephen.___ Flashcoders@chattyfig.figleaf.com To change your subscription

[Flashcoders] Flash Combobox ...

2006-10-29 Thread Stephen Ford
I am trying to use 01 as a label for one of the items in my combobox, however flash won't display 01 - it cuts off the zero and just displays 1. Anyone know a way around this. Thanks, Stephen.___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] Flash Combobox ...

2006-10-30 Thread Stephen Ford
Thanks [EMAIL PROTECTED], but I should have added that I am entering the labels and data in the Parameters panel inside the Flash IDE. If anyone knows a way around this it would be great, but I might have to populate the Comboboxes dynamically with code.

[Flashcoders] Compiling with AS2.0 classes/packages online ...

2006-10-31 Thread Stephen Ford
Is it possible to use actionscript classes that exist only online ? i.e: instead of: import com.website.utils.*; something like: import http://www.website.com/packages/com.website.utils*; ___ Flashcoders@chattyfig.figleaf.com To change

[Flashcoders] Flash Print Function and Callbacks ?

2006-11-01 Thread Stephen Ford
Does anyone know if Flash's built in Print command has anyway of providing a callback once a print job has been executed ?? I need to set a clips visibility to false while the printing takes place, then set it back to visible once the print executes ?? Is this possible ?? Thanks, Stephen.

[Flashcoders] Text Field Manipulation/Effect ...

2006-11-13 Thread Stephen Ford
Hello, I'm working on a small interactive with a text manipulation/effect. There is a clip on stage that the user drags from right to left, and as they drag, a text field appears on screen (by scaling from a width of 0 to 100% - effectively stretching out to full width) following the

[Flashcoders] How variables when using setInterval ...

2006-11-29 Thread Stephen Ford
Hello, Lets say you have 10 different setIntervals running within your class. Do you also declare 10 different variables for these intervals ? like so: private var nInt:Number; private var nInt2:Number; private var nInt3:Number; etc etc Or can you just declare one variable and use it

[Flashcoders] setInterval and IE ...

2006-11-30 Thread Stephen Ford
Has anyone ever experienced any problems with using setIntervals in IE, both with window mode of transparent and without any window mode (normal) ? Thanks, Stephen.___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] RE: setInterval and IE

2006-11-30 Thread Stephen Ford
Using setInterval in a flashmovie that is loaded into an eyeblaster content management system. The movie is an over the page advertisement and apparently causes issues with IE (if using setInterval) because eyeblaster puts the ad onto the web page with a transparent window mode.

[Flashcoders] RE: setInterval and IE

2006-11-30 Thread Stephen Ford
Thanks Mick G.___ 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

[Flashcoders] Which technique do you use ...

2006-12-11 Thread Stephen Ford
Which of the following two techniques do you use when coding a similar (and common) process in actionscript:var mcTemp:MovieClip = this.attachMovie(mcCircle, mcCircle+nCounter, nCounter, oMain);mcTemp._x = Math.random()*600;mcTemp._y = Math.random()*400;nCounter++;or

[Flashcoders] Why does this work in Flash 6 Actionscript 2 but not Flash 7 Actionscript 2 ...

2006-12-11 Thread Stephen Ford
Why does the following work when published as Flash 6 Actionscript 2, but not Flash 7 actionscript 2 (or Flash 8 Actionscript 2).var nInt:Number;var oMain:Object = {};var nCounter:Number;var sClipName:String;var nClipDepth:Number;function spawnClip():Void{var mcTemp:MovieClip =

[Flashcoders] Microsoft Expression ...

2006-12-16 Thread Stephen Ford
Anyone tried any of the Expression apps yet, specifically Blend and Web ?Any thoughts ? I guess the Expression suite will be competing with the Apollo platform once it's released.Yes / No.___ Flashcoders@chattyfig.figleaf.com To change your

[Flashcoders] XML and line breaks ...

2007-01-10 Thread Stephen Ford
I am populating a text field in my flash movie with the content of an external XML file.What is the best way to force a line break in my text field ?For example, if the following was the XML node:contentText text text text. /n Text text text/contentUnfortunately, the '/n' line break doesn't

[Flashcoders] Re: XML and line breaks

2007-01-15 Thread Stephen Ford
Yes the solution was to use nodeValue instead of accessing just the node itself.___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by

[Flashcoders] ASBroadcaster deprecated in AS3 ?

2007-01-20 Thread Stephen Ford
Is it true that ASBroadcaster is deprecated in AS3 ?I ask because I have been meaning to study a little more on EventBroadcaster and ASBroadcaster, but there is no point looking into ASBroadcaster if its deprecated in AS3.Thanks.___

[Flashcoders] Test if mouse is outside flash movie (within browser) ...

2007-01-29 Thread Stephen Ford
I have a bunch of tooltips in my flash movie.One of the hit areas of a movie clip that triggers a tooltip sits flush with the edge of the flash movie.When testing in the browser, if I mouse over this clip and continue outside the flash movie onto the HTML page, I can no longer poll the position

[Flashcoders] RE: Flashcoders Digest, Vol 24, Issue 66

2007-01-29 Thread Stephen Ford
Yes I'm already using setInterval to poll for a hitTest, but if the mouse has left the stage, flash doesn't seem to return a false for the hitTest ?___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Preloaders and Classes/Audio ...

2007-01-31 Thread Stephen Ford
As I understand it, the best way (or one of) to have a preloader start at 0% when using classes is to uncheck 'export in first frame' for all clips associated with a class in your movie, and set the export classes frame (in publish settings) to a frame other than frame 1. Then dump all clips

[Flashcoders] What are your thoughts on creating a hook back vs Delegate ?

2007-02-04 Thread Stephen Ford
Which do you prefer:oThis:Object = this;mcClear.onRelease = function():Void{ oThis.clearForm();}ormcClear.onRelease = Delegate.create(this, clearForm);Also, anyone please let me know if my code formatting doesn't work (i.e: shouldn't be using hotmail to

[Flashcoders] Re: What do you think are the best Flash projects and RIA's

2007-02-14 Thread Stephen Ford
Go to www.thefwa.com and look around. You'll find plenty.___ 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

[Flashcoders] BROKEN ...

2007-02-22 Thread Stephen Ford
Flashcoders is BROKEN? ...___ 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

[Flashcoders] What is deprecated from AS2 in AS3 ...

2007-03-17 Thread Stephen Ford
Anyone have a list of what is deprecated from AS2 when migrating to AS3 (or even whats deprecated from AS1 to AS2).I'm currently skimming every single class available in Flash AS2 and want to know what I can skip (i.e: what is no longer relevant).There must be a list of something like this

[Flashcoders] Object.registerClass ...

2007-03-17 Thread Stephen Ford
Is Object.registerClass no longer relevant when using AS2 and OOP structure.I understand AS2 class structure, inheritance, etc but am trying to understand how it was done in AS1 and if I need to know any of the techniques used before AS2.Thanks.___

[Flashcoders] Re: Object.registerClass ...

2007-03-18 Thread Stephen Ford
Excellent, thanks all. Makes perfect sense now.It's the dynamic version of symbol linkage in the IDE (main advantage, for my style of build, is to assign more than one symbol to a class).___ Flashcoders@chattyfig.figleaf.com To change your subscription

[Flashcoders] RE: setting a timer in flash 8

2007-03-25 Thread Stephen Ford
var nInt:Number = setInterval(this, myFunction, 2); function myFunction():Void { clearInterval(nInt); etc . etc . }___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Accessing all properties in an object ...

2007-03-28 Thread Stephen Ford
Anyone have a small script they use when they want to trace out both the name and values of all properties in an object. I'm sure I've done this before, but can't recall at the moment (I'm half asleep this morning). Something building on:var oObject:Object = {};for (var props in oObject) {

[Flashcoders] Flash and video optimisation ....

2007-04-03 Thread Stephen Ford
Is there any point using a third-party application to optimize video for Flash.Or is it best just to use the video import feature of the Flash IDE.The delivery technique I'm using is external progressive download.Do I need (do you recommend) any apps other than Flash itself to prepare/optimise

[Flashcoders] Video delivery process ...

2007-04-03 Thread Stephen Ford
Hi,How do I preload video when the target player is 7?.The delivery technique I'm using is progressive download.Should I be using a proxy SWF to load an external FLV (because the Video class in Flash doesn't have anyway of polling the size of an external FLV, or how much of that FLV is loaded -

[Flashcoders] MovieClipLoader ...

2007-04-04 Thread Stephen Ford
Can anyone see why the callback events on the oLoadListener object in the following class aren't firing:import mx.data.binding.ObjectDumper;import mx.events.EventDispatcher;import mx.utils.Delegate;class TowerVideoPlayer extends MovieClip {//

Re: [Flashcoders] MovieClipLoader ...

2007-04-04 Thread Stephen Ford
Thanks Muzak,How to best initialize EventDispatcher outside the constructor via a static property ?How would you do this?___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] WebServices in Flash IDE ...

2007-04-07 Thread Stephen Ford
I can't define web services in the flash IDE.For any URL (and I've tried 5 different ones) I get the following message:WSDL download failed for the following URLs:Anyone know a fix for this or why this might be happening?.One possibly fix I stumbled upon was to delete everything in the 'Local

[Flashcoders] xmlSocket ...

2007-04-08 Thread Stephen Ford
I am playing around with xmlSocket.Does anyone have a host and port I can connect to just for test purposes?.I use WAMP server locally, is it possible to configure WAMP as a host for xmlSocket.Any pointers also welcome.Thanks.___

[Flashcoders] Re: xmlSocket ...

2007-04-08 Thread Stephen Ford
Thanks Mark. I'll take a look at the moock server.___ 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

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

2007-04-08 Thread Stephen Ford
Thanks Muzak. I found the problem. Changed a setting in IE7 and now it works (prompted when viewing in the browser).I'll look into ARP.___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] xml socket server ...

2007-04-08 Thread Stephen Ford
Does anyone know how I can set up a local xml socket server on my pc to test with the xmlSocket object in flash.Thanks.___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[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] WebServices in Flash IDE ...

2007-04-10 Thread Stephen Ford
Yes thanks all - the question has been answered. Both gave some great insight. Cheers.___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to

[Flashcoders] Microsoft Silverlight ...

2007-04-16 Thread Stephen Ford
What do you make of Microsoft's Silverlight:http://www.microsoft.com/silverlight/default_01.aspxTheir site sucks for starters, but anyone have any thoughts on what impact this will have on Flash ?___ Flashcoders@chattyfig.figleaf.com To change your

[Flashcoders] Flash and the Xbox 360 ...

2007-04-29 Thread Stephen Ford
Just got my hands on an Xbox 360.Can anyone tell if there is any type of development sites resources for the 360.Does it have even have the Flash Player, can you view flash files via the Xbox 360 OS.___ Flashcoders@chattyfig.figleaf.com To change your

[Flashcoders] Re: wedging in a preloader -- lazy developer alert!

2007-05-13 Thread Stephen Ford
As I see it you have two options: (1) Create a wrapper SWF or (2) Export all classes after the first frame and create an AS1 preloader in the first frame of the main timeline. Cheers.___ Flashcoders@chattyfig.figleaf.com To change your subscription

[Flashcoders] Transform Gradient tool in Flash 9 ...

2007-05-17 Thread Stephen Ford
Is it me or doesn't the transform gradient tool in Flash 9 not work ???___ 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

[Flashcoders] German subtext ...

2007-05-17 Thread Stephen Ford
Did anyone else receive a german email after posting to flashcoders today? Here is my question again anyway: Is it me or doesn't the transform gradient tool in Flash 9 work ??___ Flashcoders@chattyfig.figleaf.com To change your subscription options

[Flashcoders] Giving all objects new methods ...

2008-05-16 Thread Stephen Ford
AS3 Question: Is there a way to give all classes in every package a couple of new methods? I want to create a couple of new custom trace methods and have them available for every class within the type heirachy. Currently, I've extended the Sprite type to include these trace methods and most

[Flashcoders] AS3 : Flash IDE Base Class question ...

2008-05-18 Thread Stephen Ford
Example: I've drawn a 50x50 red square in the Flash IDE, and converted it to a new MovieClip, giving it a name of Box. I've then selected Export for Actionscript, at which point said clip is given the default Base Class of: flash.display.MovieClip So I then create a Class file, Box.as. Within

[Flashcoders] AS3: Static functions and events ...

2008-05-22 Thread Stephen Ford
Is there anyway for a static function within a class to fire off an event? assuming the static function exists within a class that has no constructor (ie: is never instantiated). As I understand it, for another object to be listening for the event, said object must have a local refence to the