Quicky

Hi Im currently bulding an over head map of an ‘ancient’ saltworks in northwich, it basically works in the sense you hover on a building and then this wil play a little intro clip and then hit a frame which has text boxes so that it can then display text from the database… my code seems straightforward as i only want to get the one button working… so i can then sort the rest… sounds logical heh!..

what i am sending to the movie is…

&House1=Pan+House+1&Des1=desciption+for+house+1

and my AS from there goes…

loadVariables("GetDetails.asp", 0);

_root.mc_hold.strName = House1;
_root.mc_hold.strNotes = Des1;

btn1.onRollOver = function() {
    _root.btn1.gotoAndPlay("start");
    btn1.onRollOut = function() {
        _root.btn1.gotoAndPlay("end");
        btn1.onPress = function() {
            _root.mc_hold.gotoAndPlay("start");
        };
    };
};

but that doesnt seem to want to populate me textboxes anyone help?