Hey all…
I’m having problems sending variables inbetween two SWF’s on the same HTML page using the LocalConnection Object. Any help would be awesome.
Here’s the code:
**// Main .swf AS with send()
OwnerVar, InterestVar, have been defined throught other listener functions.
**
function Click () {
var lcSender:LocalConnection = new LocalConnection();
var ownerValue = (OwnerVar);
var interestValue = (InterestVar);
var townValue = (TownVar);
var establishedValue = (EstablishedVar);
var acreageValue = (AcreageVar);
var shorelineValue = (ShorelineVar);
var thumbnailValue = (ThumbnailVar);
lcSender.send(“aConnection”, “someMethod”, ownerValue, interestValue, townValue, establishedValue, acreageValue, shorelineValue, thumbnailValue);
trace(“send occured”);
}
btn_1.onRelease = function () {
Click();
}
// Receiving .swf displaying ownerValue in result_txt (shows up undefined)
var lcReceiver:LocalConnection = new LocalConnection();
lcReceiver.someMethod = function(ownerValue, interestValue, townValue, establishedValue, acreageValue, shorelineValue, thumbnailValue){
trace(“method called”);
trace(ownerValue);
trace(interestValue);
trace(townValue);
trace(establishedValue);
trace(acreageValue);
trace(shorelineValue);
trace(thumbnailValue);
};
lcReceiver.connect(aConnection);
result_txt.htmlText = this.ownerValue;
result_txt.border = true;
result_txt.wordWrap = true;