pseudocode:
creationComplete
var ipAddress:String
ipAddress = getUserIP()
function getuserIP():String{
// use Services to go out to ColdFusion which can tell me user IP
return IP
}
But Cairngorm encapsulates "actions" into commands which are driven by
an event and a delegate. So how does it handle examples like the one
above? Should I create a getIP event, which is dispatched from
creationComplete, and use the standard command/delegate path. If the
event is not necessary, and it still makes sense to put the "action"
in a command, how would that command get activated without the
Cairngorm event process? I know what I mean <grin>. TIA,
Mic.