Flash :: AS3 - Make Player Fullscreen The Scrubber And Volume Bar Everything Become Too Big In Size

Dec 16, 2009

I am working in a player and when am trying to make it fullscreen the scrubber and volume bar everything become too big in size.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Make A Scrubber For A Mp3 Player

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

ActionScript 3.0 :: Scrubber Bar - Consistent Volume And Clickable Playlist

Jul 22, 2009

How to get my audio scrubber to work, make the volume consistent whether you stop the song and restart or move to the previous of next song. Also, I just finally figured out how to add columns to my XML playlist by using a Datagrid but I do not know how to hook the playlist up to the XML in order to call the particular song that is clicked on.

I started this project working as a tutorial, but the tutorial only gave the basic XML audio jukebox set up, since then, I've been scouring forums, google, tutorials on youtube, etc. But I find that the code is so "method" specific, meaning that everything hinges on your particular way you decide to get to the end result.

1)Volume slider works, but the volume keeps reverting back to the default volume everytime the song is stopped and re-started or a new song is advanced to with the Previous or Next button - The volume needs to stay consistent at whatever volume level that the slider is left on.

2)PlayList needs to be functional. Right now, you can advance through the play list by using the jukebox previous and next buttons, but the playlist should have the ability to highlight whatever song is playing from the list as well as play songs independently when any song in the list is clicked. (I was able to do this successfully with the tutorial version which used a list component, but the only problem with that is that List components only allow 1 column - so I had to change to a datagrid to allot for my 3 columns)

3)Scrubber - I would like the scrubber to do what a scrubber does for each song when the song is being played.

The files can be found here [URL].

View 2 Replies

ActionScript 2.0 :: Make A Volume Slider For An FLV Player?

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

ActionScript 2.0 :: [Flash] Video Player Scrubber?

Dec 14, 2010

I have created an XML driven Video Player based on Lee Brimelow's Video TutorialI have a MC called loader which contains two MCs- a circular shaped clip called scrub which can be used to seek to particular time of the video. and anoder MC called loadbar which denotes the amount of video loaded by expanding correspondingly.Everything works fine except the video scrubber (the playhead). when the scrubber reaches the end of the movie; instead of stopping at the end of the loader MC it goes beyond it.here's the code:

Code:
function videoStatus() {
amountLoaded = ns.bytesLoaded/ns.bytesTotal;

[code]....

View 1 Replies

ActionScript 3.0 :: Make A Fullscreen Button For Flv Player

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

ActionScript 2.0 :: Make A Video Player Function That Goes Fullscreen?

Sep 1, 2009

i am tryin to make a video player function that goes fullscreen.... and i am using the following code...

on(press)
{
if (Stage["displayState"] == "normal")
{

[Code].....

View 1 Replies

ActionScript 3.0 :: Drawing Application Size Slider/scrubber?

Apr 8, 2011

So i have a project i am working on that is a drawing application. I am trying to put a brush size slider into the application but i have no idea where to even begin.I am very new to flash/actionscript so i dont know where to start.

View 9 Replies

Custom FLV Player - Scrubber And Load Bar

Mar 16, 2009

I've been following the tutorials for building a custom flv player and have come across a few problems, the player can be seen online here: [URL]. I'm having a few issues with the scrubber and the load bar, they loadbar starts in the middle and stretches out towards the sides and the scrubber starts in the middle and runs off the end? I'm pretty new to actionscript as have only really used flash for simple animations before, i have attached the source file and the actions are listed below.

var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
theVideo.attachVideo(ns);[Code] .....

View 1 Replies

ActionScript 2.0 :: Custom FLV Player Scrubber Inconsistency

Feb 17, 2009

I'm working on building a custom FLV player and I'm having issues with my scrubber. When I drag and drop it, the spot in which it falls and plays is inconsistent. Example, if I drop it in one spot, the video will pick a spot a second or two past. Then when you mouse over the scrubber it wiggles when your on an edge. [URL]

My scrubber code is:
ActionScript Code:
//---Handle Code---//
scrubbar.mcHandle.onPress = function() {
this.startDrag(true, 0, this._y, 455, this._y);
delete this.onEnterFrame;
trace(this);
[Code] .....

View 0 Replies

ActionScript 3.0 :: Custom FLV Video Player - Loadbar And Scrubber

Jan 16, 2009

I am working with the scrub element in my custom video player. The code for this in AS2 is as follows (this is the whole of it). How the scrub portion is coded in AS3?

HTML Code:
var nc:NetConnecttion = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
theVideo.attachVideo(ns);
ns.play("vegas.flv");
[Code] .....

View 0 Replies

Volume Control For Flash Player?

Oct 29, 2009

I got a code for a flash player but it only has a start and stop button . I would like to know how to add a volume control and a pause button.

Here is the code;

var nc:NetConnection = null;
var nsPlay:NetStream = null;
var metaDataValues:Array = new Array();

[Code].....

View 2 Replies

Actionscript 3 :: Flash Audio Player Volume Setting?

Sep 18, 2011

i am creating a audio flash player and i want to set the volume of the sound to 0 and then again to 60. Means i want to toggle between these values on a single button click.

View 1 Replies

Actionscript 3.0 :: Flash Fullscreen Jpg Image Size?

Feb 25, 2010

what kind of compression and image size should I use for a jpg fullscreen?What I am looking for is a balance between download speed and image quality.I know how to use the psd's save for the web options, but when get images at the size of a big resolution screen they quicly get heavy.

View 4 Replies

ActionScript 3.0 :: Make A Video Player That Has Normal Mode And Fullscreen Mode

Nov 17, 2010

I wanted to make a video player that has normal mode and fullscreen mode. The part I am having trouble understanding is how to handle the video once it gets set to fullscreen. Do I just use the current video or do I get a high quality version of the video to show during fullscreen mode? What would be best practice for this situation?

View 1 Replies

ActionScript 3.0 :: Video Player - Play Button And If Drag & Drop The Scrubber Of Progress - Bar

Jun 30, 2009

I'm building a flv_video AS3 player. I'm using steaming-video.The player is working fine, but there is something that I want to improve. Currently when I push play button and if I drag&drop the scrubber of progress-bar somewhere in the area that is still not buffered, the player doesn't start to play from that position. So I want to do it.

View 2 Replies

Actionscript :: Increase Volume By Click Button In A Flash Player

Oct 12, 2011

I'm making a flash payer.I already finished the volume part, and I also want to add two functions.One is when user click "add button", it will increase the current volume and change the volume display colour.Another is when user click "minus button", it will decrease the current volume and change the volume display color.How do I write these two function?[code]

View 1 Replies

ActionScript 2.0 :: Full Size Flash Website (not Fullscreen)

Jun 10, 2010

I'm currently making a website that i would like to be full size, whatever the resolution/window size is. Whenever i search for help i just get tutorials for fullscreen mode which is not what im looking for.

an example of what i'd like is this: [URL]

Whatever size you make the window - the flash file is stretched to fit.

View 4 Replies

Javascript :: Update The Song's Volume For A Flash Player Using JQuery Slider?

Apr 12, 2012

I'm having some trouble with the code below. the flash player has a default volume slider, but I want to use the jQuery slider to change the volume. the volume value(nr) is changing while I move the slider, but the volume of the song doesn't.

<!DOCTYPE html>
<script type='text/javascript'>
$(document).ready(function(){

[Code].....

View 1 Replies

Actionscript 2 :: FLV Player With Fullscreen For Flash?

Jan 4, 2012

I need a player that can play FLV videos in FULLSCREEN inside my Flash8 application.I know that it can be done using AS3, but I need to use AS2; is there a player that supports fullscreen that can be used?

View 1 Replies

ActionScript 3.0 :: Fullscreen For Flash Player?

Jul 29, 2010

My boss wants me to implement a full screen option in our player. I can easily make a button to activate the full screen mode but can figure out how to make it change to a 'full screen exit' button once full screen is activated.

Here's the current fullscreen code I have:

ActionScript Code:
import flash.events.FullScreenEvent;
function fullScreenRedraw(event:FullScreenEvent):void
{

[Code]......

View 2 Replies

Flash :: Html :: Going Back To Normal Size After Exiting Fullscreen Mode?

Apr 15, 2012

I've made a flash application using actionscript 3, I wanted this application size to be dynamic, To be able to embed it in any size and let it adjust itself accordingly. I managed to accomplish this, theres a problem though: The original width of the application is 700 pixels. I'm embedding the flash in a smaller size, (400 for example) going to full screen, and when I exit, the application sets itself back to being 700 pixels wide, and isn't adjusting itself to the 400px width of the actual embedding area..

[Code]..

View 1 Replies

ActionScript 3.0 :: Make A Scrubber For A Timeline In Swf File?

Feb 18, 2010

how do i make a scrubber for a timeline in swf file? so i can scrub back and forth?

View 3 Replies

Flash :: Flashplayer 10 - Player 10.2: Fullscreen On 2 Monitors

Feb 15, 2011

according to release notes in flashplayer 10.2 you can do fullscreen on multiple monitors. how can i trigger this behaviour?

View 1 Replies

Flash :: Make Size (width And Height) Full Size In The Browser?

Sep 15, 2011

I would like to know how to make flash size (width and height) full size in the browser? the real size of flash is w:955px h:600px I tried to make w:100% and h:100%, it makes pictures pixelate.

View 6 Replies

IDE :: Making Scrubber Bar And Scrubber Inactive

Jan 20, 2009

I am making a player that adds an advertisement before a video but don't want the user to be able to skip though the ad. I am using the progress component and an FLV Playback component for my player. I had tried to just hide the progress bar but it looks unbalanced. If anyone has an idea on how to make it so a user can not fast forward though the ad by dragging the scrubber that would be great.

View 2 Replies

Performance - Flash Player Freezes In Fullscreen Mode?

Apr 13, 2010

A lot of users on one of our online apps complain about the app freezing in the fullscreen mode. I googled and came across many others complaining about this problem for other flash apps. Is it such a common problem, or are there known causes for it?

View 2 Replies

ActionScript 2.0 :: Fscommand-Fullscreen Does Not Work In Flash Player 9

Aug 28, 2009

I have a problem with Flash Player 9. I have developed a flash application (projector) in Flash CS3 using AS2 . I can compile it into Flash 9 projector, but when I do that, it will not run FSCOMMAND("FULLSCREEN", true); anymore. I wonder why this is as such.

When I read through some help resources, somewhere it says that FSCOMMAND is not supported in FP9 because of some security reasons and it says that I should use External Interface API instead.

If I have to use External Interface whatever remember that I am working with flash projector (exe), not in a browser. I use "trapallkeys" to stop people from pressing ESC and CTRL-F to quit fullscreen mode. However, ESC and CTRL-F still work if I put "trapallkeys" above "fullscreen".

So the problem is, I only able to use either one, not both. This is really strange.

I could not make "showmenu", "false" to work either.

View 2 Replies

ActionScript 2.0 :: Create A Flash Music Player - Play - Pause - Stop - Volume And Show The Track?

May 12, 2008

the player needs to have a play, pause, stop, volume and also needs to show the track I'm currently listening to (play list).

View 1 Replies

Flash Player - Fullscreen Without User Interaction (automated Testing)?

Jul 4, 2010

At the moment I'm using Selenium-Flex to write functional tests for a video playback app.At the moment, I need to test that the app behaves appropriately when switched to fullscreen mode - make sure that the control bar is in a reasonable spot, the video resizes appropriately, etc., and of course to do that I need an automated way to make Flash Player go fullscreen.

For good reason, Flash's security features prevent being able to fullscreen except in response to user input. Actual user input, a javascript callback being called does not count.Is there any way to disable this security feature on my test rig, so I can actually run my automated tests on fullscreen mode? Barring that, is there any way to put Flash into fullscreen mode externally, so I can hack it up to work that way?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved