Actionscript 3 :: Post Fla To Youtube?
Sep 9, 2009may i know is it possible to post fla file pro grammatically to youtube? can elaborate how?
View 1 Repliesmay i know is it possible to post fla file pro grammatically to youtube? can elaborate how?
View 1 RepliesIm building a reservation form, using actionscript and php. I use sendAndLoad to send variables to php via POST, which returns a different HTTP POST response in case of sucess or not.
Is there anyway to "read" HTTP POST responses with actionscript?
I am making dynamic post values to post to a URL.
[Code]...
Maybe I am doing this the hard way with eval, is there an easier way, such as passing an array of post variables?
I have trying to use this sample FLA from google to embed youtube videos in my flash doc but, when I publish the file it comes up blank with no errors.
View 5 RepliesI wanted to know if this is possible. On my site I want to play youtube videos from my account from youtube. Basically, there will be an empty text box. Users will type in some text. Click on a button to search and play a random video based off tags associated with a video from my youtube account with the words from the text box? And if they did the same search it wouldn't play the same video again?
View 0 Repliesis it possible to display youtube's like/dislike buttons by using google's api (or any other api) for as3 ?URL...
View 1 RepliesI'm writing a Flex application that uses HTTPService to communicate with a php script, in order to do a query on a database.Everything works fine if i use a GET request, but it doesn't work with POST. For some odd reason, the php script is actually receiving a GET request instead of POST. Also, it seems not to carry the parameters that i sent from the flex app.Here is a part of the Flex code:
<mx:HTTPService id="userRequest" url="url"
useProxy="false" method="POST" result="checkTransmissionCode()">
<s:request xmlns="">[code]....
I've already found some other threads of people with a similar problem, but none of them helped me with this...
Something like loading an xml list of song names, which when clicked, open a youtube player inside a movie clip nearby... Given that I have an XML file such as this..
<?xml version="1.0" encoding="iso-8859-1"?> <news>
<item date="02/02/2007"> <title>news2</title> <youtubelink>http://link</youtubelink> </item>
I know how to load the title into a list component, however, how do you make each list entry actually open its corresponding link?
[code]....
I have been stuck on this problem for about 2 days now and have no idea. can anyone tell me how i can embed a youtube video in my flash website (AS3, CS4)
If that is not possible i have found a program called videolightbox, but that is in html, is there a way of putting XHTML 1.0 code into flash?
I am loading a youtube video inside a AS3 app, and want the youtube logo not to be visible. I have used modestbranding but still it shows the logo. Below is the code I am using.
[Code]...
Would it be possible to embed an external .SWF file with a Youtube video/SWF? For example: http:[url]....
View 1 RepliesI have a very simple question. Does youtube count "views" if put a YT video into a swf, using their Flash API? I can't seem to find anyplace that explains how views are counted.
View 1 RepliesI'm wondering how [URL] this site works? Is it possible to embed the swf to youtube? I check developer guide on youtube but there isn't any guideline for that.
View 2 RepliesI was making a player which calls videos from youtube and displays it in my flash playback component. The script loads the videos fine but when i want the flash to load the same video ID from an external XML data source, it loads the youtube player API but not the video. Here is the code
Security.allowDomain("www.youtube.com");
Security.allowDomain("*");
var my_player:Object;
var my_loader:Loader = new Loader();
my_loader.load(new URLRequest("[URL]"));
[Code] .....
This script loads the video from youtube.com with an specific ID which i have defined at
my_player.cueVideoById("53OyPYa7SEI",0)
Later I defined and XML file called "videos.xml" where I passed the youtube link and tried to call the video from that xml file in flash. But the problem comes there. Here is the xml code
<?xml version="1.0" encoding="ISO-8859-1" ?>
<videos>
<VIDEO url="[URL]" id=1/>
<VIDEO url="[URL]" id=2/>
</videos>
How to call the video from an XML file?
I am using IE 7.0. i want to keep flv files from youtube on my computer so I copy them from IE cache. Unfortunately, it seems that for some videos, the files are not available.
View 5 RepliesIs it possible to pull FLV's from a playlist in youtube?, and play them in custom build FLV player (not in youtubes api)?
View 0 RepliesI want to be able to embed a youtube video into a movie clip on stage, and be able to edit which video is embedded via XML. This functionality is needed by my client so they don't have to open the thing in Flash.
So far I've managed to embed a video with this AS code:
[Code]...
This works great, however obviously in order to change the video you have to open Flash and edit the AS. I have some experience with XML, however I don't know where to start in terms of embedding a youtube vid.
P.S I've had to change the URLs in the post as I'm not allowed to post links on this forum yet.
I have a site up and running... The youtube api worked fine until yesterday. Videos won't play. Youtube doesn't understand the video id being sent to it. Did google change the API?
View 1 RepliesI have been hunting for quite some time now and I can not find anyone that knows how to create a preview image for an FLV. I.E. youtube, they show you a part of the clip you are about to watch and not the first frame.
View 7 RepliesI want to be able to add youtube videos on my site. The site is built using as2 xml etc...Maby there is some sort of a .swf youtube player that i can load into the site?I can provide the code & files if necessary but for now heres the site:flaw.seIf this is a stupid question and takes to much effort then im willing to pay a little sum..Beside that i want the pictures to stop scrolling 20 pixels from the right side of the webbrowser. I did get some help and added:[code]But then it stoped directly after the picture without any space. And last bit of the scroller dident really work right.
View 1 RepliesPHP Code:
var req:URLRequest = new URLRequest ("http://localhost/SE/processimage.php");
var vars:URLVariables = new URLVariables ();
vars.awd = "awd";
[code]...
When I load that url the variable is sent using the GET method instead. It appears in the url in the browser and the browser shows an error first then "awd", meaning it worked for $_GET. I tried both req.methods and tried adding "_self" and "_blank" and also on different browsers. It still uses GET.
I need to post a couple of screen shots to illustrate a tweener issue.How do I put inline images in a post?do you attach them, then use the IMG tag?if attached do you just use the filename in the tags?
View 2 RepliesI have a flash site which draws from an XML file for loading images. The jpgs work fine but nothing shows up when I try to load the PNG files. Does flash not support it?
View 1 RepliesHow can I post a URL, for example[url]...
Without opening another window or refreshing the page? (within the flash movie)
I'm writing in a programming language, that is then passing variables to PHP, and I then need Flash to pick those variables up and do something with their data. Is there a way to get PHP to post into flash? rather than having flash load variables from a static page? If not what would the best option be? a text file?
View 5 Replieshow can I get external variables via POST?
I mean, i have an ASP page that has 5 variables. I need to know how to make AS3 get'em.
So I googled this problem and found like 3 threads with the exact same problem and what fixed their problem didn't fix mine, plus those threads are pretty dated. So I thought I'd get a more up to date answer.
[Code]...
When I load that url the variable is sent using the GET method instead. It appears in the url in the browser and the browser shows an error first then "awd", meaning it worked for $_GET. I tried both req.methods and tried adding "_self" and "_blank" and also on different browsers. It still uses GET.
how do i go about removing a post?
View 1 RepliesI have a form in flash downloaded from this tutorial: [URL] with action script assigned to my button: on (release) [URL] However, when I submit the form, the form data is sent via GET not POST method and the url looks like: [URL]
View 1 RepliesExample of code which would be used to send a bunch of variables to a PHP script via flashThis would require the PHP script to load when the data is sent.I want to use this for a Flash event calender which triggers more information about the event to appear in a HTML area of the page when an event is clicked on. The PHP file would be the same file that the SWF is embeded in so the FLASH file would reload the page with the variable sent to the PHP. The PHP would use this variable to select the right content from a MySQL database.
View 13 Replies