AS3 中的 Facebook 数据到 DisplayObject
是否可以将 facebook 数据(例如 user_pic)转换为 DisplayObject,以便更容易操作? 我想做的是,当用户在我的网站中执行 FacebookConnect 操作时,他们可以在将图像提交到图库中之前缩放图像(例如使用转换工具)。
Is it possible to convert facebook data (ex. user_pic) into a DisplayObject so I can be easier to manipulate?
What I m trying to do is when users do FacebookConnect in my site to let them have the possibility to scale their image (like transform tool usage) before submit it in a gallery.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更新:事实证明,OP 已经在
UILoader
中拥有该图像。在这种情况下,您可以使用UILoader
的content
属性来访问它。您可以使用 Loader 对象并对其进行操作,前提是图像托管在允许来自您的域的 SWF 的服务器中使用适当的
crossdomain.xml
访问内容。如果您知道策略文件的位置,请调用 Security.loadPoliCyFile 在加载图像之前。 Flash 播放器将尝试从默认位置
/crossdomain.xml
加载它Update: It turns out that OP already has the image in a
UILoader
. In that case, you can access it using thecontent
property ofUILoader
You can load the user picture to your SWF using a Loader object and manipulate it, provided the image is hosted in a sever that allows SWFs from your domain to access contents using appropriate
crossdomain.xml
.If you know the location of policy file, call Security.loadPoliCyFile before loading image. Flash player will try to load it from the default location
/crossdomain.xml