Re: [Flashcoders] [Web usability - Fullscreen - CSS?] I know ...butcustomer wants it Mac/PC

2005-11-23 Thread NEILHIGHLEY.COM
s an exe, how to do cross-browser and Mac/PC trick ? > Is it done automatically by these programs ? > > > Thank you > Tony > > > > > > > - Original Message - > From: "NEILHIGHLEY.COM" <[EMAIL PROTECTED]> > To: "Flashcoders mail

Re: [Flashcoders] Way to get URL of host page?

2005-11-23 Thread NEILHIGHLEY.COM
The end computer? The client computer of the person with the browser? Try looking up server variables. (here is a list of most of them: http://www.lib.washington.edu/asp/browser/servar.asp) (REMOTE_ADDR and REMOTE_HOST) I don't think there is any way of retrieving them unless you use a flashVars

Re: [Flashcoders] [Web usability - Fullscreen - CSS?] I know ... butcustomer wants it Mac/PC

2005-11-20 Thread NEILHIGHLEY.COM
Use a director stub, or a flash application envirnment like screenweaver or swfStudio? On 11/20/05, Nick Weekes <[EMAIL PROTECTED]> wrote: > "Popup blockers can be tricked, btw" > > How come Janis? If I have popups disabled (in Win XP), doesn't that prevent > all other windows from spawning? > >

Re: [Flashcoders] emoticons in a chat component

2005-11-20 Thread NEILHIGHLEY.COM
Can you use a javascript callback and the innerHTML tag of a DIV to combine the flash swf with a HTML page? Then you would just send the raw HTML to the DIV. You could also be a bit smarter and do the replacing of emoticons in the javascript. AFAIK this shouldn't require a page refresh for flash to

Re: [Flashcoders] AS2, compiler errors...

2005-11-17 Thread NEILHIGHLEY.COM
Example .as files: class GameoverPanel extends UserInteractionPanel { function GameoverPanel(controller:PanelController, panelObj:Object) { // Call the super() constructor passing it the panel object. super(controller,panelObj);//calls the constructor for the base calss UserInteractionPanel super.

Re: [Flashcoders] Ajax and Flash

2005-11-11 Thread NEILHIGHLEY.COM
AJAX is based on javascript Ascynch callbacks. Flash can process web requests asynchronously using Events. AJAX is, as far as Im concerned, irrelevant to flash development because of the veryprocess that AJAX uses is built into flash. Why go back to javascript? I wish all this marketing hyperbole

Re: [Flashcoders] Autopopulating from a webservice

2005-11-02 Thread NEILHIGHLEY.COM
Well, with a little bit of guidance from Mischa I have this sorted. I had to use an event proxy which was visible from the root, to courier the event from the webservice class I created back to the consuming class, as the addEventListener was not returning to the class if the listener was added to

Re: [Flashcoders] Autopopulating from a webservice

2005-11-02 Thread NEILHIGHLEY.COM
Sorry, I thought it was working, but Im a little confused about the "this" in the example. Where do I define the event that picks up the result? On 11/2/05, NEILHIGHLEY.COM <[EMAIL PROTECTED]> wrote: > Magic! I could not have prayed to Jupiter for a more complete answer! :) &

Re: [Flashcoders] Autopopulating from a webservice

2005-11-02 Thread NEILHIGHLEY.COM
service.wsdl"; ); > ws.addEventListener( "result", this ); > ws.addEventListener( "fault", this ); > ws.callSomeMethodWithArgs( arg1, arg2 ); > > Hope it helps. > > cheers -- mischa > > On 11/2/05, NEILHIGHLEY.COM <http://NEILHIGHLEY.COM> <[EM

[Flashcoders] Autopopulating from a webservice

2005-11-02 Thread NEILHIGHLEY.COM
Hello all, Webservice question.. I have an app that loads in records from a webservice class using the mx.services.webservice classes. This is called as a standalone class with the various webservices as functions each containing their own event listeners.. e.g. function wsRequest():Void{