I'm using the following code to post a SWF to the users wall. Everything works and looks good, except on the new timeline the SWF goes over the boundaries of the post column. It looks like FB is setting the width to 398px, no matter what I do. In AS3 I set the SWF to no scale (stage.scaleMode = StageScaleMode.NO_SCALE;), but FB doesn't care. So I was wondering if I could set the width and height explicitly. I looked in the api and didn't find anything for 'feed' method.
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
link: link_url,
name: title,
caption: 'Blah blah',
description: body,
picture: image_url,
source: 'http://pathto.com/player.swf'
};
function callback(response) {
//document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}