Player Controls For Swf Similar To The Flv Player Controls Component?
Is there a component that is similar to the flv component that will control playback of a swf? or can this component also be used for a swf? I tried to create a player that uses loadmovie to load a swf, which works, but when i tried to create play, pause, forward (next scene), rewind (previous scene) etc it doesnt work and the audio and playback of the animation doesnt follow the controls when i click on the buttons. t hanks
Adobe > ActionScript 1 and 2
Posted on: 11/13/2006 11:00:30 PM
View Complete Forum Thread with Replies
Sponsored Links:
2 Player Game. Moving Cars Controls Help With Controls
hi i have the controls for car number 1 that would be the arrow keys if
(Key.isDown(Key.RIGHT)) {
this._rotation += manuverSpeed;
} else if (Key.isDown(Key.LEFT)) {
this._rotation -= manuverSpeed;
}
if (Key.isDown(Key.UP)) {
if (speed<speedMax) {
speed += accel;
}
} else if (Key.isDown(Key.DOWN)) {
if (speed>-speedMax) {
speed -= accel;
but how can i make controls for car 2 ... i wann use wasd but i cant figure out how the key.a doesnt work.
View Replies !
View Related
MP3 Player Controls
I have followed a tutorial to make a simple play ans stop button for my presentation but it autoplays then stops on click, i was wondering if anyone could help me to make it so it doesnt start playing until you click the button, thank you (frame 20)
http://www.sendspace.com/file/a75jng
Actionscript 2 / Flash CS3 / Frame 20
View Replies !
View Related
Swf Player Controls
I am a newbie, using Flash CS3, who has created a flash movie. I publish to html and swf. I take the html produced and add it to the rest of my page. The swf movie plays just fine, but there are no player controls (pause, back, etc).
Is there a really simple way of adding player controls? (I want to stay with the swf format.) I don't know anything about action scripts etc., is there some code that I can just dump into my fla file?
Tnx,
Jay
View Replies !
View Related
Audio Player Controls
okay, id like the user to be able to play audio files on my web page. i have all my buttons made, and all my mp3's ready... i just dont know how to do the codeing. the buttons i have made are play, stop, next song, back a song... can anyone help?
View Replies !
View Related
MM Flash Player Controls
Hi All,
I made a webpage (DW Ultradev4) with links on it that control an .swf on the side of the page to display images of a product by going to certain frames using the "MM Flash Player Controls".
It works fine, except when someone tries to mouse over one of the links before the movie is loaded. The browser freezes up temporarily (10-20 seconds) and displays an error message:
"A script on this page is causing IE to run slowly. If it continues to run, your computer may become unresponsive. Do you want to abort the script? Yes or No "
It doesn't matter if you click yes or no, the error message will go away and the script will run fine.
Is there a way that I can prevent this from happening? Maybe using a layer with a trasparent gif over the links and then making it move?
Any suggestions are appreciated.
thanks,
View Replies !
View Related
Flash Player Controls
hi guys - not sure if this actually is an action script question, or simply an option somewhere in the publish settings....
howr do you disable the flash player commands - im not referring to the commands you see when you right click in the player with your mouse - what i mean is the control menu, where u can rewind, step forward, step backwaard etc
i notice on some flash movies that these have been greyed out, how is this done?
many thanks
steve
View Replies !
View Related
Loadmovie Player Controls
Hi, I created a flash movie that uses the loadmovie function to load a swf with audio, that contains multiple scenes and a replay button at the end. I was wondering how i would create player controls in the first flash movie such as play pause rewind (previous scene) fast forward (next scene) and a progres/drag bar that would control the swf i loaded. Does anyone have a tutorial I can use?
Thanks!
View Replies !
View Related
[F8] Movie Player Controls
Flash 8
(File attached)
I have created buttons to control my timeline. I have Action Script running my controls in the first frame. When I test just the first scene by itself, everything works great. If I test the whole movie things get a little buggy. The back button stops working, the scrubbar stops working and the play/stop button stops working. I have tried using _root instead of _global and that didn't work. I tried removing the Script from the second scene. I tried changing the names of the buttons instance names in the second scene.. that didn't work.
I copied the code from this page-
http://www.flashkit.com/tutorials/In...1223/more5.php
If anyone could give me some advice on this Action Script I would greatly appreciate it.
Thanks,
-Steve2000
View Replies !
View Related
[CS3] Swf Media Player-controls
I need help using this payer, or if anyone has any other suggestions I'm open.
I'm looking for an easy and professional way to get play/back/FF etc. to control my swfs.
Here's an example of one I like:
http://www.aleks.com/video/quick_tour
Here's the site where you can get the player thing, but don't know how to use it:
http://www.jeroenwijering.com/?item=JW_FLV_Media_Player
View Replies !
View Related
Adding Controls To Mp3 Player
I used Lee Brimlowe's spectacular tutorial to build a nifty .flv player complete with scrubber and other controls. Using his inspiration (and code) I'm attempting to build an mp3 player, but I'm having a difficult time adding the "volume control" and "seek" scrubbers.
I've linked below what i have so far, it's extremely flawed i know, and the volume control hasn't even been built (i'm still trying to figure out how to make the progress scrub work).
Could you help me get on the right track here?
http://www.porper.net/ix/audioPlayer_beta.flv
Thanks!
porp
View Replies !
View Related
Putting Player Controls On A Swf (not Flv)
I've created a .swf "movie" in flash - you hit enter, an mp3 lecture starts playing, and slides of text appear at the appropriate times.
Now I want to put it on the web, but I'd like to be able to skip through the presentation/lecture with a seek bar, and pause/rewird/fast forward with buttons. I'm creating a lot of these .swf movies/presentations, and I don't know much about flash or action script, so I'd like to keep it simple. Is there an embeddable player or something that can load my .swf movie and play it and seek through it, or can I drop some player controls right into the movie itself?
I've seen a few players that can show these kinds of controls for flv movies, but none for .swf movies. Is there an easy solution built into flash that I'm missing?
Thanks
View Replies !
View Related
FLV Player - NetStream Controls Help
Can someone help me modify this script so I can do 1 of 2 things...either have a scrub bar or a rewind and fastforward button. I'm having trouble figuring this out. Ideally the scrub bar would be something that goes ontop of play_mc which is the progrss bar.
ActionScript Code:
// setupnc = new NetConnection();nc.connect(null);ns = new NetStream(nc);// show netstream messagesns.onStatus = function(d){ trace(d.code);}// get the lengthns.onMetaData = function(d){ this.duration = d.duration;}// attach a video objectmyVideo.attachVideo(ns);// create a movieclip for sound controlthis.createEmptyMovieClip("sound_mc",1);// attach a sound object to the mc to control volumevideoSound = new Sound(sound_mc);// attact the audio from the netstream to the mcsound_mc.attachAudio(ns);// playns.play("cornell.flv");// monitorfunction monitorVideo(){ var loadpct = ns.bytesLoaded / ns.bytesTotal * 100; var playpct = ns.time / ns.duration * 100; if(isNaN(loadpct)) loadpct = 0; if(isNaN(playpct)) playpct = 0; play_mc._xscale = playpct; load_mc._xscale = loadpct;}// monitor every frameonEnterFrame = monitorVideo;// set up button actionsplay_btn.onRelease = function(){ ns.pause(false);}pause_btn.onRelease = function(){ ns.pause(true);}rewind_btn.onRelease = function(){ ns.seek(0);}volup_btn.onRelease = function(){ var vol = videoSound.getVolume(); if(vol < 100) { videoSound.setVolume(vol + 20); }}voldown_btn.onRelease = function(){ var vol = videoSound.getVolume(); if(vol > 0) { videoSound.setVolume(vol - 20); }}
View Replies !
View Related
FLV Player - NetStream Controls Help
Can someone help me modify this script so I can do 1 of 2 things...either have a scrub bar or a rewind and fastforward button. I'm having trouble figuring this out. Ideally the scrub bar would be something that goes ontop of play_mc which is the progrss bar.
ActionScript Code:
// setupnc = new NetConnection();nc.connect(null);ns = new NetStream(nc);// show netstream messagesns.onStatus = function(d){ trace(d.code);}// get the lengthns.onMetaData = function(d){ this.duration = d.duration;}// attach a video objectmyVideo.attachVideo(ns);// create a movieclip for sound controlthis.createEmptyMovieClip("sound_mc",1);// attach a sound object to the mc to control volumevideoSound = new Sound(sound_mc);// attact the audio from the netstream to the mcsound_mc.attachAudio(ns);// playns.play("cornell.flv");// monitorfunction monitorVideo(){ var loadpct = ns.bytesLoaded / ns.bytesTotal * 100; var playpct = ns.time / ns.duration * 100; if(isNaN(loadpct)) loadpct = 0; if(isNaN(playpct)) playpct = 0; play_mc._xscale = playpct; load_mc._xscale = loadpct;}// monitor every frameonEnterFrame = monitorVideo;// set up button actionsplay_btn.onRelease = function(){ ns.pause(false);}pause_btn.onRelease = function(){ ns.pause(true);}rewind_btn.onRelease = function(){ ns.seek(0);}volup_btn.onRelease = function(){ var vol = videoSound.getVolume(); if(vol < 100) { videoSound.setVolume(vol + 20); }}voldown_btn.onRelease = function(){ var vol = videoSound.getVolume(); if(vol > 0) { videoSound.setVolume(vol - 20); }}
View Replies !
View Related
Hiding The Controls In A FLV Player?
Hello
I'm new to this forum and I'm new to flash too.
But i really want to learn . Big thanks to the author of the site Lee Brimelow.
I was using his tutorials on how to create a FLV player and it was pretty useful , but i'm wondering
how to make the panel , loader , and the buttons disapear when I roll out with the mouse and when I roll over they appear into position. Thank you guys.
View Replies !
View Related
Script For Player Controls For An External Flv?
The set up...player controls (play/pause & rewind) for a video.
Ok...so I've an xml file that's calling a swf file and that swf file's player controls call the flv video. I need to recreate the swf file to call a different flv video. I can easily create to player control button but do not know how to script these to play/pause and rewind the external flv.
Any suggestions will be greatly appreciated...thanks in advance.
View Replies !
View Related
HOWTO: Little Video Player W/ Controls?
Hey,
Within my movie, I have these little buttons that play my videos which are in .FLV format.
I want them to popup once I click the button with their own little player ala youtube (just with the basic controls play/stop/etc).
How do I do that and where can I get one of those?
Thanks in advance!
View Replies !
View Related
Direct X Controls For Flash Player 8
hiya, here´s a link: www.adndigital.com/adndigital.html i´ve been developing in flash 8 professional, however flash player 9 is out already and sometimes in order to see the page the explorer tells me that i need to install the direct x controls... only sometimes the explorer tells me this and is usually IE, not Mozilla and both only in a PC not in a Mac, how do i make sure that everybody gets this controls installed before even loading the application, that´s right after the page is loaded but not the application yet, i need to know this because in some computers only some parts of the graphics show up and none of the letters, it keeps the interactivity if you are able to guess where the buttons should be but it shows no vectorial graphics nor the animation... i am only guessing is got to do with the direct x controls since it works fine in every computer ive worked it at (mostly PCs´) but it doesnt work on some machitosh computers at the office. anybody any clue?
View Replies !
View Related
Video Player- Close, But Controls Don't
Flash MX 2004/Professional, using .flv's
So i'm building this "Video Jukebox" with the typical controls- scrubber, play/pause, rw, etc. What I'm trying to achieve is this:
onRollover theVariable = the.swf.
OnRelease load that movie into the player.
Then the controls kick in and you can scrub through that movie. But the controls don't control...
I've come to the conclusion that it's because when the variable is plugged into "Variable._currentframe" it comes out as "the.swf._currentframe", and that just aint right, right? I'm thinking that i need to give "the.swf" (the name of whatever movie I load) an instance name, which would then plug into the formula correctly. Can someone advise me how to do that, or offer a better solution if that's the wrong approach. It will save my sanity, if not my life. I'll be up on the ledge of a tall building waiting for a reply.
View Replies !
View Related
Anyone Know Of A Simple Mp3 Player Controls In Flash
Hi
just wondered if anyone knows of a simple mp3 player controls for flash i just want something that controls the following action's for a mp3 file or maybe serval mp3 files.
play, stop, pause, and if possible volume control
also to be a pain one that would not mind being loaded into a mc.
thanks in advance
View Replies !
View Related
Controls Not Showing Up For FLV Player (Flash 8 Pro)
I followed the Flash 8 LiveDocs instructions for creating a media player with the new FLV movie component.
Everything works fine on the "Published" page, with the skin SWF and movie FLV in the same directory as the HTML file that contains the embed.
However, when I copy/paste the same exact OBJECT/EMBED into another page on the internet, specifically a blog post on my website, the controls/skin never show up under the movie file... but the movie plays through just fine. ( I do change the references to the SWF file... see below).
And yes, I have uploaded the skin file...
You can see the correctly working version at this URL:
http://www.fourfivetwofour.com/playg...ntitled-1.html
If it helps at all, when I do the OBJECT/EMBED from my blog post, I change all instances of "Untitled-1.swf" to a direct path, ie "http://www.fourfivetwofour....../Untitled-1.swf".
Is that perhaps what's causing the problem? And if so, how do you get around that?
Again, the only problem is the player controls/skin not showing up.
Sorry to act like such a n00b... Web/graphic design is what I do (since 1997), but I've delayed learning "mad" Flash skills until recently.
Thanks much,
Four
View Replies !
View Related
Flv Player Wont Load Controls
I'm using this flv player(default flash 8 component), and it works perfect on my hdd but when i'm uploading it, the controls wont load anymore.
I've searched the kirupa forum for this problem and double checked the possible ishues(the other guys had), but nothin.
The flv file is on the same directory with the skin file and the main swf and the html file, the same structure that is on my hdd.
help!
View Replies !
View Related
Flash Player With Controls Needed
Hello, I'm looking for a solution to my problem and want to know the best way to go about getting it.
I created a Flash demo and I want this demo to be able to be played within a Flash player of some sort that has control on the bottom, stop, rewind, play, pause, fast foward.
Can somebody direct me to a free flash player program whereby I can just plug in my Flash demo?
Ideally, there will be a text link on the site, the user will click on the link and a window will pop open. This window can either be the flash player itself, or can be an HTML window with the flash player embedded in it, and the Flash demo within the player.
I appreciate any help or direction in this matter.
Thanks!
View Replies !
View Related
Lee's FLV Player - Auto Hide Controls
Hi All
I have been building the flv player by following Lee's awesome tutorials and for my final step I would like to have the controls autohide when the mouse is not moving, similar to the video player on Vimeo - http://vimeo.com
Does anyone know where I can find a tutorial on how to do this, or give me some pointers so I can try to do it myself?
Thanks in advance
View Replies !
View Related
Lee's Accoridon Video, Player Controls....
I followed Lee's example on the Accordion Video. I wanted to make controls for it. I used the Control Player from the Video Basics, however, it only works on the first clip. If you click on a different clip, controls don't respond. How do I do this?
Thanks
Code...Code:
_global.style.setStyle("themeColor","haloBlue");
var s:Sound = new Sound();
s.attachSound("click");
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
var ns2:NetStream = new NetStream(nc);
var ns3:NetStream = new NetStream(nc);
var ns4:NetStream = new NetStream(nc);
var ns5:NetStream = new NetStream(nc);
var child1 = acc.createChild("vid","Title1",{label:"Title1",icon:"vidIcon"});
child1.flv = "";
child1.nets = ns;
var child2 = acc.createChild("vid","Title2",{label:"Title2",icon:"vidIcon"});
child2.flv = "";
child2.v.attachVideo(ns2);
child2.nets = ns2;
var child3 = acc.createChild("vid","Title3",{label:"Title3",icon:"vidIcon"});
child3.flv = "";
child3.v.attachVideo(ns3);
child3.nets = ns3;
var child4 = acc.createChild("vid","Title4",{label:"Title4",icon:"vidIcon"});
child4.flv = "";
child4.v.attachVideo(ns4);
child4.nets = ns4;
var child5 = acc.createChild("vid","Title5",{label:"Title5",icon:"vidIcon"});
child5.flv = "";
child5.v.attachVideo(ns5);
child5.nets = ns5;
child1.v.attachVideo(ns);
ns.play(child1.flv);
var whoIsOn = child1;
var accList = new Object();
accList.change = function() {
whoIsOn.nets.close();
whoIsOn = acc.getChildAt(acc.selectedIndex);
whoIsOn.nets.play(whoIsOn.flv);{
s.start();
}
acc.addEventListener("change",accList);
playButton.onRelease = function() {
ns.pause();
}
rewindButton.onRelease = function() {
ns.seek(0);
}
var videoInterval = setInterval(videoStatus,100);
var amountLoaded:Number;
var duration:Number;
ns["onMetaData"] = function(obj) {
duration = obj.duration;
}
function videoStatus() {
amountLoaded = ns.bytesLoaded / ns.bytesTotal;
loader.loadbar._width = amountLoaded * 208.9;
loader.scrub._x = ns.time / duration * 208.9;
}
var scrubInterval;
loader.scrub.onPress = function() {
clearInterval(videoInterval);
scrubInterval = setInterval(scrubit,10);
this.startDrag(false,0,this._y,208,this._y);
}
loader.scrub.onRelease = loader.scrub.onReleaseOutside = function() {
clearInterval(scrubInterval);
videoInterval = setInterval(videoStatus,100);
this.stopDrag();
}
function scrubit() {
ns.seek(Math.floor((loader.scrub._x/208)*duration));
}
View Replies !
View Related
Fade Controls On Flash Player
Hey i'm new to this forum and to Flash.
I know a little bit, but at the same time i know nothing at all.
If you can help me please lead me to tutorials or explain, I'd greatly appreciate it.
I don't know actionscript well, so if you post some of that please show me how to use it!
Thanks in advance.
View Replies !
View Related
Video Player Controls Stop Working
Hi there. I'm creating a website in Flash CS3. The FLV video in the center of the page utilizes one of the stock video control panels in the video encoding process (SkinUnderPlayStopSeekMuteVol.swf) . Upon testing the movie, both in Flash and uploaded on my server, the controls work fine for about 10 seconds then seize up and stop being functional. The page is simple as can be. 1 frame long, a couple pieces of text, a static background and the FLV in the middle. Any ideas on why the control panel freezes up?
View Replies !
View Related
Custom Vid Player Controls Auto Visible
Last edited by Mime : 2007-01-01 at 02:08.
Working on a custom FLV Player for Flash 7 swf's
I went to http://www.gotoandlearn.com and followed the Flash Video Basics tutorials.
I simply need the buttons to only appear when the user is mousing over the movie player.
If you watch the first 10 seconds of Flash Video Basics - Part 6 - you will see what it looks like on the stage.
Just need the controls to only appear upon the movie mouseover like the same option that you get with or if using the Media Playback component that comes with Flash.
Cheers.
View Replies !
View Related
Accordion Video Player Needs Play Controls
I really like the tutorial on how to integrate video into the accordion component. My only complaint would be that I really would like the flv's that are loaded into the accordion player to have play controls. Is there any way to put the media player component inside the accordion component and then load the flv's into the media player so that the movies have play controls? If this isn't possible what's another way to accomplish this?
Thanks!
View Replies !
View Related
How To Fade Out Video Controls Of Custom Built FLV Player
Hi there,
Firstly I would like to thank the creator of www.gotoandlearn.com for their indepth tutorials on how to build a custom flash player!
I have studied all the tutorials and have come up with the following custom built flv player:
http://www.watchlearnplay.com/watchi...estPlayer.html
I have now stumbled across a problem which I am unable to solve. What I want is for the video controls to fade out, when the user is not mousing over the player itself, thus giving the user a un obscured view of the video playing.
I cant for the life of me find a tutorial anywhere that shows me how to do it!
I am pretty sure that I need to take the video controls and place them in a separate movie clip, then have that entire movie clip fade in and out depending upon the users mouseover states.
Does anyone have any ideas on the best way to do this?
Regards
Jon
View Replies !
View Related
Video Player Controls Don't Work When Loaded Into Main Swf.
I have a simple video player (built in Flash using the default Adobe video component and controls). When I upload the player to my server and navigate directly to the swf file the video plays fine and all controlls work. When I drop that video player into my main site (I'm loading it into a html formatted textfield) the controls don't work. Is this a crossdomain policy issue?
If it's of any help, the video itself plays fine if I set up my video player swf to auto-start but the controls are still un-responsive.
View Replies !
View Related
AS2 - Flv Player Stop/play Controls That Slide Up On Mouseover
I've created an flv player with the standard stop/play/pause/etc. buttons in a control panel movieclip called "controls_mc." When the play button is pressed, I want to leave the controls_mc panel up for 2 seconds, then side down. When the user hovers over the bottom half of the flv player(the stage) I want the controls_mc movieclip to slide back up. When stop is pressed I want the controls_mc panel to stay up until the user presses play again. What code will make this function?
View Replies !
View Related
YouTube-like Player Controls - "Stretch" To Parent Movie Width And Stay Unscaled
Hello,
I am trying to program a set of movie player controls in a separate, external SWF that I can dynamically load into other movies, but keep the player controls' height and resolution untouched, so that the PLAY button will always be the same original size, no matter what size the parent movie dimensions are - similar to how YouTube currently displays their player controls: No matter how big you view their movies, small, normal size or full screen, the player controls at the bottom always stay the same height, but will "stretch" to the containing movie's overall width.
You can see what I have so far here:
http://www.redguitar.com/gflix/dynamic_controls.html
You will see two of the same flash movies at different size dimenions. You will also notice the green bar at the bottom of the movies. These are my player controls that I need help with.
I have no problem getting the controls to stretch to the parent movie's width, I just don't know how to load these controls 'Unscaled' so that you can still see the controls clearly and at the size they are meant to be seen at.
Anyone have any ideas?
I tried to search but had no luck trying to find a solution. I know this should be easy to figure out, but its taking me a long time unfortunately.
Thanks in advance!
View Replies !
View Related
Drag Controls Override All Other Controls On Movie?
I have a movie that loads into the main timeline and can be dragged around using:
on (press) {
startDrag("");
}
on (release) {
stopDrag();
}
That works great except that to close that movie again I've added a little button to say on press, unload movie.
Problem is none of the buttons or links on that page will work while it is being dragged around. How can I make the links and buttons work but still make the movie draggable?
View Replies !
View Related
Why Can't I See The Video Component Controls?
I am only using Flash MX 6, so I hope it is ok, but I am having a major problem.
First I need a video component that works, hopefully there is a few one that is floating around out there.
I have a QT.mov, I have converted it to flash and I drop a video component on it (surprisingly, it looks like the QT controls). I test the movie, it works, but when I use the swf in Dreamweaver on my page, the controls are no where to be seen. I can't see them, therefore they are useless to me!!
Has anyone else had this problem? How can I resolve it? Thanks in advance.
View Replies !
View Related
[F8] Scrollpane Component: How To Re-postition Controls?
I have a movie clip of some thumbnail images in a scrollpane. I have been able to customize the appearance of the pane by editing the ScrollBar Assets. But I want to change the position of the cursor arrows in relation to the pane. I want to make my own arrows, place them elsewhere on the page, and have them control the movement of the pane. Possible?
View Replies !
View Related
How Do I Hide The FLV Component Controls As Desired?
Hi All,
I have a FLV Component on the screen. I dont want the controls to be visible in the beginning, i.e autohide. enable which works. But when I move the cursor on the component it gets visible, or enabled. can i do something that it doesnt get shown when moving the cursor over the component?
Actually Im playing an audio, after it's completed (onSoundComplete) i want to display the controls fully.
Another problem is that I have a couple of audio tracks in the library. I have a mute/replay button. Whenever i pause (stopAllSounds) the intro audio in the video frame, and play the video which i have loaded in the component, I dont hear the audio of the video. Why is this? Is stopAllSounds() affecting the video? Is there any other way I can do the stopping of background sound without affecting the FLV audio?
Please help me out.
Regards
View Replies !
View Related
FLVPlayback Component Problem -- No Controls?
Hey guys.
I'm trying to stream an .flv file in Flash 8 Pro, using the FLVPlayback component.
I've exported my .FLV, and created a new flash movie. In the new movie, I inserted the FLVPlayback component, and configured it to point to the URL of my .FLV.
For some reason, when I go to test the movie or view it online, there aren't even any playback controls or anything, and it won't load the video.
Am I missing a step somewhere or something?
Please help if you can! Thanks!
View Replies !
View Related
FLV Component Controls Dont Work?
I have an instance of the FLV component on the stage with the name of 'vidPlayer'. I then have this code loading the movie:
ActionScript Code:
var theVid:Video = new Video();vidPlayer.addChild(theVid);var nc:NetConnection = new NetConnection();nc.connect(null);var ns:NetStream = new NetStream(nc);ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorEventHandler);theVid.attachNetStream(ns);ns.play(mediaPath+padNum+"001"+".flv");function asyncErrorEventHandler(event:AsyncErrorEvent):void { // ignore}
None of hte controls on the video work. Any idea why?
View Replies !
View Related
Flash FLV Playback Component Controls Not Working
I have an FLV Playback component in a website that I'm working on and for some odd reason the controls do not work. The video loads and plays fine and the controls appear but you cant click on anything like you can when you assign the skin in the parameters. It is a default Flash skin. At first I thought it was due to the video layer being under a mask, so I moved it on top and it didnt change anything.
Anyone have any ideas?
View Replies !
View Related
Video Player Component Using Flash Player 6
I'm streaming video using Flash Player 6. The problem I am having is that the video will only play at a super small size, something like 180 x 60 (that's a guess). Is there a way to play the video at the 320 width that I redered it as?
I'm using Flash Player 6 because some code that came with my purchased Flash Template does not work unless it's published to Flash Plaey 6.
Thanks in advance!
View Replies !
View Related
Flash Music Player Similar To .....
I'm hoping that some patient soul could help me in locating something very similar, or point me in the right direction to sample code -- or perhaps a "flash-music-player" template type of thing ... ?
Please reference the link below, as I have tried to "hack" this to get ideas and figure out how to do the same on my own.
I would like the player to be in a very similar manner (top right hand corner), where I can scroll through multiple selections ... as well upon page load the default music already kicks in to play.
My skill level in Flash is not the greatest by any means, and your help is greatly appreciated!
http://www.bacardidj.com/
Thanks Much,
Des
View Replies !
View Related
Flash Music Player Similar To ..... Please Help
I'm hoping that some patient soul could help me in locating something very similar, or point me in the right direction to sample code -- or perhaps a "flash-music-player" template type of thing ... ?
Please reference the link below, as I have tried to "hack" this to get ideas and figure out how to do the same on my own.
I would like the player to be in a very similar manner (top right hand corner), where I can scroll through multiple selections ... as well upon page load the default music already kicks in to play.
My skill level in Flash is not the greatest by any means, and your help is greatly appreciated!
http://www.bacardidj.com/
Thanks Much,
Des
View Replies !
View Related
|