Flv Movie Player Scales Along With Page - Stop Scaling?

Mar 29, 2010

I have a website which im designing exclusively in flash. The project size is 1000x500. The video which im using is 320x150. On the stage ive set the player to 320x150. The stage size is 1000x500 (thats the size and span of the website). When the page works from the internet. It expands to fill the screen of the viewing computer. Which is what i want anyway since Ive set my publish settings to get this. But the video player gets scaled along with the page that scales to occupy the viewing screen. So when the player becomes a little larger than its orginal size the video looks low quality. Is there a way that the player alone could be set to maintain its orginal size of 320x150 and not scale because this is causing the video to get distorted and pixellated ?

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Gallery Scaling - When Preview In Browser The Dock Gallery Scales Out Of The Swf Area?

Jan 29, 2012

Im using a dock gallery fx from flash xml components. But for some reason when I preview in browser the dock gallery scales out of the swf area. This doesnt happen if i change the p[ublish setting to match movie. But if the publish setting is set to perscentage gallery scales.

View 3 Replies

Stop Video Player When Accessing Another Page?

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

ActionScript 1/2 :: Get Flash Player To Stop / When Change To Home Page

Jun 8, 2011

I'm building a website in flash using my limited understanding of action script.Everything was progressing very well until I found that if I go to one of my example pages of my web site and play the flash video (with audio)and click back to my "home" button, the audio will continue to play.If I go back to the example page, the video is off and when I start the  video, it plays again with the other audio.How do I stop the audio when I click away from the example page back to the home page or any other page?

View 7 Replies

ActionScript 2.0 :: Stop Player Streaming Automatically On Page Load?

Apr 29, 2008

I have a streaming MP3 player that i'm going to incorporate into my site. Below is the AS for the player. At the moment the player starts automatically when the page loads up. Can someone tell me what i'd need to change so the player doesn't start streaming on page load....?

Code:
stop();
playlist = new XML();

[code].....

View 1 Replies

Flash :: Music Player Stop Working - Embed It Into Index Page?

May 3, 2010

Inside my /test folder/music_player/ have have a file called mini_player.swf. If I play it without embedding it anywhere, like this: [URL].. everything is OK. But when I add it into my index page: [URL].. the song doesn't start.

[Code]...

View 1 Replies

Actionscript 2.0 :: BrowserResize - Whole Page Is Always In View And Scales Until It Reaches A Set Maximum Size

Jan 28, 2010

[Code]....

I've been trying to add a resize function to this so that it can be viewed in different size browsers. Exactly like the opening page of this site [URL] So the whole page is always in view and scales until it reaches a set maximum size.

View 2 Replies

ActionScript 3.0 :: Gallery Page With A Bunch Of Page Numbers - Click On A Page Number, The Over Script Should Stop Until Go To Another Page?

Jan 26, 2009

i'm trying to build a flash site and ran into a problem... i have a gallery page with a bunch of page numbers at the top. when you click on one, a movieclip loads of some images coming in.so the problem i'm having is that i made a little animation for when you roll the mouse over the page number (they scale up when the mouse is over, scale back when the cursor moves away)... what it's doing is when you roll over, it goes to a certain frame in the timeline and plays that animation.that's all working cool, but i need it to not do that once it's clicked on. so basically when you actually click on a page number, the over script should stop until you go to another page... here's the code i've written,

function over(event:MouseEvent):void {
this.gotoAndPlay(30);}
function out(event:MouseEvent):void {[code].....

View 0 Replies

ActionScript 2.0 :: Change The Page / Margin Size So The Content Can Fit In The Page Without Scaling

Jun 11, 2010

I'm trying to print a mc which is bigger than the default page size. I want to change the page/margin size so the content can fit in the page without scaling. Per the API reference [URL] the page settings are readonly. How can I print something bigger than the default page size? Is it doable in AS2 or AS3?

View 2 Replies

ActionScript 2.0 :: Stop Scaling - Stop It Going Back To It Original Value And Scale Again And Again?

Jun 8, 2005

I have a movieclip that I want to be scaled to 400.After that I don�t want it to scale anymore.How can I stop it going back to it�s original value and scale again and again.I have the as in "On enter frame",I dont want a button to be pressed to start scaling.

View 6 Replies

ActionScript 2.0 :: No Resize/scaling A Movie Clip On The Scaling Stage?

Mar 11, 2008

I've search through all the threads with "scaling" and "resizing" and can't find the solution.

Basically I have a GUI element on a gallery that I don't want to scale, while the rest of the page is free to resize/scale.

I think I need to add a listener of some sort to the stage, but I'm not sure how to do this.

View 2 Replies

ActionScript 2.0 :: Stop Movie Clip Going Off The Page

Mar 11, 2010

so im basically in the very early stages of building my very own version of space invaders i have made the gun emplacement go from left to right suing the arrow keys on the keyboard but when they reach one side they continue off the screen ive been looking at different things to fix this but nothing is sinking in my original code i made for the gun was

MjtGun.onEnterFrame = function() {
if(Key.isDown(Key.LEFT)) this._x -=5;
else if(Key.isDown(Key.RIGHT)) this._x += 5;
}

stop it from continuing off screen?

View 2 Replies

ActionScript 2.0 :: Change The Scales Of Movie Clip

Feb 15, 2005

i have a problem with flash mx 2004! I have 2 scenes.At first scene i have one button1 into in one movie clip1 and at second scene i have only one movie clip!!!Now, i want when i press the button (at first scene) i can to change the scales of movie clip2 (at second scene)! My code is this and i can go to scene 2 but i don't change the _scales!

on(press){
_root.gotoAndStop("Scene 2",1);
_root.mc2._xscale=200;
_root.mc2._yscale=200;}

View 6 Replies

Flashvars To Stop Movie Reloading On Page Refresh

May 13, 2011

I have a flash banner on every page in my site. I want it to continue playing rather than reloading when users change pages. Ive read that this can be achieved using flashvars.

I have this on frame 1 of my fla file now:
var mySharedObject:SharedObject = SharedObject.getLocal("displayCookie");
if(mySharedObject.data.displayed == true){
gotoAndPlay(currentFrame);
trace("cookie found");
[Code] ....

But I don't know how to give the currentFrame the value it had at the time the page was refreshed. How do I put that in there?

View 2 Replies

Stop Movie From Restarting When Player Receives Focus?

Sep 15, 2009

I've created several buttons and each contains a movie clip.  I then placed each button on the main scene.  Everything works well except the movie restarts every time the button over event is fired.  I added a mouse over listener to each button so I can reposition the button.  However, the movie restarts even if I don't reposition the button.  (i.e. Button 1 is active and the mouse leaves the player and returns to Button 1.)  How do I keep the movie that is embedded in the button from restarting?

View 2 Replies

Flash :: Html - Embed A Movie So That It Scales With The Browser Window?

Oct 13, 2010

i would like to show my flash movie in a browser window so that it fills width and height as good as possible without distorting the movie. when i use the width and height attribute to the object/embed tags it only scales the width but not the height.

[Code]...

View 3 Replies

ActionScript 3.0 :: When A Button Is Pressed / Content Movie Moves Down To Right / Scales Down

Jul 13, 2010

I am just learning actionscript 3.0 and am hoping someone can help me with a little problem. My code seems correct but only works half the time when I preview it. All I am trying to do is when a button is pressed, the content movie moves down to the right and scales down to 50%. The code works perfectly for the first few times I push the buttons but then starts to move some of the way and stop and I have to press the button at least one more time to get it to complete! Sorry this is so long winded but I don't know how to phrase it!

View 4 Replies

ActionScript 3.0 :: How To Stop Scaling On Mouse Up

May 7, 2009

In this code when I MOUSE_DOWN on the upArrow the box scales larger till it's 350 pixels wide I want the scaling to stop on MOUSE_UP. Example [URL]
import flash.display.Sprite;
import flash.events.MouseEvent;
var square:Sprite = new Sprite();
square.graphics.beginFill(0xFFCC00);
square.graphics.drawRect(0, 0, 100, 100);addChild(square);
[Code] .....

View 5 Replies

ActionScript 1/2 :: Zoom - Stop The Page Being Dragged Past A Certain Point So The Static Page Is Not Seen?

Sep 22, 2009

When i zoom into the page then move around the edge of the page can be moved past the edge of the browser window showing the static page which appears at the start of the document. Is it possible to use actionscript to stop the page being dragged past a certain point so the static page is not seen? On the example below the static page is white so it does not pose too much of a problem however im using the static page as a sort of instruction page and it looks a bit rubbish if the user drags a page past the edge of the view window and see's the original page. Example below. [URL]

View 1 Replies

ActionScript 3.0 :: Stop A Tiled MovieClip From Scaling?

Nov 5, 2010

I have a movieClip in my metronome you can see here: When I resize the metronome the tiled movie clip I use for the decorative borders resizes as well and I would like it to tile more images when it is resizedI would like more tiles and I want them to be their original size.

View 3 Replies

ActionScript 3.0 :: Stop Sound On Current Page When Going To Previous Page?

Oct 19, 2010

I'm working on a pretty basic interactive children's book. I have it set up so that each page has audio relating to that specific page. Going forward, there is no issue with sound overlapping from the current and next pages. Going backward, however, there is an issue with sound playing on both the current and previous pages. How do I stop this?

Here is the script I'm using-

ActionScript Code:
stop();
import flash.events.MouseEvent;

[Code].....

View 3 Replies

Professional :: CPU Usage When Scaling The Flash Player

Nov 12, 2010

Do anybody know about how flash player render the content when we do the scaling? Let's say i have 2 flash swf file. swf1 : the stage size is 2000 px x 2000 px. + 1 movieclip with 100% transform swf2 : the stage size is 1000 px x 1000 px. + 1 movieclip with 50% transform Let's say there is a movie clip on swf1. So i copy the same movie clip to 1000 px x 1000 px file and transform the movieclip to 50%. So it will look the same if i scale the swf2 x 2. If there is any different on swf1 and swf2 in team of CPU usage or etc?

Like is it true when playing swf2 need more CPU usage than swf1 because swf2 need to do the scaling but swf1 not. Just not sure which way i should develop the content. Because i have to make some content and the width/height are about 3000 px. So i am thinking if i should set the stage close to limit 2880 or just make the content like swf2. And my concern is if it will use more CPU when do the scaling.

View 3 Replies

ActionScript 2.0 :: Load A Different Page For The Flash Player To Scroll Up All The Way To The Top Of The Page Itself?

Apr 25, 2007

Im working on a website for school, and im doing it through flash. The server ive been given is being taken up by thousands of pages, so its slow. Instead of loading each page through HTML, ive decided i could do a seperate frame for each page. However, to reach the menu at the bottom, you have to scroll down. Is there any way to make it so that when you click a button to load a different page for the flash player to scroll up all the way to the top of the page itself?

View 1 Replies

Actionscript 3 :: Disable Zooming / Scaling When Player Is Resized?

Oct 18, 2010

I am working on an application that uses raster images, so it only looks good at native resolution.

Is there a way to force the graphics to never be scaled?

View 4 Replies

IDE :: Flash Video Player Full Screen Scaling?

Mar 15, 2009

I'm workin on a multimedia CD that I'm creating entirely with Flash. I have just ncorporated 2 video files. They play in the flash players fine but when I click on the Full Screen mode it blows the video up way to big to the point were I can only see a small section of it.

View 1 Replies

ActionScript 2.0 :: Stop Action At End Of Movie On Last Keyframe / But Movie Doesn't Stop

Nov 19, 2003

I put the "stop" action at the end of my movie on the last keyframe, but the movie doesn't stop!

View 14 Replies

ActionScript 2.0 :: [Flash8] Place An External Swf File On It In A Desired Position When The Corresponding Page Is Being Loaded + Scaling

Aug 18, 2006

I have a flash file (a flash navigation bar actually, which gets loaded in all the webpages inside the website). What I am trying to do is place an external swf file on it in a desired position when the corresponding page is being loaded. I am using FlashVars (variable name -> 'movieName') to pass the name of the movie clips. These variables are read by the navigation swf file and the corresponding swf file should be loaded in the area specified. Now, to create a container, I am using createEmptyMovieClip() method which will host all the external swf files.

The swf files are all being loaded but with a lot of problems. First, no matter what I try, the swf file comes at a fixed place (which is way off from where it is supposed to be). I have tried checking if the container loaded the movie before fixing its position but it changed nothing. Although it did change the position of a weird background colour box I am getting when the movie starts loading - which brings me to the second problem.

A rectangular box flashes once when the external swf is loaded, and its position is being affected by whatever I am setting the _x & _y values of the container movies to. I have no idea why it is happening as it doesn't happen when I test that swf seperately.

[Code]...

View 1 Replies

Flash :: Program An Html Page To Move To A New Web Page On User's Clicking An Item Of An Embedded Movie?

Nov 21, 2011

Let me ask how to program an html page to move to a new web page on user's clicking an item of an embedded flash movie? But , in detail, I actually want to do a little different thing. I want that the parent html page remains there ,instead I want a child html frame has a new page after user's clicking the list item of the embedded flash movie.

View 2 Replies

Actionscript 3.0 :: Movie Doesn't Stop At Any Of Stop Commands And Keeps Looping Through Itself Over And Over Again

Jan 5, 2010

Im attempting to make a preloader. I am very new to action script so this is what i have.

Code:
ifFrameLoaded ( "UC" ) {
gotoAndPlay ( "home" );
}

as simple as it gets, right? Wrong, the preloader works however is get this error 1087: Syntax error: extra characters found after end of program. The preloader it self works it plays and when the movie is loaded it begins the movie, however the movie doesnt stop at any of my stop commands and keeps looping through itself over and over again till i exit the window.

View 1 Replies

ActionScript 3.0 :: Stop Movie By Using Stop(); But Keep Buttons Working

Jul 1, 2009

I'm making a website using flash,And on my movie it says Welcome to Blah Blah Blah,And then a button appears, To make sure my button works,The writing turns to bold and goes bigger,When the button appears it works and goes bigger, Until it reaches the point in the timeline where it has stop();It stops my movie from looping or restarting which is what i want, But it stops my buttons from working aswell, How to keep my button working but movie stops,If you want me to explain more just ask

View 1 Replies







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