Facebook :: Flash App Buttons Don't Work

Aug 29, 2011

I have this app in Facebook:URL...The thing is, in Mac and some Windows nav (like Chrome or Firefox), the buttons in this app don't work. In this URL, you can see the correct functionality of this buttons:URL...

View 1 Replies


Similar Posts:


AS3 :: Flash - Facebook.ui Callback Doesn't Work

Aug 31, 2011

Today I'm going to use this method:

vardataObject:Object = {...}
Facebook.ui("stream.publish", dataObject, cb, "iframe");
function cb(res:Object):void
{
...do something...
}

I always use this method and it always work. But today the callback doesn't work!I'm using the API 1_6, but I've tryed with API 1_7 too.

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

ActionScript 2.0 :: Facebook Share Buttons Within Flash?

Sep 16, 2010

Anyone have experience with this? I'm not much of a javascript person. This would be the code you could use on an html page.

I fugure you somehow have to have flash read the js file from fbook and then pass the share_url variable to it?

[Code]...

View 3 Replies

Actionscript 3 :: Creating A Custom, Dynamic Flash Button That Will Work In Facebook Shares

Jan 17, 2011

I've had an issue with using Facebook's Share feature.

The user experience on the shared content below is just completely unclear (even when I tested some clarified language: e.g. "click here"). Users simply don't know what to do: they often either click "Like," or they comment with something along the lines of "I support you."

According to the documentation, it is possible to share Flash content in these posts. I'm hoping I can create a "Support" button as an SWF button.

Is it possible to dynamically create such an SWF with a custom *href? Will my use case work on Facebook?

View 1 Replies

Flash Buttons - Manu Buttons Does Not Work On Some Computers ?

Dec 4, 2009

I'm having problems with the flash buttons on the flash website i made for a client. or some reason the buttons in the top and bottom menu work on some people's computers but on some they don't. I don't know what to do, i had this code for all the buttons,

on (release) {
getURL("http://legaldepartment.ca/","_self");
}

and they worked on my computer but on others the buttons didn't work at all so i added this code to each button also

on(press) {
_root.getURL("http://legaldepartment.ca/","self");
}

and they still work on my computer and some other people's computers but still some they don't work on some people's computers.

View 2 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

Flex :: Facebook API Init() Not Work?

Dec 9, 2010

I am calling [url]...........to log in to facebook using the actionscript api (as explained in this tutorial: http:[url]...... But, it does not seem to do anything.Looking at the API source, the only call that is made to JS is

ExternalInterface.call('FBAS.init', JSON.encode(options));

The two javascript libraries which are required are: http:[url].....

However, i cannot find any reference to FBAS in these libraries. Am I even using the correct libraries? Is there another reason I have missed as to why FBAS doesnt exist? or even why calling Facebook.init() does nothing?

View 6 Replies

Facebook :: Cannot Get Extended Permissions To Work

Nov 4, 2011

I'm working with the Facebook Actionscript API (no PHP or Javascript), and I'm having trouble granting access to extended permissions, like publish_actions. I'm using the following login:
var opts:Object = {perms:'read_stream,publish_actions,offline_access,user_photos'};
Facebook.login(handleLogin, opts);

I get two "Request for Permission" windows. The first says my app needs access to "Your Photos". The second says my app would like permission to "Access posts in your News Feed" and "Access your data anytime". Why can't I request access to "publish_actions"? It looks like there may be two permissions levels - regular and "extended". It looks like extended permissions may require a "scope" parameter, instead of "perms". How/where to use the "scope" parameter.

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

ActionScript 2.0 :: Why Buttons Only Work In Flash V6

May 8, 2009

Attached is an FLA with an image that moves onto the stage. There are 5 button MCs which are supposed to move the image left/right. Works great, only if the SWF is published for Version 6. However, published as a version 8 swf, the buttons no longer create motion. On a different thread, somebody published it as a version 8 and 9 SWF and said the buttons worked perfectly..FYI, clicking into the , imageStrip_mc is an Actions layer, as well as the Actions on the root timeline.I am using Mac OS X Flash CS 3 - v 9.0 - using ActionScript 2

View 2 Replies

ActionScript 3.0 :: Flash Buttons Do Not Work

Sep 3, 2010

iv created a flash gallery using AS3. im having it self study so im not sure how well to manipulate the codes. what i did was place some codes on each frame where my next/previous buttons are place.. it works fine locally, but when i upload it online, it seems not to work and the whole frame runs when it should stop frame by frame.
 
(example code below)
 
stop(); 
btn_nstand2.addEventListener(MouseEvent.CLICK, onstudio3);
function onstudio3(event:MouseEvent):void {    gotoAndPlay("studio3");}

[code]....

View 6 Replies

Actionscript 3.0 :: Flash Buttons That Only Work Once?

Feb 16, 2009

have a simple flash file that allows a user to click on 12 different buttons, each of which will display an image. Once the image is displayed there is a "close" button that appears which will take the user back to the main screen. The file works fine, except that once a user has opened and closed an image, they are brought back to the main screen where all of the other buttons stop working

View 2 Replies

Actionscript 2.0 :: CS4 Flash Buttons Won't Work?

Sep 17, 2009

building a website but to run a control interface for av... the companies component is in AS2.. Have CS4 Flash - built buttons (and cool ones they are) in a AS2 environment. I cannot control sections of the timeline and I now know I will not be able send control to my devices as the buttons require different code (I think) Tried standard library buttons and no problem.. I believe I would need eventlisteners etc.. tried for the last 2 days to make it work.. I don't drink so my last resort.

I want to click on the buttons (separate layer) and go to a section on my timeline.

View 1 Replies

ActionScript 2.0 :: Movie Clip Buttons - Target / Make The Buttons On The Other Frames Work

Aug 7, 2009

I have a movie clip with 15 frames. Each frame has buttons on it (mc's)... I was going to put the actions on the main timeline/stage and navigate within the MC from the main timeline. Is that possible? I can get the buttons on the first frame of the MC to work, but I can't seem to figure out how to target/make the buttons on the other frames work? I was thinking I could identify the path of the MC with the frame labels, but that doesn't seem to work. like: _root.RMChanger.(frame label).buttonOnFrame = function

I have to move a text box in and out over the MC backgrounds on the main stage... which is why I was thinking to do it this way? I've been switching back and forth bwtween AS2.0 and 3.0

View 9 Replies

ActionScript 2.0 :: Get The Mc To Move But The Buttons Remain Inactive And Also The Rollover States On The Buttons Don't Work

Jul 8, 2005

I am having trouble with a job I am doing at the moment which has an mc with buttons within it. I want it so that when I roll over the mc it tweens from a small version to a larger version, and on this mc there are some buttons. At the moment I can get the mc to move but the buttons remain inactive and also the rollover states on the buttons don't work. I have attached a simpler version of what I am trying to do to this post.

View 3 Replies

Professional :: Can't Customize Flash Buttons To Work

Mar 29, 2011

I am using Flash CS5. In flash the program has a set of buttons already in a folder within the program so you can use them for your website and projects. For those that know the buttons most of them have a text that says "enter". What I have done is dragged the button to my stage and double clicked on it so I can edit it. From there I change the text from enter to something else like say "home". My problem is that when I click duplicate or make a copy of that button and go to change the text it changes the text for my first button too.
 
So I have my first button that says "home". My second one is going to say "pictures" but when I change the text of my second button to pictures it automatically changes the text of my first button from home to pictures. It seems that the only way I can get my buttons to work is if each button has the same exact text and if I change the text to one button it changes the text to all my buttons and makes it all the same text. How can I fix this so each button has a different text? I have a layer on my main timeline that is called buttons and all my buttons are on there. I am using these buttons for my flash website project but instead of creating them myself I used the ones flash had because I found them a bit more stylish for my taste.

View 5 Replies

ActionScript 2.0 :: Scrolling Flash But Buttons Don't Work?

Feb 15, 2010

was able to make it scroll with the location of the mouse but with the buttons working now. Each img has a rollover and i can't seem to get into it i just wonder if its the coding

View 0 Replies

Actionscript 2.0 :: Flash Buttons Didn't Work At All

Dec 4, 2009

I'm having problems with the flash buttons on the flash website i made for a client. for some reason the buttons in the top and bottom menu work on some people's computers but on some they don't. I don't know what to do, i had this code for all the buttons,

[Code]...

View 6 Replies

ActionScript 3.0 :: Flash Buttons Work In Firefox But Not IE?

Feb 1, 2009

I just finished my first website using AS3. I am using buttons to access to the different section of the site.

There are working perfectly in Firefox but not in IE and Opera.

Here is the website address: [URL] (the site is in French, but you can understand where to click)

View 8 Replies

Flash :: Buttons Work On Website But Banner Doesnt?

May 23, 2011

I have been building a website in dreamweaver, but have flash buttons which work fine. But the banner I have made in the page just has a white background. When I export it in flash it works, and when I preview in the dreamweaver browser it still works. I do not know what I have done wrong. Is the coding in the server wrong for the flash?

View 2 Replies

Flash :: IDE - Buttons Don't Work 2.0 - Corrent Text To Display

May 3, 2009

I have just started messing around with flash. I am trying to make a very simple website, it has 4 buttons and 4 sets or text. you have home, about, camp and contact. when someone clicks on the text i want the corrent text to display. My code 2.0 :

[Code]...

View 1 Replies

ActionScript 1/2 :: 2 Buttons Won't Work That Were Created Exactly Like Many Others That Work

Jun 1, 2011

I am using Flash CS4 with actionscript 2 to create an interacitve portfolio.I have 2 text buttons that work when I test them with "enable simple buttons." When I publish to IE these buttons won't work.  I have created over 50 buttons using the same methods, they all work.

View 8 Replies

Get Flash Buttons To Work...'Cannot Find Path' Flash MX 2004?

May 7, 2009

I am trying to get the flash buttons for my website to work, but every time I do the getURL thing it keeps saying 'Cannot find(directory)'. The website is offline and I'm using Macromedia Flash MX 2004, I also might be able to use Flash 8 but these are the only two versions I have access to.The action script for the button is:
 
on(release){getURL("..********(Website directory)(sub directory)(Website page).html")}
 
I am making the website in Dreamweaver 8 and this is really holding me back as it's nearly finished but the buttons still don't work.

View 4 Replies

Professional :: Make Buttons Work In Drop Down Movieclip In Flash?

Feb 17, 2010

I am trying to make an index page with buttons for a photography site.the entire page is built in flash so far. I have created a drop down menu that is a Movieclip with 5 buttons.I can not seem to assign an external web page to each buttons that are under the movie clip drop down menu.   Is this a possible? The Movie clip is run by mouse-over the word "studio Gallery" button. This drops down the 5 gallerbuttons (Portrait, children, wedding, Artistic Babies, etc...).  In Flash 8 Pro I know I can assign an external web page named children on the main page but how do I assign these to the buttons in the drop down once the movieclip is made.  Is this where I need to use folders with extra layers in the folder to make it work?

View 6 Replies

Flash :: Why The Buttons Banner Created In CS4 Work When Preview It In HTML In The CS4 Program

Jul 13, 2009

why the buttons in the flash banner I created in Flash CS4 work when I preview it in either Flash or HTML in the Flash CS4 program, but when I go to load it into a html document in Dreamweaver CS4 and preview it in a firefox or IE browser, the banner comes up fine, but the buttons this time will not work. The buttons are displayed with there animation and sound, but the links will not work. I have tried scripts in AS2 and AS3.

View 3 Replies

Actionscript 3 :: Facebook Login Handler Doesn't Get Fired In Flex4 Facebook API?

Mar 13, 2011

I have literally spent HOURS trying to solve this mystery... but simply can't seem to get hold of it.
I am using the same code lines (literally!) as the example here (official adobe tutorial) and I get different result.

[Code]...

Everything works fine, i.e. everything till it is time to fire the loggedin event. I get asked to log in and all permissions are asked correctly. After I log myself in to facebook, the loggedin event doesn't fire. Is there any way of solving this problem??

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







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