flash – 如何在AS3中创建共享按钮

前端之家收集整理的这篇文章主要介绍了flash – 如何在AS3中创建共享按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道是否有人知道创建AS3 Facebook分享按钮的好方法?我需要能够自定义标题,描述和图片.谢谢!

解决方法

看: http://www.facebook.com/facebook-widgets/share.php

http://www.facebook.com/sharer.PHP?u=<url>&t=<title>

在Flash中:

import flash.net.navigateToURL;
import flash.net.URLVariables;
import flash.net.URLRequest;
import flash.net.URLRequestMethod;

share_btn.addEventListener(MouseEvent.CLICK,shareClickHandler);

function shareClickHandler(evt:MouseEvent):void
{
    var vaRSShare:URLVariables = new URLVariables();
    vaRSShare.u = 'http://domain.com/pageN.html';
    vaRSShare.t = 'Title Page';

    var urlFacebookShare:URLRequest = new URLRequest('http://www.facebook.com/sharer.PHP');
    urlFacebookShare.data = vaRSShare;
    urlFacebookShare.method = URLRequestMethod.GET;

    navigateToURL(urlFacebookShare,'_blank');
}

为了使用图片,请添加以下元标记

<Meta name="title" content="my title" />
<Meta name="description" content="my description" />
<link rel="image_src" href="images/thumbnail_image.jpg" />

欲了解更多信息:https://developers.facebook.com/docs/opengraph/

猜你在找的Flash相关文章