How Access A Third Party Flash Media Player
Hello eveyone,I was wondering if there is any way that I can know some how what buttons "Play, Pause, FF, etc. " has been clicked a third party Flash Media Player?Thank you and have a great day.Khoramdin
Adobe > Flash General Discussion
Posted on: 11/11/2007 09:35:04 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Windows Media Player Or Real Player Through Flash
Not sure if this can be answered all that easily, but does anyone know of a way for streaming video to be displayed through a flash movie. My guess is that it has something to do with java script and Active X. If anyone know any possible directions I can go with this, it would be greatly appreciated. Thanks - J
FLash Cd Player .cda Files Launching Media Player?
So I need a solution to this problem. I dont know if it can be solved in flash but any help would be great. I'm making an Enhanced cd. If you pop it in you cd rom it autolaunches a flash movie. There are two options one to goto the website contained on the cd the second to listen to the audio files. Is there a way to launch a media player or open the .cda files with flash so when you click the listen button it starts the cd? help. It needs to play in a cd player otherwise this owuldn't be a problem.
Flash Player Vs Windows Media Player
Hi,
I am trying to decide between Flash and Windows Media to stream video content form a web server. I would like to go with Flash but do not want to do so at the expense of reduced video quality. My questions are:
1> Will Flash have an ability to show videos on Full Screen mode? If so, when should we expect that to happen?
2> Does Flash support variable bit rate encoding? If not, when do you think it would? How does Flash encoding compare with Windows Media encoding?
3> Besides the player being available on most browsers, does Flash have any other advantage over Windows Media Player?
Flash Media Player
Do you guys have any tutorial on how to create a flash media player that has a stop, pause forward, rewind button and a time bar, similar on quicktime it loads once its loaded it will automatically play...
example :
http://www.factory1games.com/content...skillz_vid.swf
just be patient guys this is 2.5 mb
Flash Media Player Help
my website is AlliWire go there and see the media player. Although I want the media player to follow while they click on other links... how would I do this put the media player in another browser or make the whole website flash? need help thanks...
Flash Media Player
I have been trying, unsuccessfully, to build a flash media player. I am working in MX and i cant figure it out at all. can some one help me with it?
Thanks a bunch.
Flash Media Player?
Ok i looked in the tutorials and stuff for a flash media player, but i couldnt find the one i use to have. Could someone please find or could help me make one where all i have to do is put the link of the song in an HTML document and it would automatically load it into the flash though the HTML code, and should be able to hold alot of song. could anyone PLEASE help me with this? thanks much
** Flash Media Player **
I am currently working on a personal website and I want to have a media player that will stream mp3s/wavs (from either being embedded in the flash or downloaded from a URL, doesnt matter to me). I tried using some of the tutorials, but i cant seem to get all of the action script right.
If anyone has an .FLA media player file already made with working action script that they would like to give me, i would greatly appreciate it. i just need something small that will play a few songs. thnx!
I Need A Flash Media Player....
Hey folks, how you doing....
I'm working on a project and I'm in need of a flash media player, but not just any kind....
I've work with various mp3 as well as FLV video players, and have had much success using them, but for this project I want to add something special. It needs to be a bit of a all in one unit....
The best example I could find of the kind of thing I'm looking for was on the official John Mayer Site. ( http://www.johnmayer.com )
As you can see I would like the player to be able to play back Video as well as audio (with jpeg background), have a active play list and of course have the standard controls: Play, stop, volume, next etc.... I would assume that the data will be fed from an XML file as most players do.
If there's anyone out there that can help me with a easy solution to implement this, or know whether I could purchase one (commercially or private), please let me know. I would appreciate it very much.
Thanks in advance.
Johnny
Edited: 02/08/2007 at 01:21:36 AM by Captaingooch
Flash Media Player
Hi There,
I am in need of a flash media player, but I need it to be quite powerful:
Create or accept some sort of play list from my code.
Have control over the movie time (pause it, play an advert and then after the advert continue playing from where it left off). The time period at which the adverts will be played will be determined by the player (it needs to be able to get the total play length).
I need to be able to play different formats of media (QT, WMA, WMV, MP3 etc...) I realise that the best way to do this would be to convert the media to FLV and use the MediaServer to stream the FLV's back again. If this is correct all I need is the media player itself, and I am really struggling to find one or develop one ( I know nothing about Flash Development). Any help or pointers would be appreciated.
Thanks
James
Flash Media Player
Hello,
I was wondering, how would it be possible to create a custom video player in flash? Would it be possible to create the skin in a program such as Photoshop, and then import it into flash and create the necessary play, pause, fast foward and etc buttons? Or will I have to use totally different program then Flash MX 2004?
If possible to make a custom media player in flash, does anyone know a site where I can download buttons?
Media Player In Flash
Hey I've been trying to combine two tutorials on the site for flash to make a Media player that basically, has a drop down menu with a list of songs (for a friends band) and the usual play and stop buttons. However I just cant seem to get it right at all. I want to impliment it into a flash site I'm making for them, have it in the top corner somewhere. I've been using this site alot in the past month while learning flash but this is the first time I've found the need to come ask for help in the forums. I've been reading through alot of topics and see there is a greta helping community here. If anyone could suggest what I should do that would be great.
Thanks to anyone who replys with any bit of information!
XML Media Player In FLASH
Hi i have created a simple media player in flash that uses xml to pull and play tracks.
i looked at the basic mediaplayer example in the INTRO to XML tutorials on Kirupa.
I have also reviewed the "squirrel menu" example since i need the mp3 tracks to be played from a DYNAMIC list (when clicked on - that particular track plays in the mp3 player.)
I have used a nested loop to define the <cd> nodes and the <mp3 track> nodes within each <cd> node.
my issue is how do i play a specific track from a specific cd?
i tried to reference the particular node and childnodes - but i get unable to open file error!
the code pulling and generating everything is as follows:
Code:
var item_spacing = 110;
var item_count = 0;
var tracklist = new Array();
var menu_xml = new XML();
menu_xml.ignoreWhite = true;
menu_xml.onLoad = function(success){
if (success) {
var items = menu_xml.firstChild.childNodes;
for (var i=0; i<items.length; i++) {
var cd = items[i];
var pic = items[i].attributes.thumb;
var tracks = items[i].attributes.tracktitles;
var artist = items[i].attributes.artistname;
var albumName = items[i].attributes.albumtitle;
var item_mc = menu_mc.attachMovie("item_panel","item"+item_count, item_count); // linkageID, name, depth
item_mc._y = item_count * item_spacing;
item_count++;
item_mc.artistDisplay.text = "Artist: " +artist;
item_mc.albumDisplay.text = "Album: " +albumName;
item_mc.tracklisting.text = tracks;
item_mc.icon_border.icon_mov.loadMovie(pic);
item_mc.icon_border.icon_mov._x= 0;
item_mc.icon_border.icon_mov._y= 0;
item_mc.icon_border.onRelease = function () {
playTrack();
}
}
var theTrack = cd.childNodes; //theTrack=song
for (var i=0; i<theTrack.length; i++) {
var currTrack = theTrack[i].attributes.file; //track=currTrack
_root.tracklist.push(currTrack);
}
}
}
menu_xml.load("mix_playlist.xml");
// MEDIA PLAYER CONTROLS
function playTrack(){
_root.test_box.text= "hey";
stopAllSounds();
var x:Number = _global.trackNo;
var tlength:Number = _root.tracklist.length;
if (tlength <= x) {
//reset ffw counter
x = 0;
}
_global.trackNo = x;
_root.track = new Sound();
track.onID3 = function ()
{
tplay.trackID3Info.text = "";
tplay.trackID3Info.text += "Title: " + track.id3.TIT2 + newline;
tplay.trackID3Info.text += "Artist: " + track.id3.TPE1 + newline;
tplay.AlbumInfo.text += "Album: " + track.id3.TALB + newline;
tplay.AlbumInfo.text += "Genre: " + track.id3.COMM +
newline;
};
track.loadSound (tracklist[0], true);
}
forgive me about the indenting - i am a beginner with coding!
I know that the key is in the last line track.loadsound(tracklist[0])...maybe i should be targetting something else? to get a better idea of what i am trying to do please take a look at: www.ragemultimedia.com/theheadz/mixlisttest.htm
Flash Media Player
I recently came across this site: http://www.universalmotown.com/raph...iq/mediaplayer/ and I was wondering how I could create my own media player within Flash MX. Does anyone know a good tutorial? Or can someone share with me the knowledge of creating a Flash Media Player? – Thank You.
Flash Media Player
I recently came across this site: http://www.universalmotown.com/raph...iq/mediaplayer/ and I was wondering how I could create my own media player within Flash MX. Does anyone know a good tutorial? Or can someone share with me the knowledge of creating a Flash Media Player? – Thank You.
A Flash Media Player
Hi
I'm trying to produce a "media player" in Flash like what u can see here http://www.hostingzoom.com/tutorials...el_xv2_POP.htm .
Basically can anyone point me in the right direction of any tutorials or articles for making something like this.
I've seen a couple but they deal with the media being an actual video as opposed to a regular .swf like in the example I mentioned.
Would I be right in thinking that either way it'll be the same from the actionscript side of things.
I'd particularly like a progressing slider knob that you can click and drag.
thanks
Juan
Flash Media Player
Hello..
I wonder where could I get flash media player animation that would play audio files (mp3/wav) and should be compatible with html (so that I could set the file for being played dynamicaly)
Heres the example (look for section audio samples).
Link
Thanks for help
Flash Media Player
I recently came across this site: http://www.ronnyjordan.com and I was wondering how I could create my own media player within Flash MX. Does anyone know a good tutorial? Or can someone share with me the knowledge of creating a Flash Media Player? – Thank You.
Visualization Like MS Media Player But For Flash
Pretty much everyone has the Microsoft Media Player by now I think. Well, you can play an MP3 and under VIEW in the player you can choose visualization and you get a dancing light display, random colors, etc....whatever you pick really.
What I was wondering is how is this done and how can you do something like this for or in flash? Its kinda 3D, they have fly-thrus, etc. Maybe some 3rd party program would work this into the mix but would it work out and would it be vector? I'm thinking it would almost have to be vector so it wouldn't bog-down the processor like bitmaps seem to do for me.
Using Flash MX Instead For Win Media Player For A Sound
Hi,
Does anybody know how to use flash MX to play an external sound file after clicking on a link? What I am trying to do is to have a number of links that pass different sound addresses as variables to a hidden flash file, which then plays the appropriate sound in the background. The link just runs a javascript function (passing a variable to a movie) rather than opening a new page. There are many links on the page with different sound files. So far these sounds start playing in Win Media player or Real One player. Is there a way of getting these sounds to play in a permenant Flash movie via variable passing using Javascript?
So far I have got PHP to pass a variable to Flash using the URL followed by "?" and then the variable. The flash plays the external sound. However, the browser loads the movie into a new page and then the sound is played. Is there a way of passing the variable through PHP to the flash movie on the same page and play the sound? We already have a large system made up of framesets, and so to create a new hidden frame would be a pain. Whenever we do this in Javascript, the variable passes but the sound will only work when we add a button followed by an "on press" call. We would like this to occur automatically.
Thanks
Berty_boy
Flash & Windows Media Player SDK
Hi,
Quick question, is it possible to embed the windows media player into a flash movie ?
Simply the SDK is set out in HTML TAGS, however would flash understand <OBJECT> etc...
Thankz,
J
Windows Media Player And Flash
Hi all,
is it possible in either Flash 5 or Flash MX to insert a windows media player into my flash presentation.
OR
can i control windows media player from a Flash presentation with javascript?
many thanks in advance
Gilesb
MP3 Streaming - Flash Or Media Player?
Can I stream a long (70 minute) mp3 from a swf rather than a media player? Would I need to set up a preloader? Problems vs. Benefits?
I would rather do it from Flash so I can use my own controls but concerned about any streaming 'hickups'
Any help on this?
Marcel SF.
Flash In Window Media Player
DO any body knows the way to insert flash swf file in window media player asx file. Please help. I know 50 % about it but am facing problem with windoes player version 9
Embed Media Player Behind Flash
hi
I am creating an internet tv website for my client, using iframe and flash. the scene is, there are 2 i frames in my index.html
1. containing transparent flash and
2. containing media player (hidden iframe behind the flash)
when user clicks on media button from flash, the hidden iframe will be show and starts media player.
my problem is that while playing media player all the control buttons of media player comes behind transparent flash but the screen of media player comes over flash. i want to play whole media file behind the transparent flash file.
can anybody help me out please
Regards
Naved Ansari
Can You Add Actions To The Flash Media Player?
I have 2 wmv files. One is the audio and one is the video. I don't own any software that combines both formats maintaining perfect video quality. If I import the video wmv file into Flash (converting it first with the Flash video encoder) is there any way I can create an action that plays and pauses a seperate audio track in the project file (when hitting the button in the Flash media player). ??
Thanks
Flash MX 2004 (not Pro) Media Player
Does anyone know of any freeware components that simulate most of the look and functionality of the MediaPlayer component in Flash MX 2004 (un-pro)? I can cobble together various bits of it jankily myself, but I can't seem to produce anything that works quite so well or looks quite so pretty. If there's a tutorial or thread out there on building a similar tool for FMx04, would be much appreciated also. Thanks in advance.
Windows Media Player In Flash
I know how to embed windows media player into a html doc but is there any way to do this in flash?
I want to stream a video file that is 9mb and is 300x160px and I want it to start playing a few seconds after its started to load.
Is there a way to stream video in flash without embeding WMP?
Windows Media Player In Flash Mx
We want to display some very large videos on our website. The problem is that we don't have a Macromedia Flash Communication server, so we can't stream the video to our clients.
Instead we have a Windows Media Server, and in the past we have always used the default windows media player to stream our videos with a .asx file that linked back to our servers.
Is it possible to include the windows media player in a flash mx website? Therefore we could use the windows media player to play our videos
thanks in advanced!
How To Create A Media Player In Flash.
Hello. Sorry for two questions in one day! But, I'm wondering how to create a media player in Flash.
Ideally, I'd like a scolling box (vertically) with the names of the videos to play stacked on top of one another.
When I click the title of the video, it would play in the black box above the text box. Very simple.
It would be great to reference an external file (xml?) for the video links so I don't have to go back into Flash every time I want to update. Very basic controls on the video, too (play, pause, etc.).
I've been searching for media players, but they're all too graphically-based. I just need the black media player and the scrolling box with the video names. Thanks for anyone's help!
Jim
Flash & Windows Media Player.
I want to display a flash movie & also run a movie in Windows Media player on the same page but if i am embedding the Flash object then windows media player object is not working.
How this problem can be solved?
Parag.
I Want To Have Windows Media Player In A Flash Sit
I've never done this before, but could you explain to me the best way to approach creating a flash site, with a section dedicated to the windows media player.
Is iframes the best way to structure the html page? Is there another solution? Any advice you could offer would be greatly appreciated.
Thanks.
Flash Media Player Tutorial?
im tryin to create a media player similar to this one
allhiphop media player im pretty good with basic flash but i just need to find a good turoial for my media player......any help would be appreciated thanks.
Another Flash Media Player Question
Hey, I have followed all the tutorials and created my own player but I would like to show an image instead of a text on the right slider and I would also like to know how you can change the color on the video list or do I have to create a new list from the ground and not use the components?
Last I wanna ask if someone knows a place for a tutorial on how to create a sound bar that will work with the media player.
Flash Media/music Player
I have a flash site, with build in music player. http://www.blackcats.net/index2.html
My problem is that when visitors want to see the teasers that are on the site the music keeps playing and wont stop until user manually stops the music. Is there any way I can make the music stop when users click on the videos?
Thanks.
Using Media Player To Add Live Radio To Your Flash
I have just seen this website and woondered if I could add live radio to my flash website. I think the answer is no unless i put it into html. Does anyone know how to do this if poss.
Thanks in advance.
Launching Media Player Via A Flash Button?
hi all,
is it possible to assign an actionscript to a button so that, when a user clicks on the button, flash would launch media player and play a movie?
please provide me with the instruction on how to accomplish this since I'm new with actionscript.
thanks for your help!
I'm Trying To Put Windows Media Player In A Flash Site.... Help...
I've never done this before, but could you explain to me the best way to approach creating a flash site, with a section dedicated to the windows media player.
Is iframes the best way to structure the html page? Is there another solution? Any advice you could offer would be greatly appreciated.
Thanks.
Anyone Can Tell Me If Flash Can Make The Interface Like Win Media Player 9? Thanks
Hi, all
I was asked to make an interface sort of like Win Media Player by using Flash MX. I want to do two things:
1. After published, the movie doesn't have the regular IE blue window.
2. I need a menu button which can enable the menu show and hide, like what I see in Win Media Player 9?
Please help......Thank you very very much!!!!!!!!!!
I'm Trying To Put Windows Media Player In A Flash Site.....
I've never done this before, but could you explain to me the best way to approach creating a flash site, with a section dedicated to the windows media player.
Is iframes the best way to structure the html page? Is there another solution? Any advice you could offer would be greatly appreciated.
Thanks.
Flash Media Player Starts And Stops
I have Flash 9,0,115,0 and it works according to the test on the adobe website. However, when I try to play google videos, they start and stop and and freeze. What am I doing wrong?
|