|
Home > Archive > Macromedia Flash Server > April 2005 > Flash Remoting MX2004
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Flash Remoting MX2004
|
|
| Michael D. Randolph 2005-04-25, 5:45 pm |
| The "Flash Remoting, The Definitive Guide," book has been a great
resource for learning how to use Remoting with AS1. I want to dive into
learning the AS2 methods now...but a lot of things I'm trying don't seem
to be working. Are there any books out that cover Remoting w/ AS2?
What about websites with tutorials? The documentation for the AS2
classes doesn't seem complete, and mostly everything I try ends up not
working. Any advice?
Michael Randolph
IMAGE PLANT
(973) 244-9220
mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org <mailto:mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org>
| |
| Brian Lesser 2005-04-25, 5:45 pm |
| Hi Michael,
There are some irritating typos in the docs but once I got past them I
found the new remoting docs a little tedious but complete enough for me
to get my work done. I taught a course last term that used Remoting and
included three pages about it here:
https://my.ryerson.ca/bbcswebdav/us...N537/index.html
Click on Course Documents after the side bar loads and check the items
Flash Remoting, Installing Remoting, and Remoting Part 2. Probably the
last one is the only one of any use to you.
The three pages are quick and dirty help notes for my students who had
lots of ways to ask me follow on questions - in other words the notes
could be a lot better!
Lately, I have been thinking about abandoning Macromedia's code and just
using a NetConnection.
Yours truly,
-Brian
Michael D. Randolph wrote:
>The "Flash Remoting, The Definitive Guide," book has been a great
>resource for learning how to use Remoting with AS1. I want to dive into
>learning the AS2 methods now...but a lot of things I'm trying don't seem
>to be working. Are there any books out that cover Remoting w/ AS2?
>What about websites with tutorials? The documentation for the AS2
>classes doesn't seem complete, and mostly everything I try ends up not
>working. Any advice?
>
>
>
>Michael Randolph
>
>IMAGE PLANT
>
>(973) 244-9220
>
>mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org <mailto:mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org>
>
>
>
>
>
>------------------------------------------------------------------------
>
>
>=-----------------------------------------------------------
>Supported by Fig Leaf Software - http://www.figleaf.com
>=-----------------------------------------------------------
>
>To change your subscription options or search the archive:
>http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>
--
________________________________________
______________________________
Brian Lesser
Assistant Director, Teaching and Technology Support
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario Phone: (416) 979-5000 ext. 6835
M5B 2K3 Fax: (416) 979-5220
Office: AB48D E-mail: blesser-6s6ziW1YCwCw5LPnMra/2Q@public.gmane.org
(Enter through LB66) Web: http://www.ryerson.ca/~blesser
________________________________________
______________________________
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| JesterXL 2005-04-25, 5:45 pm |
| Being pragmatic since I can't bust mad skillz like B-Lesser, I dig the AS2
classes. They are a pain to setup (assuming you've downloaded the
hard-to-find ZIP here:
http://www.macromedia.com/software/...ads/components/
)
My only beef with them is that RelayResponder uses strings for function
names, thus bypassing the userfulness of Flash MX 2004's compiler...:
http://www.jessewarden.com/archives...h_remoting.html
but other than that, I dig 'em.
Used 'em with AMFPHP and OpemAMF (PHP & Java), so they are pretty versitile
too.
Here's a simple "ping" for AMFPHP.
Flash
-----------
import mx.remoting.Service;
import mx.remoting.PendingCall;
import mx.rpc.RelayResponder;
import mx.rpc.ResultEvent;
import mx.rpc.FaultEvent;
import mx.remoting.debug.NetDebug;
import mx.utils.Delegate;
function init()
{
default_responder = new RelayResponder(this, "onResult", "onFault");
var theURL:String = "http://yourserver/amfphpbeta/gateway.php";
test_service = new Service(
theURL,
null,
"Test",
null,
default_responder);
NetDebug.initialize();
Key.addListener(this);
}
function d(o)
{
trace(o);
//debug_ta.text += o + newline;
}
function onResult()
{
d("onResult");
}
function onStatus()
{
d("onStatus");
}
function onKeyDown()
{
switch(Key.getCode())
{
case Key.LEFT:
test_service.ping();
break;
}
}
init();
PHP
--------
<?php
class Test
{
function Test()
{
$this->methodTable = array(
"ping" => array(
"description" => "Returns true; used to test if working",
"access" => "remote",
"arguments" => array()
)
);
}
function ping()
{
return true;
}
}
?>
----- Original Message -----
From: "Brian Lesser" <blesser-6s6ziW1YCwCw5LPnMra/2Q@public.gmane.org>
To: "FlashComm Mailing List" <flashcomm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org>
Sent: Monday, April 25, 2005 3:54 PM
Subject: Re: [FlashComm] Flash Remoting MX2004
Hi Michael,
There are some irritating typos in the docs but once I got past them I
found the new remoting docs a little tedious but complete enough for me
to get my work done. I taught a course last term that used Remoting and
included three pages about it here:
https://my.ryerson.ca/bbcswebdav/us...N537/index.html
Click on Course Documents after the side bar loads and check the items
Flash Remoting, Installing Remoting, and Remoting Part 2. Probably the
last one is the only one of any use to you.
The three pages are quick and dirty help notes for my students who had
lots of ways to ask me follow on questions - in other words the notes
could be a lot better!
Lately, I have been thinking about abandoning Macromedia's code and just
using a NetConnection.
Yours truly,
-Brian
Michael D. Randolph wrote:
>The "Flash Remoting, The Definitive Guide," book has been a great
>resource for learning how to use Remoting with AS1. I want to dive into
>learning the AS2 methods now...but a lot of things I'm trying don't seem
>to be working. Are there any books out that cover Remoting w/ AS2?
>What about websites with tutorials? The documentation for the AS2
>classes doesn't seem complete, and mostly everything I try ends up not
>working. Any advice?
>
>
>
>Michael Randolph
>
>IMAGE PLANT
>
>(973) 244-9220
>
>mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org <mailto:mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org>
>
>
>
>
>
>------------------------------------------------------------------------
>
>
>=-----------------------------------------------------------
>Supported by Fig Leaf Software - http://www.figleaf.com
>=-----------------------------------------------------------
>
>To change your subscription options or search the archive:
>http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>
--
________________________________________
______________________________
Brian Lesser
Assistant Director, Teaching and Technology Support
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario Phone: (416) 979-5000 ext. 6835
M5B 2K3 Fax: (416) 979-5220
Office: AB48D E-mail: blesser-6s6ziW1YCwCw5LPnMra/2Q@public.gmane.org
(Enter through LB66) Web: http://www.ryerson.ca/~blesser
________________________________________
______________________________
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| JesterXL 2005-04-25, 5:45 pm |
| To expound, the normal way for callbacks is:
var pc:PendingCall = test_service.ping();
pc.responder = new RelayResponder(this, "onResult", "onFault");
In my example, I just used the default responder, sorry about that.
----- Original Message -----
From: "JesterXL" <jesterxl-RyEax5csP4NCVeB36W80OQ@public.gmane.org>
To: "FlashComm Mailing List" <flashcomm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org>
Sent: Monday, April 25, 2005 4:07 PM
Subject: Re: [FlashComm] Flash Remoting MX2004
Being pragmatic since I can't bust mad skillz like B-Lesser, I dig the AS2
classes. They are a pain to setup (assuming you've downloaded the
hard-to-find ZIP here:
http://www.macromedia.com/software/...ads/components/
)
My only beef with them is that RelayResponder uses strings for function
names, thus bypassing the userfulness of Flash MX 2004's compiler...:
http://www.jessewarden.com/archives...h_remoting.html
but other than that, I dig 'em.
Used 'em with AMFPHP and OpemAMF (PHP & Java), so they are pretty versitile
too.
Here's a simple "ping" for AMFPHP.
Flash
-----------
import mx.remoting.Service;
import mx.remoting.PendingCall;
import mx.rpc.RelayResponder;
import mx.rpc.ResultEvent;
import mx.rpc.FaultEvent;
import mx.remoting.debug.NetDebug;
import mx.utils.Delegate;
function init()
{
default_responder = new RelayResponder(this, "onResult", "onFault");
var theURL:String = "http://yourserver/amfphpbeta/gateway.php";
test_service = new Service(
theURL,
null,
"Test",
null,
default_responder);
NetDebug.initialize();
Key.addListener(this);
}
function d(o)
{
trace(o);
//debug_ta.text += o + newline;
}
function onResult()
{
d("onResult");
}
function onStatus()
{
d("onStatus");
}
function onKeyDown()
{
switch(Key.getCode())
{
case Key.LEFT:
test_service.ping();
break;
}
}
init();
PHP
--------
<?php
class Test
{
function Test()
{
$this->methodTable = array(
"ping" => array(
"description" => "Returns true; used to test if working",
"access" => "remote",
"arguments" => array()
)
);
}
function ping()
{
return true;
}
}
?>
----- Original Message -----
From: "Brian Lesser" <blesser-6s6ziW1YCwCw5LPnMra/2Q@public.gmane.org>
To: "FlashComm Mailing List" <flashcomm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org>
Sent: Monday, April 25, 2005 3:54 PM
Subject: Re: [FlashComm] Flash Remoting MX2004
Hi Michael,
There are some irritating typos in the docs but once I got past them I
found the new remoting docs a little tedious but complete enough for me
to get my work done. I taught a course last term that used Remoting and
included three pages about it here:
https://my.ryerson.ca/bbcswebdav/us...N537/index.html
Click on Course Documents after the side bar loads and check the items
Flash Remoting, Installing Remoting, and Remoting Part 2. Probably the
last one is the only one of any use to you.
The three pages are quick and dirty help notes for my students who had
lots of ways to ask me follow on questions - in other words the notes
could be a lot better!
Lately, I have been thinking about abandoning Macromedia's code and just
using a NetConnection.
Yours truly,
-Brian
Michael D. Randolph wrote:
>The "Flash Remoting, The Definitive Guide," book has been a great
>resource for learning how to use Remoting with AS1. I want to dive into
>learning the AS2 methods now...but a lot of things I'm trying don't seem
>to be working. Are there any books out that cover Remoting w/ AS2?
>What about websites with tutorials? The documentation for the AS2
>classes doesn't seem complete, and mostly everything I try ends up not
>working. Any advice?
>
>
>
>Michael Randolph
>
>IMAGE PLANT
>
>(973) 244-9220
>
>mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org <mailto:mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org>
>
>
>
>
>
>------------------------------------------------------------------------
>
>
>=-----------------------------------------------------------
>Supported by Fig Leaf Software - http://www.figleaf.com
>=-----------------------------------------------------------
>
>To change your subscription options or search the archive:
>http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>
--
________________________________________
______________________________
Brian Lesser
Assistant Director, Teaching and Technology Support
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario Phone: (416) 979-5000 ext. 6835
M5B 2K3 Fax: (416) 979-5220
Office: AB48D E-mail: blesser-6s6ziW1YCwCw5LPnMra/2Q@public.gmane.org
(Enter through LB66) Web: http://www.ryerson.ca/~blesser
________________________________________
______________________________
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Michael D. Randolph 2005-04-25, 5:45 pm |
| Actually, the documentation doesn't seem to be so bad. Really...the
debugging for Remoting is terrible. Every time there is an error on the
server side, the error string returned has nothing to do with the actual
error. Is this because I'm using .NET? Would the debugger play nice if
I was using CF?
Michael Randolph
IMAGE PLANT
(973) 244-9220
mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org
-----Original Message-----
From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
[mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org] On Behalf Of Brian
Lesser
Sent: Monday, April 25, 2005 3:55 PM
To: FlashComm Mailing List
Subject: Re: [FlashComm] Flash Remoting MX2004
Hi Michael,
There are some irritating typos in the docs but once I got past them I
found the new remoting docs a little tedious but complete enough for me
to get my work done. I taught a course last term that used Remoting and
included three pages about it here:
https://my.ryerson.ca/bbcswebdav/us...N537/index.html
Click on Course Documents after the side bar loads and check the items
Flash Remoting, Installing Remoting, and Remoting Part 2. Probably the
last one is the only one of any use to you.
The three pages are quick and dirty help notes for my students who had
lots of ways to ask me follow on questions - in other words the notes
could be a lot better!
Lately, I have been thinking about abandoning Macromedia's code and just
using a NetConnection.
Yours truly,
-Brian
Michael D. Randolph wrote:
>The "Flash Remoting, The Definitive Guide," book has been a great
>resource for learning how to use Remoting with AS1. I want to dive
into
>learning the AS2 methods now...but a lot of things I'm trying don't
seem
>to be working. Are there any books out that cover Remoting w/ AS2?
>What about websites with tutorials? The documentation for the AS2
>classes doesn't seem complete, and mostly everything I try ends up not
>working. Any advice?
>
>
>
>Michael Randolph
>
>IMAGE PLANT
>
>(973) 244-9220
>
>mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org <mailto:mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org>
>
>
>
>
>
>-----------------------------------------------------------------------
-
>
>
>=-----------------------------------------------------------
>Supported by Fig Leaf Software - http://www.figleaf.com
>=-----------------------------------------------------------
>
>To change your subscription options or search the archive:
>http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>
--
________________________________________
______________________________
Brian Lesser
Assistant Director, Teaching and Technology Support
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario Phone: (416) 979-5000 ext. 6835
M5B 2K3 Fax: (416) 979-5220
Office: AB48D E-mail: blesser-6s6ziW1YCwCw5LPnMra/2Q@public.gmane.org
(Enter through LB66) Web: http://www.ryerson.ca/~blesser
________________________________________
______________________________
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Richard Leggett 2005-04-25, 5:45 pm |
| Nice code Jesse, thought I might suggest a bit of code too as I've found it
a very nice way to work with the new AS2 version of the remoting classes
(again with AMFPHP) and it might be useful. I tend to create a Data Access
Object which deals with the retrieval of data from the serverside via
remoting. FCS 2 will have AS2 SS right?
Anyway... e.g.
CalendarProvider (simplified)
-----------------------------
import mx.rpc.*;
import mx.remoting.*;
import mx.events.EventDispatcher;
import my.package.events.*;
import my.package.Config;
class my.package.dao.CalendarProvider
{
private var service:Service;
private var resp:RelayResponder;
public function CalendarProvider()
{
// bad I know, but there might be quite a few of these
EventDispatcher.initialize(CalendarProvider.prototype);
resp = new RelayResponder(this, "calendarReceived",
"calendarReceiveFailure");
service = new Service(Config.GatewayURI, null, resp);
}
public function getCalendarData(year:Number, month:Number)
{
var pc:PendingCall = service.getCalendarData();
}
private function calendarReceived(re:ResultEvent):Void
{
dispatchEvent(new CalendarReceivedEvent(this, re));
}
private function calendarReceiveFailure(fe:FaultEvent):Vo
id
{
dispatchEvent(new CalendarFailureEvent(this));
}
private var dispatchEvent:Function;
public var addEventListener:Function;
public var removeEventListener:Function;
}
Usage:
-------
var calProvider = new CalendarProvider();
calProvider.addEventListener("CalendarReceivedEvent", Delegate.create(this,
calendarLoaded));
calProvider.addEventListener("CalendarFailureEvent", Delegate.create(this,
calendarLoadFailed));
calProvider.getCalendar(year,month);
Hope you find it in some way a useful way of working too. (I don't have a
comp science background so whether this is how DAO usually works or not or
anyones guess). Again, the way RelayResponders work with strings is not that
great, but just about bearable!
Rich
----- Original Message -----
From: "JesterXL" <jesterxl-RyEax5csP4NCVeB36W80OQ@public.gmane.org>
To: "FlashComm Mailing List" <flashcomm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org>
Sent: Monday, April 25, 2005 9:07 PM
Subject: Re: [FlashComm] Flash Remoting MX2004
> Being pragmatic since I can't bust mad skillz like B-Lesser, I dig the AS2
> classes. They are a pain to setup (assuming you've downloaded the
> hard-to-find ZIP here:
> http://www.macromedia.com/software/...ads/components/
> )
>
> My only beef with them is that RelayResponder uses strings for function
> names, thus bypassing the userfulness of Flash MX 2004's compiler...:
>
> http://www.jessewarden.com/archives...h_remoting.html
>
> but other than that, I dig 'em.
>
> Used 'em with AMFPHP and OpemAMF (PHP & Java), so they are pretty
versitile
> too.
>
> Here's a simple "ping" for AMFPHP. <snip>
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Brian Lesser 2005-04-25, 5:45 pm |
| OK, that sounds familiar except that I never use the debugger... While
debugging I've had to handle exceptions on the server-side and rethrow
my own adding in the debugging information I needed... I'm not a .Net
guy so can't help you there.
Yours truly,
-Brian
Michael D. Randolph wrote:
>Actually, the documentation doesn't seem to be so bad. Really...the
>debugging for Remoting is terrible. Every time there is an error on the
>server side, the error string returned has nothing to do with the actual
>error. Is this because I'm using .NET? Would the debugger play nice if
>I was using CF?
>
>Michael Randolph
>IMAGE PLANT
>(973) 244-9220
>mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org
>
>-----Original Message-----
>From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
>[mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org] On Behalf Of Brian
>Lesser
>Sent: Monday, April 25, 2005 3:55 PM
>To: FlashComm Mailing List
>
>
________________________________________
______________________________
Brian Lesser
Assistant Director, Teaching and Technology Support
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario Phone: (416) 979-5000 ext. 6835
M5B 2K3 Fax: (416) 979-5220
Office: AB48D E-mail: blesser-6s6ziW1YCwCw5LPnMra/2Q@public.gmane.org
(Enter through LB66) Web: http://www.ryerson.ca/~blesser
________________________________________
______________________________
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Brian Lesser 2005-04-25, 5:45 pm |
| Richard Leggett wrote:
> FCS 2 will have AS2 SS right?
My guess is that it will not. You never know though...
-Brian
________________________________________
______________________________
Brian Lesser
Assistant Director, Teaching and Technology Support
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario Phone: (416) 979-5000 ext. 6835
M5B 2K3 Fax: (416) 979-5220
Office: AB48D E-mail: blesser-6s6ziW1YCwCw5LPnMra/2Q@public.gmane.org
(Enter through LB66) Web: http://www.ryerson.ca/~blesser
________________________________________
______________________________
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| JesterXL 2005-04-25, 5:45 pm |
| It works great for Java; I just show the Java coder in question the error,
and go get a coke since my code always works, and it's always the server
guys' fault.
----- Original Message -----
From: "Michael D. Randolph" <mrandolph-BLI8p3VsWNHtqXgxI/4nyg@public.gmane.org>
To: "FlashComm Mailing List" <flashcomm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org>
Sent: Monday, April 25, 2005 4:27 PM
Subject: RE: [FlashComm] Flash Remoting MX2004
Actually, the documentation doesn't seem to be so bad. Really...the
debugging for Remoting is terrible. Every time there is an error on the
server side, the error string returned has nothing to do with the actual
error. Is this because I'm using .NET? Would the debugger play nice if
I was using CF?
Michael Randolph
IMAGE PLANT
(973) 244-9220
mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org
-----Original Message-----
From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
[mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org] On Behalf Of Brian
Lesser
Sent: Monday, April 25, 2005 3:55 PM
To: FlashComm Mailing List
Subject: Re: [FlashComm] Flash Remoting MX2004
Hi Michael,
There are some irritating typos in the docs but once I got past them I
found the new remoting docs a little tedious but complete enough for me
to get my work done. I taught a course last term that used Remoting and
included three pages about it here:
https://my.ryerson.ca/bbcswebdav/us...N537/index.html
Click on Course Documents after the side bar loads and check the items
Flash Remoting, Installing Remoting, and Remoting Part 2. Probably the
last one is the only one of any use to you.
The three pages are quick and dirty help notes for my students who had
lots of ways to ask me follow on questions - in other words the notes
could be a lot better!
Lately, I have been thinking about abandoning Macromedia's code and just
using a NetConnection.
Yours truly,
-Brian
Michael D. Randolph wrote:
>The "Flash Remoting, The Definitive Guide," book has been a great
>resource for learning how to use Remoting with AS1. I want to dive
into
>learning the AS2 methods now...but a lot of things I'm trying don't
seem
>to be working. Are there any books out that cover Remoting w/ AS2?
>What about websites with tutorials? The documentation for the AS2
>classes doesn't seem complete, and mostly everything I try ends up not
>working. Any advice?
>
>
>
>Michael Randolph
>
>IMAGE PLANT
>
>(973) 244-9220
>
>mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org <mailto:mrandolph-PMb9m0z8LQpWk0Htik3J/w@public.gmane.org>
>
>
>
>
>
>-----------------------------------------------------------------------
-
>
>
>=-----------------------------------------------------------
>Supported by Fig Leaf Software - http://www.figleaf.com
>=-----------------------------------------------------------
>
>To change your subscription options or search the archive:
>http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>
--
________________________________________
______________________________
Brian Lesser
Assistant Director, Teaching and Technology Support
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario Phone: (416) 979-5000 ext. 6835
M5B 2K3 Fax: (416) 979-5220
Office: AB48D E-mail: blesser-6s6ziW1YCwCw5LPnMra/2Q@public.gmane.org
(Enter through LB66) Web: http://www.ryerson.ca/~blesser
________________________________________
______________________________
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
--------------------------------------------------------------------------------
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
|
|
|
|
|