Data Integration :: Xml Video Playlist - List To Change Based On Whose Accessing The Player
Jul 3, 2007
I have a flash video player whose playlist is based off an xml list. Now, I need this list to change based on whose accesing the player. So: Client gets a link, clicks on link, player shows their video. Another client clicks on another link, player shows their video,
View 1 Replies
Similar Posts:
Jul 7, 2009
I am a fairly new as3 user and am working on a video player that loads an xml file into a URLloader as a playlist. I have everything working but I want to add a few buttons to change the content of the playlist. All of the data will come from the same xml document, so I don't think i have to reload the xml. I can get the content to load when the button is pushed, but it jsut adds to the previous content instead of replacing i. How to clear the content before adding?
Here is my code (that relates to this) so far....
public class playlist_controller extends MovieClip {
private var xml_loader:URLLoader;
public function playlist_controller():void {
////load the xml file
xml_loader = new URLLoader();
[Code] .....
View 2 Replies
Jul 8, 2009
I'm wanting to create a xml based video playlist like the one on the link below. I've searched Flashkit and the web and found a few things, but nothing really close in operation or that I could use.
View 3 Replies
Jul 10, 2009
I've watched the tutorial on how to build an XML Video Playlist using the UI List Component. I'm wondering if there's a way instead to use a dynamic text box, or some other solution that doesn't require a component. I have a video object and a dynamic text box that successfully loads a videolist.xml file, and displays the contents (title, location, date) for each <video> node, separated by line breaks. Now I'd like to make the contents of each <video> node a link, which loads a new movie into the player. If this can't be done with a dynamic text box, can it be done some other way, not involving the use of a component?
View 5 Replies
Jul 12, 2009
I have succesfully added the Flash MP3 Player and the Video Playlist to my flash site.The music in the MP3 player works fine, so does the video playlist but the problem is i have to pause the music before going to the video page or else they play together.I want to be able to automatically pause the music when i hit the button to go to the video page and when i click a button to go to a different page i want the video to stop or pause and the music to resume playing.Heres the code for the mp3 player and the Video code is further down:
Code: Select all// Setup sound object
var s:Sound = new Sound();
s.onSoundComplete = playSong;[code]..........
View 13 Replies
Jun 28, 2009
I'm looking for a flash video player and a flash audio player with playlist that I can customize.
View 2 Replies
Feb 26, 2007
I'm having trouble retrieving the value of a multi-select list component. It always traces the last value selected, but I need to trace all values to parse the data.
I've been using trace(myList.value);
View 2 Replies
Nov 18, 2010
I'm having trouble retrieving the value of a multi-selectlist component. It always traces the last value selected, but Ineed to trace all values to parse the data
View 8 Replies
Jan 1, 2010
I have a video player that is currently using XML for its video library which is all fine and dandy. Now I have some developers working on a CMS type page in PHP that is going to hopefully pass some sort of information to my player that will let it know where the video is stored on our server. Is there a way to do this without using FMS? If so does anyone have ideas where I can find the information for it.
View 2 Replies
Jul 20, 2006
I have No problems inserting data from flash to PHP into MySQL,it's sendind them back properlly.All I'd like to see happen is for one row of data to be inserted into a dynamic text field. here's what i've got if i access this php file, it prints out a vertical list from
a single MySQL row,I was happy.
$query = "select row from table";
$result = mysql_query($query, $db);
while($row = mysql_fetch_row($result))[code]...
and Instead of the vertical list (which i would love to see)i get an unparsed data array.
View 2 Replies
Apr 23, 2010
I'm wondering if anyone has figured out how to pull data from a column in a SharePoint 2007 list to be able to dyamically generate a reaction in a flash object.Our designer created a dashboard of thermometers for our projects that use two variables, % complete and status (green, yellow, red, blue).
As the end user, I want to be able to update my project in my SharePoint list and have it so that my updates automatically populate that flash based dashboard.Right now, he's using an XML document that is stored in a folder on our SharePoint site and then simply updating the XML file when there are changes.It would be ideal to pull this data from the list rather than having to update and then upload the xml document to the SharePoint site.
View 1 Replies
Mar 28, 2009
I have made my own video player with some help from the gotoandlearn tutorials. I now want to be able to quickly switch between different videos without using the list component, just a button on the stage. I have it half working, the new video loads and plays but the old video freezes and stays on top. How do I stop this from happening.The video Player code
Code: Select allfunction newMovie()
{
ns.play(file);[code].......
View 1 Replies
Jul 6, 2007
I'm using the XML Connector to bind information to a List Component. Everything binds okay but when I run the MC I only get one item of information. The object I'm binding from the XML is called "Location" and there are a total of 5 listed in the XML. The five are Los Angeles, Seattle... The only one being displayed is Los Angeles. What do I need to do get the other 4 locations to display in the list?
View 1 Replies
Jul 15, 2010
I need a flash based video player that is able to trigger events I can listen to via JavaScript. The events I need to listen to are:
The play button is pressed The pause button is pressed The video stops (is finished)
View 1 Replies
Aug 30, 2006
I began with a class for a movie clip rollover function FigureRollOver. It works marvellously. Three things happen:
1) it loads XML from a file "mod1_fig1.xml" and uses another class, XMLMember, to retool the scoping of the XML so that I can get at it
2) an onload call inside of XMLMember calls the myOnLoad function and transfers the XML into an array.
3) so long as the array is finished building, rolling over a movie clip attaches a new movie clip with the rollover text in it.But I don't want all those functions in one because I need it to be more dynamic, starting with being able to load any old xml file instead of just "mod1_fig1.xml", plus it seems lik overbuilding to have all of that in one class, so I've separated out the loading of the XML and building of the array into its own class, FigureXMLLoader. FigureRollOver is then left to just attach the rollover with text in it, extracted from the array built by the new class.
Problem is, though the array builds inside FigureXMLLoader, I can't figure out how to make it available outside the class. I know that I'm constructing things in the wrong order, and that the array needs to be somehow built inside the class function to be available, but I can't figure out how to do that. A cruddy work-around is to put a function call at the end of the building of the array, which calls yet ANOTHER function on the main timeline of my .swf to put the array I've just built into a new variable.This works, but it's messy. It seems like I should be able to have one line of script in the .swf that generates an array on the main timeline (or just a public array) which I can then access from my FigureRollOver class:
var myRollOvers:Array = new FigureXMLLoader("mod1_fig1.xml");
Here is FigureXMLLoader (see comments in the code for more details) which obviously does not return an array as it is, because of all the working around I've had to do. Note the "testing" variable, which can be traced from the main timeline of the .swf, but I will get "not what I want" because of course the array hasn't been built yet, and never will be, inside of the declaration as it is. How do I get it in there so I can return an array?
View 2 Replies
Apr 8, 2011
I need to figure out how to create a flash based "widget? where I can pull in and display basic local airport data, like Delay information.
View 1 Replies
Jul 23, 2010
i want to make an upload script with swf and javascript. I want to do selecting files via swf then uploading files to server via javascript. I have searched SWFupload plugins but they are not working as i need. I am new here and i do some search, i see it is possible to save list of selected files in FileReferenceList array, but i dont know if is it possible to pass this array into javascript and then make upload progress via javascript ?
View 1 Replies
Dec 13, 2006
so my XML looks like this:
<root>
<level1>
<level2>
<level3-array-start->
<name text="Dolphins"/>
</level3>
[Code]...
View 1 Replies
Jun 18, 2007
I made a flash music player for my server the player works perfectly and loads the xml data when viewed on my computer and even when it has been uploaded to the server IF I view it by itself but once I try and view my HTML file, all of the information for the songs comes up as undefined, so none of the songs will play.
View 1 Replies
Oct 21, 2010
Create a html video list that uses a flash video player?
View 14 Replies
May 21, 2006
i have edited an open source flv player's fla file for my needs,but ihave some problem.it uses XML when getting video source URL but i want it to read from QueryString or a variable from ASP.How Can i do this? the original codes are like this,these are for reading from XML source;
View 1 Replies
Aug 25, 2009
For ages we have used the Flash Object in a .NET app for managing the development of eLearning. The embedding is done (I presume) in much the same way that IE embeds flash object (e.g. using a COM object which maps back to Flash10c.ocx)We are testing our application on Windows 7 RC 64-bit edition but the .NET application is unable to instantiate the Flash control, raising a "Class not Registered" error. Although the OS is 64-bit, the .NET app and Flash object are 32-bit and should work together without problems. I have confirmed that the IE browser (32-bit version) on the Windows 7 (x64) does indeed instantiate Flash files OK.
View 2 Replies
Jul 7, 2007
I am working on a page the allows the user, once logged in,to upload information and a picture. The picture is saved as his/her username, and if they upload a different picture, the old one is still displayed unless they leave the site and come back 10+ minutes later.I tried the HTML no-cahce headers and they don't even help load a new (up-to-date) version of the main movie.This should have an easy solution, that Adobe should have
addressed if they expect flash to be capable of being a dynamic site with user interactivity.
View 1 Replies
Aug 8, 2006
I have a Flash Web site for a small literary journal and am trying to switch over to my hosting service's mailing list manager for sending out newsletters. I see the HTML code for setting this up (available from my host), but do not know how to get it to work in my Flash site. (I did not build the site and know very little about Flash...I'm learning as I go in order to do updates.) It looks like the site currenly links to a PHP file to allow for sign ups to our newsletter. Can anyone tell me h how to get the HTML code to work on my site?
View 2 Replies
Aug 1, 2011
I have a situation where I have a List showing a queue of Upload Objects:
[Code]...
I would like to create three different views of the List: One showing All uploads in the queue Another showing only the Upload items with Upload.type == "Update" and another showing only the items with Upload.type == "Create". Another example of this would be on an email inbox, where we could filter "All, unread, or read". I realise I could just create three different lists, one for each view of the list (maybe I'm just being picky) but I was wondering: Is there is any easy way to conditionally select the items to display from a DataProvider based on a parameter (for example type =="Upload") so I don't have to juggle three separate ArrayCollections about?
View 2 Replies
Mar 17, 2009
I'm looking for a (simple) way to make the vidplayer to stop playing when moving from one page to another one (on the same timeline hey). As it is right now if you start to watch a video and don't push the stop button before going to another page it keeps playing - hence you still hear the sound playing in the background while you're actually looking at another page. And that's not good.
View 3 Replies
Sep 12, 2006
Is the Change handler supposed to fire when setSelectedIndex() is called?
After adding a line of code to the Bike Trips example I found this problem. I added a button and the line to it:
on (click) {
_parent.cbTrips.setSelectedIndex(3);
}
My Example and
FLA
I want the bound data to change but it doesn't.
View 4 Replies
Sep 7, 2006
I am creating a slideshow within Flash that uses XML data pulled from a database. Is there any way to manipulate the image size from within Flash? I am going to use the slideshow for a plasma display, and have clients uploading image files at random, which are then added to our database. I need each image to be 16:9. I know the easy way to control this would be to give the clients size requirements - we will do this in the future - but unfortunately there are hundreds of images already in the database that are already odd sizes. While it's clearly possible to change the size of the movie itself, is there a way to force each image that is imported from the XML to be a particular size - say 800 x 450 or 1200x 675 or 1600 x 900? (i.e. -- can I force the XML generated image to fill up the whole screen/browser window, regardless of what size it is?) It does not matter if the image gets distorted or stretched.
View 1 Replies
Dec 16, 2007
Is it possible to load navigation cue points from an xml file like you can do with captions or do they always have to be embedded in the encoding? If it's possible, can you point me to a resource that shows you how? I've searched and searched for weeks and found nothing!
View 5 Replies
May 19, 2010
how to embed a YouTube video file in particular place of my Flash project, should I do this in action panel or in final html file. Here is exactly what I'd like to do: On this website www.aye-aye-media.com under 'Film' panel I have some movie samples, and after clicking buttons on right side I'd like to play embedded YouTube clips instead of flv.samples uploaded to my ftp. as it takes too long for customers to download them
View 2 Replies