ActionScript 3.0 :: Display User's Facebook Photo Albums On Flash?

Sep 20, 2011

I just had a simple question, is it possible to display a user's facebook photo albums on flash?
 
I have a flash site where i would like to include my albums, i knwo this means that the viewer needs to have a facebook account logged in

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Add Albums Section To Photo Gallery?

Jul 19, 2006

I wanted to use your gallery tut to create my own gallery for my website [URL] But I need to add a simple album section, how could I do that. For example you click on a textlink beside the gallery and the gallery will be filled with the images from the album, and if I add a new album folder this folder should appear
as a link beside the gallery. [URL]

View 1 Replies

Flex :: Using A Widget For Facebook Application - Get The Current User's Facebook ID?

Sep 24, 2009

I am using a Flex widget for my facebook application. How can I get the current user's facebook ID?

View 1 Replies

Flash :: Getting User's Friend From Facebook Using As3

Mar 16, 2010

i have seen in flash game that it retrive user's friend in same application.How is possible.I searched the code but i have not found yet.

View 2 Replies

Flash :: Take A Picture From User's Webcam Ala Facebook?

Sep 25, 2010

I didn't find a recent question so somethign might have changed:

there is any widget, ready to use, to integrate with my website in order for my users to take a picture of themselves ala Facebook when they register to my site? i guess is Flash/flex based

View 2 Replies

AS3 :: Flash - Get The User Wall Status In Facebook?

Jul 31, 2011

Can I get the user wall status in Facebook using as3? Using me/feed/...something ?

View 1 Replies

Flash :: Why Can't Log A User Out Of Facebook In An AIR Desktop Application

Sep 23, 2011

I'm building an AIR desktop app with facebook support using Adobe Flash builder. So far it's working alright, except for one detail, once a user logs in, that session stays open, even if the logout button is pressed. My logout code look like so:

protected function logout():void {
FacebookDesktop.logout(handleLogout, APP_ORIGIN);
}

I set APP_ORIGIN to "[URL]". I checked Adobe's documentation and they say: appOrigin:String (default = null) ” (Optional) The site url specified for your app. Required for clearing html window cookie. But I don't know what that means, what is the 'site url specified by my app'? Where do I get it? Sorry if this is a noob question.

View 1 Replies

ActionScript 3.0 :: Flash + Facebook - Get The User Name Properly

Jul 28, 2011

Lately I've been studying (or at least I've been trying to) the facebook api for flash. But I can not find good material or code examples. I've been reading this [URL] but there I can't find what I need. I just need to make possible for new users to loggin into my game (it's a MMO - sfs 2 + as3) with their facebook accont. Anyway the problem is that with this documentation I can't find not even how to get the user name properly. I'm completely lost and don't know what to do.

View 1 Replies

IDE :: Photo Gallery - User To Be Able To Click On A Photo For It To Appear In The Box Above

Jul 10, 2009

I have been searching for a particular photo gallery, and haven't got far. Here is an example of what I am looking for. With the example I wanting the user to be able to click on a photo for it to appear in the box above. I am looking for a tutorial, so I can customise to fit in my client's flash website.

View 2 Replies

Actionscript 3 :: Detect When User Likes (a Fan Of) Facebook Page In Flash?

Jun 3, 2011

Is there a way for a Flash Facebook app in an iFrame to detect if the user is a fan of the page using the Graph API for Actionscript 3? If not can I achieve the same goal using Javascript? without asking the user for permission (no access token required).

View 2 Replies

ActionScript 3.0 :: Flash - Enable The User To Share The Photos On Their Facebook Wall

Jun 3, 2011

I'm developping a flash photo gallery with deeplink and i would like to enable the user to share the photos on their facebook wall. I tryied to find some tutorials explaining how to achieve that but unfortunatly I had no luck. The ones I found don't enable me to customize the wall post (these fields: title, description, url and image)

View 2 Replies

ActionScript 3.0 :: Twitter In Flash - User Photo / Avatar

Aug 30, 2011

I have seen numerous tutorials to retrieve a feed. I can't however see anything on how to get the users avatar to display. Is it even possible in Flash?

View 1 Replies

ActionScript 2.0 :: Upload A Photo To Facebook?

Sep 25, 2010

I'm looking for the simplest way to upload a photo from a gallery on my server (i.e. I have the url to the jpg) to Facebook. The project is built in as2, and for hte life of me I can not find a solution.

I was thinking I could use a php script to upload it to facebook, but all the examples I find online are broken or too old. I could post the url to the php script and then the php could handle the rest.

View 1 Replies

Flash :: Adobe Facebook API Facebook.login VS Facebook.ui Popups?

Oct 24, 2010

I'm currently building an application using the Adobe Facebook API and I've run into an issue where for the login method the Facebook login popup displays but when doing a Facebook share/post the popup is blocked.

This code works fine and displays me a Facebook login popup without question (Firefox):

var permissions:Array = ['publish_stream'];

Facebook.login( onFacebookLogin, { perms:permissions.join(',') } );

However, the following code running in the same application throws up a popup blocker (again Firefox):

Facebook.ui( "stream.publish", "popup", params );

Does anyone know of a work around this issue to make the share popup come up just like the login popup?

View 2 Replies

PHP :: Upload Photo To Facebook Album Without Saving On Server?

Mar 12, 2010

I'm using CURL to upload files to a service. Currently I'm getting the file content with $GLOBALS["HTTP_RAW_POST_DATA"] then save it on my server. After that, I'm using CURLOPT_POSTFIELDS with the file's full path. Is there a way to send the file content directly, without saving it on my server, as if I saved it? Or is there a way to upload a Photo from a flash app to facebook album, without saving it on the server?

View 1 Replies

Actionscript 3 :: Sharing A Link And Or Uploading A Photo On Facebook?

Jun 23, 2010

Developing a flash based image editing application and I want to be able to share and or save edited images to facebook.

Do I need to get a API Key to upload photos? What if I simply want to share a link with my friends? Do I still need an API key?

View 1 Replies

AS3 :: Can't Retrieve A Facebook User's Friends List?

Apr 20, 2011

i am trying to write a facebook app using as3 and the facebook-actionscipt graph api library i am having trouble getting a user's friends list, while i have no problem getting a user's other data (favorite movies, for example)

[code]...

ok after doing some more searching i find that getting friends-of-friends with any api is impossible this is very interesting - you can access friends-of-friends manually as a facebook user, but not automaticallythis means it is not a privacy issue at all - it is something Facebook wants to keep for itself only - for the "People You May Know" section in the facebook page

View 1 Replies

Actionscript 3 :: Facebook Api: GetSession() Returns Null For User Name

Nov 2, 2010

I'm starting a facebook app using iframe method.I am using flex and so far I am able to connect to fb (login and out). Now I am trying to retrieve current logged in user name. In the document I see this function is what I need. Facebook.getSession().A tutorial in adobe site uses desktop api and it works for desktop (AIR app) but not for web app. (yes, i fixed Facebook.getSession() instead of FacebookDesktop.getSession(); Also, I am able to see the uid but not the user. User returns null. uid is a string and user is an object. But on the desktop app,FacebookDesktop.getSession().user.name returns the name perfectly. but on the web, it does not.

View 2 Replies

Facebook :: Displaying MY Public Wall Using AS3 Without User Login

Nov 7, 2011

All I want is to have the latest 3 or so posts from my clients Facebook page to populate and animate in a screensaver that I am building using Flash (AS3).

So far, every time I try to bring anything in, it requires a complete oAuth login and account link, but it's only a one way exchange (read-only, absolutely no writing, posting or even linking, since it's a screensaver) I'm not even sure the client wants pictures or anything.

I am currently trying to use the facebook-actionscript-api, but there isn't an option for the "App Login" type of Authentication that would solve most of my problems.

View 1 Replies

ActionScript 2.0 :: XML / Flash Photo Gallery Tutorial - Load The Swf File Into Another Movie The Dynamic Text Will Not Display

Jan 6, 2007

I'm having some problems with the XML/FLASH Photo Gallery Tutorial ([URL]). When I load the swf file into another movie the dynamic text will not display. Any thoughts to why this is happening.

View 1 Replies

Flash :: Professional - Display A Still Image If User Cannot See

Apr 5, 2010

I am looking at all the various Flash detectors and am a bit overwhelmed. Most of the info I find is from 2008 and before so I am afraid it is outdated. I want to be able to detect if a user has flash plugin and if not then display a still image. I am concerned that I-phone users are not seeing the flash embed in my site.

View 1 Replies

Facebook :: Prompting The User To Send An Application Request To A Friend?

Apr 6, 2012

I have a facebook canvas app (flash).

I have a user who is visiting the app.

I have a button that the user clicks for the purpose of inviting a friend to the app.I understand that this can be done via the js sdk: http[url].....However I am already using the facebook_as3_api, and I would prefer to avoid using multiple facebook api's. Does the facebook_as3_api have a way of doing this, and if not, why not?

View 1 Replies

C# :: Get User's Session Outside Of Facebook Application From A Windows Service Or Desktop App

Jan 17, 2011

I've a flash facebook application, i can take the session info from flash client and send the session information to server.

I need to check if the user connected to the server via facebook application or not. That's why i need to get the user's session from facebook page directly by my server.

How can i do it? I use C# for all database and communication system. Flash interface does only application responsibilities.

View 1 Replies

Actionscript 3 :: Use The Facebook Graph API To Change The Wallpaper On A User Created Page?

Jul 22, 2011

I can't set a picture as a user-created page wallpaper and i also cant "like" this same page using a Facebook Desktop Graph API request.how to use the Facebook Graph API for AS3 to change the wallpaper on a user created page and also set the "like" status for that page of a user? Is this even possible?

View 1 Replies

ActionScript 2.0 :: Xml Gallery/albums/slideshow On/off?

Mar 10, 2006

anyone know of a good tutorial with more albums, slideshow on/off, setting timer, and maybe transitions. Could some off this also be set in a config.file?

View 1 Replies

ActionScript 1/2 :: Dynamically Display User's City In A Flash Banner?

Aug 25, 2010

We see this more and more in online banner advertsiments...How can we display the user's city based on his location?

View 6 Replies

Flash :: Facebook Connect And Actionscript - Make All Of The Facebook API Calls Via JavaScript

Jun 1, 2009

I'm trying to determine the practical difference between using the com.facebook.session.WebSession and com.facebook.session.JSSession. The documentation ([URL]) has more around WebSession - but the example I have which is closest to what solution I'm trying to implement uses JSSession and it looks like I could avoid all of the JavaScript pass-through & ExternalInterface calls I'm making. It appears that the benefit of using this new ActionScript Facebook API is to avoid having to make all of the Facebook calls via JavaScript.

View 5 Replies

Facebook :: Flash - Connecting To Facebook From A Remote Website With OAuth2?

Jan 13, 2012

i need to connect to have a button on my website that connects to facebook (if not already logged in) and posts to the users wall.I've only done this from within an iFrame - do i still need AppId etc etc?

View 1 Replies

Facebook :: Flash - Post Swf With Parameters To Facebook Via Application?

Apr 4, 2012

I have a facebook application where the user choose 4 of his friends and then it creates a video (swf) with the pictures of your friends in it (loaded via xml). So I need to share this video on the user timeline. Everything works fine but the video is not embedded in the post on his timeline, there is only a post with the link to the page in it.The weird thing is, if I post the url directly on my timeline, the video is embedded, but not if the same link is posted via the application.here is my code called by the share button in js :

function postToFeed() {
var obj = {
method: 'feed',[code].........

View 1 Replies

Flash :: Facebook :: Facebook Pages And Content - Autoplay?

Dec 6, 2011

I've recently used the 'Static HTML' application to add autoplaying flash content to a Facebook Page.Nothing too fancy, no sound, and only a few secs long. Now, Facebook say:-"Apps on Pages must not host media that plays automatically without a user's interaction."

What do they mean by 'Media' exactly? I can understand a ban on autoplaying audio content but does the ban extend to something as harmless as an animated GIF? Or more to the point, does an autoplaying .swf file fall under this?

Lastly, what course of action would Facebook take if I did violate this rule? Would they issue a warning (giving me an opportunity to remove the 'offending' item) or would they just shut down my page without any consultation?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved