PDA

View Full Version : fullscreen FLV!


Mr.Pettersson
09-02-2008, 09:10 AM
hello!

i just seen a really beauty site who use the new fullscreen mode i as3..
http://lovestories.leica-camera.com/

And the swedish site how use the same fullscreen..
http://www.stopp.se/

does enyone know how i keep the fullscreen all the time, even when a drag the size of the browser window?

/Pettersson

Anil_kumar
09-02-2008, 11:20 AM
FlashCS3 - Full Screen Flash Website - I
http://flash-workshop.blogspot.com/2008/07/flashcs3-full-screen-flash-website.html


FlashCS3 - Full Screen Flash Website - II (True Full Screen)
http://flash-workshop.blogspot.com/2008/07/flashcs3-full-screen-flash-website-ii.html


Anil
Flash Workshop (http://flash-workshop.blogspot.com/)
anilkumarnd@gmail.com

amarghosh
09-02-2008, 12:20 PM
you won't see the browser's border when u r in full screen. hence u won't be able to drag it

Mr.Pettersson
09-03-2008, 08:24 AM
tanx for the replay... i pretty new in actionscript, and just learning as3, is the code on you page when it starts with "package {... is it a class? so i have to treat it that way:

Here is my NetConnection i use för playing my lite moive..

var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.setBufferTime(2);

ns.onStatus = function(info) {
if (info.code == "NetStream.Play.Stop") {
ns.seek(0);
}
};

my_video.attachVideo(ns);
ns.play("firework.flv");

question is how a link the code on you page to the NetConnection so i get fullscreen ;-)

so glad if you can point me in the right direction!!

/Pettersson