Professional :: Make Vido Player In Swishmax1
Mar 30, 2010
Im trying to make vido player in swishmax1. Problem is, there is not any video object here, so i opened the flash cs4, added VideoPlayer component on the stage, named it "my_video" and exported the swf player (as2). Now i trying to load this into my swf in to swishmax1. But of corse something is wrong.[code]
View 2 Replies
Similar Posts:
Sep 4, 2010
I have a bunch of flv files and at the momment when a user clicks on the link to each of the files on my site, they are prompted to download each FLV file or asked how to open the video. Is it possible so that when the user clicks on the link the file opens and plays in a flv player( not embedded though), without asking to be downloaded or how to open the video ? Do i have to somehow add the player code to the flv file ?
View 12 Replies
Dec 7, 2010
Ok I want to make spawn able enemies and when they get in like 5 pixles in range they start to follow the player they are moving and if they switch directions it will go to another frame that will make it look like they are running in that direction. How can this be acheived?
View 1 Replies
Dec 19, 2009
i want to make the character in my flash game make a jump when the player presses a key,e.g. 'space',even the player release the key instantly,the character will still finish the complete jump process.
View 1 Replies
Jul 5, 2010
My loader component works when I publish to Flash Player 7 but not when I publish to Flash Player 8, why? The publish setting are for ActionScript 2.0 on both.
View 2 Replies
Nov 8, 2010
I just updated to CS5 - I'm working on a custom video player. It works fine embedded in a web page both locally and on the network. It works fine in the debug player. However, when I test it in the authoring player I get a NetStream.Play.StreamNotFound error and no video. I have tried setting the Local Playback Security publish settings to both local and network - doesn't find the video either way.
It used to run fine in CS4 in the authoring environment.
View 1 Replies
Dec 3, 2010
How do I make it to where the player moves and the background moves with it. I also have a gravity command to so, what is the code that tells the other objects to detect if the player moves and if he does move in what ever direction..... no they can't be added into the arrow keys movement. already tried and it is not working, because when he is falling the things don't scroll.
View 15 Replies
Jul 4, 2009
I'm trying to create a very basic player for my very basic site.
View 3 Replies
Dec 10, 2009
I have an mp3 player on my website that load a track list from a xml file.the problem is that the player start automatically when the website is loaded...and i want to make it stop since the beginning...so that if i want to here the music i have to push play
View 2 Replies
Dec 3, 2010
Making my own video player.
View 1 Replies
Sep 21, 2010
I'm compiling a swf using Flex 4.1 SDK that loads another swf that is created by a designer using Flash CS5. The 4.1 swf throws an error, "VerifyError: Error #1053: Illegal override of removeChildBridge in mx.managers.SystemManagerProxy." A few people around the web have said that they had this same error when their 4.1 swfs were loading swfs compiled by earlier versions of Flex. The solution is to recompile the loaded swfs using the latest version of Flex. So, I'm guessing that I simply need to get Flash CS5 to publish for Flash Player 10.1. I've updated CS5, but still don't have the option to publish for the latest player. How can I configure Flash to publish for Flash Player 10.1?
View 1 Replies
Jul 28, 2010
I am trying to make a scrubber for a mp3 player. I can not figure it out! Any one know of a good tutorial or code I can look at? Everything else is working, just can not get the scrubber.....
View 0 Replies
Oct 30, 2011
I've used flash (CS3) before and have designed some pretty decent flash designs and animations. However I have never really used ActionScript as much in that time. I am trying to make a flash player and if anyone can be as kind as to offer some assistance, I will be very thankful and will even offer to give credit for "Additional Programming" and a special thanks. For my flash player, I have a Previous button, Stop Button, Play Button, Pause Button and Next Button. I have the Previous Button and Next button working fine but I'm having trouble with stop, play, and pause.[code]And I don't know how to fix it or what to do unless I actually remove buttons 2-4. (Then the flash animation will work fine, otherwise it will start over after every frame) I've tried to change and replace the code but I still get the same issue.
View 7 Replies
Mar 5, 2009
Does anyone have some good tutorial about making an XML mp3 player with a playlist?
View 13 Replies
Jun 9, 2005
I was wondering if anyone knew of a good tutorial that would teach me how to make a mp3 player with all the bells and whistles like volume control and a progress bar.
View 4 Replies
Aug 4, 2005
im trying to make an mp3 player for my server that i made on my computer. what i want is to make it to where i have different playlist for different artists. i am wanting for my flash thing to duplicate a mc that contains a textbox inside for every artist. once that artist is clicked on, i want it to perform an onRelease function that will load the songs of that playlist. i'm having problem with the onRelease thing. im unable to get it to assign an onRelease to the duplicated movieclips. here's what i have so far:
Code:
playlist = new XML();
artist_mc._visible = false
playlist.ignoreWhite = true
[code]....
View 6 Replies
Jan 10, 2007
I want to make a music player, when you select a label, a music starts to play. But i need to do this by a dynamic text variable, because the player and the list is in different movieclips. Erm...give me an example script of when i click the label, the text changes, and for the player, check if the text is something.
View 2 Replies
Apr 23, 2008
I want to make seek bar in my MP3 Player.
View 1 Replies
Apr 1, 2011
I have a map of the US and each state has a rollover that changes the color of the state...what i am trying to figure out is how to click on the state and have text appear to the side of the US map and have that text stay up until the user clicks on another state.
View 16 Replies
Jan 10, 2010
I am looking for a very easy way to make a video player which just controled by the scrubbar. I have tried the Componet Seek Bar but that doesn't enable the viewer to scrub the bar. I am wanting to use the Scrubbar Player to view 3d models. At Zbrush they have a Scrubbar player [URL] once there click on one of the pics to view scrubbar turntable viewer. Would love to be able to show my models in this fashion.
View 2 Replies
Feb 13, 2011
I would like to make a Flash video player that takes a URL as an attribute when you embed it and loads the video based upon that attribute. All I need for the moment is a play/pause button. How can I do this is AS3? It needs to be able to play F4V filesIf it's simple to make other features, like full screen, showing how much of the video has been loaded on the timeline, or being able to click at any point in the timeline yo jump to that point in the video
View 2 Replies
Aug 6, 2007
I have this so far, (trying to make my own flash video player:
Code:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
theVideo.attachVideo(ns);
[Code]...
View 4 Replies
Oct 15, 2009
I was curious as to how I can make an audio player with a track bar, play, pause, stop, and volume slider. Most of the tutorials or free download files I find don't have all of these features.
View 0 Replies
Mar 25, 2010
Explain the code, or point me to a good tutorial for making a volume slider for an FLV player?
View 6 Replies
Jul 10, 2010
I followed a tutorial on youtube on how to make a custom flash player but the guy never uploaded continuing videos. Here's the link to the video: www(dot)youtube(dot)com/watch?v=_8q3NuboKQI So all I have now is a 3.0 Action Script file with a layer that has this code in it:
[Code]....
View 3 Replies
Dec 9, 2010
I've been trying to make a sound-loop player for quite some time now (i'm new to as3).i've made six letters converted them into buttons and i want them to play a different wav sound loop each one whenever i click on them and to stop the sound when i click again.This works fine for the first button but not for the rest of them because i dont know where to insert the similar code for the rest of the buttons.
Here's the code that works perfect for the first button:
import flash.media.Sound;
var sound:Sound = new The_Rloop5();
var soundControl: SoundChannel = new SoundChannel();
[code].....
Now the only thing that i managed to do is to play the same sound on both of the two buttons.
View 0 Replies
Oct 26, 2006
How do i make a player with a bar (showing where you are in the movie)?[url]...
View 2 Replies
Mar 23, 2010
so i'm trying to make a fullscreen button for my flv player, and it only works when my fullscreen_btn.x is < 600 and > around 300. anybody ever encountered this before?[code]
View 1 Replies
Aug 13, 2004
i have a menu that controls my movie right, i was wondering how i could make a little sliding bar like on a media player. where u slide it to a certain spot and it goes to a certain spot in the movie.
also i would like to know how i could get my menu to stay throughout my whole movie?
View 5 Replies
Jan 17, 2010
I'm trying to make a simple MP3 player for a music website: one singer, several song... how to make a mp3Player with a playlist loading from XML file?
I could make a video player using FLVPlayBack with playlist from XML File in a List Composant, but i can't do the same think for audio file, using MediaPlayBack?
View 6 Replies