Re: [Flashcoders] Fullscreen Hardware Acceleration and Video Player Skins

2011-01-13 Thread David Bellerive
Media Playback SWF. So I'm still clueless to this day. It's like one of those things in Flash that I just can't seem to figure out. --- On Thu, 1/13/11, Ben Sand wrote: > From: Ben Sand > Subject: Re: [Flashcoders] Fullscreen Hardware Acceleration and Video Player > S

Re: [Flashcoders] Fullscreen Hardware Acceleration and Video Player Skins

2011-01-12 Thread Ben Sand
Using youtube, i find the controls are distorted, but they don't seem to have been blown up as big as the video. It appears' they've shrunk the controls before they're attached and then zoomed the whole thing up. If you can detect the size of the screen and don't mind the controls being a bit pix

[Flashcoders] Fullscreen Hardware Acceleration and Video Player Skins

2011-01-12 Thread David Bellerive
Hi everyone, This question has been puzzling me forever. How is it possible, when you build a video player in Flash, to have a fullscreen button that sends the video in fullscreen mode USING HARDWARE ACCELERATION but without distorting (scaling) the video player skin with it? I know it's possi

RE: [Flashcoders] fullscreen exe not working!

2010-06-24 Thread David Hunter
Jun 2010 22:58:47 +0200 > From: he...@henke37.cjb.net > To: flashcoders@chattyfig.figleaf.com > Subject: Re: [Flashcoders] fullscreen exe not working! > > Use the Stage class instead of those fscommand things. > ___ > Flashcode

Re: [Flashcoders] fullscreen exe not working!

2010-06-24 Thread Henrik Andersson
Use the Stage class instead of those fscommand things. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] fullscreen exe not working!

2010-06-24 Thread David Hunter
Hi all, I have made a calculator application that must be deployed as a projector .app and .exe files. When the application launches it goes fullscreen using fscommand. The .app version has worked fine throughout development (i'm working on a mac using CS3 and it is programmed in AS3) but the .

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Fixed - forgot the a param in the SWFObject code: swfobject.embedSWF("YZLoader.swf", "flashcontent", "100%", "100%", "10.0.0" , false, flashvars, params ); Again - Thanks for taking the time to reply ... Regards Karim Beyrouti On 23 Jun 2010, at 16:30, Karim Beyrouti wrote: > also - just

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Andrew Kenward
23 Jun 2010, at 16:31, flashcoders-requ...@chattyfig.figleaf.com wrote: > Re: [Flashcoders] FullScreen - not working ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Done - but still no joy... starting to feel like ..errr... like chucking my laptop out of the window private function ClickFullScreenButton(event : MouseEvent) : void { if (stage.displayState == StageDisplayState.NORMAL) { stage.displaySt

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
also - just for a note - it works in the standalone player, not the browser... - k On 23 Jun 2010, at 16:18, Ángel Ambrosio Pazo wrote: > Your MenuEvent class extends from "Event" or from "MouseEvent"? > > Mix the two solutions: swfobject param in boolean type and your MenuEvent > class extend

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Ángel Ambrosio Pazo
Your MenuEvent class extends from "Event" or from "MouseEvent"? Mix the two solutions: swfobject param in boolean type and your MenuEvent class extending from MouseEvent. Ángel Ambrosio Interactive Developer angelambro...@gmail.com 2010/6/23 Karim Beyrouti > Cheers - however- it does not work

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Cheers - however- it does not work Example with Boolean instead of string in param: http://clients.kurst.co.uk/ycommaz/13 - karim On 23 Jun 2010, at 15:32, Ángel Ambrosio Pazo wrote: > Set the fullScreen param in boolean not in string. > >> From your HTML code: > > var params =

RE: [Flashcoders] FullScreen - not working

2010-06-23 Thread Merrill, Jason
...@chattyfig.figleaf.com] On Behalf Of Karim Beyrouti Sent: Wednesday, June 23, 2010 10:22 AM To: Flashcoders List Subject: [Flashcoders] FullScreen - not working Kinda feel silly with this question, I can't get fullscreen mode to work: URL: http://clients.kurst.co.uk/ycommaz/12 HTML con

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
t; Sent: Wednesday, June 23, 2010 10:22 AM > To: Flashcoders List > Subject: [Flashcoders] FullScreen - not working > > Kinda feel silly with this question, I can't get fullscreen mode to > work: > > URL: http://clients.kurst.co.uk/ycommaz/12 > > HTML contains - al

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Ángel Ambrosio Pazo
Set the fullScreen param in boolean not in string. >From your HTML code: var params = {}; params.wmode= "opaque", params.menu = false; params.allowScriptAccess = 'always'; params.allowFullScreen = true; params.bgcolor = '#ff'; Ángel Ambrosio Interactive Developer angelambro...@gmail.com 2

[Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Kinda feel silly with this question, I can't get fullscreen mode to work: URL: http://clients.kurst.co.uk/ycommaz/12 HTML contains - allowFullScreen:'true' - and the fullscreen code is: private function ToggleFullScreen(event : MenuEvent) : void { stage

Re: [Flashcoders] fullscreen security issue?

2009-11-24 Thread Ian Thomas
Hi Michael, No, FULL_SCREEN doesn't prevent mouse clicks; it just prevents most keypresses (but still allows cursor keys, space, enter etc.). HTH, Ian On Tue, Nov 24, 2009 at 8:56 PM, Mendelsohn, Michael wrote: > Hi list... > > I'm trying to set my swf (in a web page) to StageDisplayState.

[Flashcoders] fullscreen security issue?

2009-11-24 Thread Mendelsohn, Michael
Hi list... I'm trying to set my swf (in a web page) to StageDisplayState.FULL_SCREEN and StageScaleMode.SHOW_ALL. It works, but oddly, the clickable items are still clickable. I thought in full screen mode, mouse and keyboard events are supposed to be prevented, right? And, when I click thes

Re: [Flashcoders] fullscreen weirdness (solution)

2009-09-03 Thread Ian Thomas
On Thu, Sep 3, 2009 at 4:35 PM, Joe Cutting wrote: > Ian reported problems with the Javascript version and Chrome. I'd be > interested to hear if anyone else has problems with one or the other. Both versions now work fine with latest Chrome, Firefox, Safari and with IE7 - that seems to have solve

RE: [Flashcoders] fullscreen weirdness (solution)

2009-09-03 Thread Merrill, Jason
>>- If the buttons which call the fullscreen change are using >>MouseEvent.MOUSE_DOWN, it doesn't happen if they're using MouseEvent.CLICK I know one Flash player 9/10 rule about initiating full screen is it has to be user initiated, and I know even though MouseEvent.MOUSE_DOWN is technically a u

[Flashcoders] fullscreen weirdness (solution)

2009-09-03 Thread Joe Cutting
Ok, here's an update on this. I built a test rig and managed to reproduce the problem and found out that it only happens: - If you're using Firefox (IE and safari are fine) - If you're NOT using StageScaleMode.NO_SCALE - If the buttons which call the fullscreen change are using MouseEvent.MOUSE_

Re: [Flashcoders] fullscreen weirdness

2009-09-03 Thread Ian Thomas
Joe, What code are you using to do the fullscreen switch? Again, I'm getting problems with the Chrome version - so if it's not your embedding causing the problems, it must be somewhere in your AS code... Ian On Wed, Sep 2, 2009 at 6:01 PM, Joe Cutting wrote: >>> > You're definitely doing somet

[Flashcoders] fullscreen weirdness

2009-09-02 Thread Joe Cutting
>> You're definitely doing something peculiar - in Chrome, after I click to go fullscreen on your movie, nothing is clickable at all! I have to press Esc to get out of full screen. In Firefox it seems to work okay. I'd switch to using SWFObject for embedding your movie in HTML; that's what I use,

Re: [Flashcoders] Fullscreen wierdness

2009-09-02 Thread Ian Thomas
You're definitely doing something peculiar - in Chrome, after I click to go fullscreen on your movie, nothing is clickable at all! I have to press Esc to get out of full screen. In Firefox it seems to work okay. Looking at the HTML source, you've got some very complicated Flash and browser detecti

[Flashcoders] Fullscreen wierdness

2009-09-02 Thread Joe Cutting
Hello, I'm having some problems with full screen mode. I've got a game which really needs to be played in fullscreen mode. So users have to press a button at the start which sets fullscreen mode. They can close it at any time by pressing a close button which makes it smaller again but redispl

Re: [Flashcoders] Fullscreen Mode with TWO projectors

2009-02-19 Thread Tamara
Hi, Try to build it on AIR. You would work with just one application which connect two screens via NativeWindow class. It opens two fullscreens simultaneously and you don't have to use localConnection. Tamara On Thu, Feb 19, 2009 at 4:33 PM, Merrill, Jason < jason.merr...@bankofamerica.com> w

RE: [Flashcoders] Fullscreen Mode with TWO projectors

2009-02-19 Thread Merrill, Jason
>> Stop the email please thank you What I think are funny about these posts are when the person replies without changing the subject line, so you can see what message finally pushed them over the top. Another funny thing is, you wonder what they thought they were signing up for when they subscrib

Re: [Flashcoders] Fullscreen Mode with TWO projectors

2009-02-19 Thread Glen Pike
Hi, Have you tried with just the SWF versions of your apps? Hi, I tried this with 2 normal SWF's this morning on my Windows XP dual monitor setup and I can get both Flash apps to go full screen. One starts fullscreen anyway with fscommand, the other I can use CTRL+F to go fullscr

Re: [Flashcoders] Fullscreen Mode with TWO projectors

2009-02-18 Thread Nate Beck
Bernice - visit http://chattyfig.figleaf.com/mailman/listinfo/flashcoders If you want to unsubscribe... On Wed, Feb 18, 2009 at 9:07 PM, bernice guerrero wrote: > Stop the email please thank you > > On Feb 18, 2009 10:04 PM, "Randy Tinfow" wrote: > > Doing a project which has two fullscreen pro

[Flashcoders] Fullscreen Mode with TWO projectors

2009-02-18 Thread Randy Tinfow
Doing a project which has two fullscreen projectors: On monitor #1 is a touchscreen menu. On monitor #2 is a content container. These two projectors communicate using the LocalConnection class.  Works great. So I drag executable #2 to monitor #2, doubleclick and it starts fullscreen.  The I dou

Re: [Flashcoders] Fullscreen Mode with TWO projectors

2009-02-18 Thread bernice guerrero
Stop the email please thank you On Feb 18, 2009 10:04 PM, "Randy Tinfow" wrote: Doing a project which has two fullscreen projectors: On monitor #1 is a touchscreen menu. On monitor #2 is a content container. These two projectors communicate using the LocalConnection class. Works great. So I d

[Flashcoders] Fullscreen Flash Video

2008-05-20 Thread Sander Schuurman
Hi people, On some sites I do see some really smooth fullscreen video action... What's the best way of doing this. What are the points to look out for... - encodingwise? - Using netstream? - Using bitmap(data) objects? Like for example http://www.blackb

Re: [Flashcoders] fullscreen keyboard functionality

2008-03-10 Thread Allandt Bik-Elliott (Receptacle)
ah that's good news for me thanks On 10 Mar 2008, at 17:39, Cedric Muller wrote: Maybe it is only disabled when in browser mode ? "These restrictions apply to the Flash plug-in and ActiveX control but not to the Flas

Re: [Flashcoders] fullscreen keyboard functionality

2008-03-10 Thread Steven Sacks
Allandt Bik-Elliott (Receptacle) wrote: "All keyboard-related ActionScript, such as keyboard events and text entry in TextField instances, is disabled in full-screen mode. The exception is the keyboard shortcuts that close full-screen mode." The docs are wrong. Any Papervision 3D demo th

Re: [Flashcoders] fullscreen keyboard functionality

2008-03-10 Thread Cedric Muller
Maybe it is only disabled when in browser mode ? "These restrictions apply to the Flash plug-in and ActiveX control but not to the Flash stand-alone player or Flash projectors." cedric hi i'm making a cs3 projector wh

[Flashcoders] fullscreen keyboard functionality

2008-03-10 Thread Allandt Bik-Elliott (Receptacle)
hi i'm making a cs3 projector which uses stage.displayState = StageDisplayState.FULL_SCREEN to go full screen. However when i checked in the help file, it said "All keyboard-related ActionScript, such as keyboard events and text entry in TextField instances, is disabled in full-screen mode.

[Flashcoders] Fullscreen keyboard input

2008-02-05 Thread JulianG
Hi! I did this pong game (http://www.pixeltoys.net/2008/01/29/actionscript-3-pong.html) just to try AS3. The game can be controlled using the keyboard or the mouse. then I tried the full-screen feature just to learn that: "Users cannot enter text in text input fields while in full-screen mode

Re: [Flashcoders] fullscreen

2008-02-05 Thread Jason Van Cleave
http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html On Feb 5, 2008 12:09 PM, Pedro Kostelec <[EMAIL PROTECTED]> wrote: > Hi list > > Does enyone know how to make this fullscreen function like this one here: > http://bb.amctv.com/main.html ? > (Press the fullscreen button on th

Re: [Flashcoders] fullscreen

2008-02-05 Thread Glen Pike
http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html Pedro Kostelec wrote: Hi list Does enyone know how to make this fullscreen function like this one here: http://bb.amctv.com/main.html ? (Press the fullscreen button on the bottom right)Looks the same think like in youtube.

[Flashcoders] fullscreen

2008-02-05 Thread Pedro Kostelec
Hi list Does enyone know how to make this fullscreen function like this one here: http://bb.amctv.com/main.html ? (Press the fullscreen button on the bottom right)Looks the same think like in youtube. -- Pedro D.K. ___ Flashcoders mailing list Flashc

[Flashcoders] Fullscreen option for streaming flash video

2007-08-06 Thread Magro, Shay (Citco)
I have been trying to add the fullscreen option to a video player I created which plays streaming flash video. Right now, from a php page, I am calling the appropriate video based on the variable passed in the code embedding the flash movie in the html. However, in trying to use the new skin in

Re: [Flashcoders] Fullscreen problem

2007-07-06 Thread Matthias Dittgen
but why? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http

Re: [Flashcoders] Fullscreen problem

2007-07-06 Thread Jer Brand
And confirmed you can't get around it with a onKeyDown listener. Everything but Esc appears to be locked out. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/f

RES: [Flashcoders] Fullscreen problem

2007-07-06 Thread Izaias / Grafikonstruct
Yes Muzak, I did see it now. Thank you so much! Izaias -Mensagem original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Em nome de Muzak Enviada em: sexta-feira, 6 de julho de 2007 12:40 Para: flashcoders@chattyfig.figleaf.com Assunto: Re: [Flashcoders] Fullscreen problem Tried the

Re: [Flashcoders] Fullscreen problem

2007-07-06 Thread Jer Brand
I'm pretty sure that was a limitation of Full Screen in the docs. I haven't tried it yet, but if you're desperate to keep the full screen, you might see if you can use a Key listener to capture keyboard input and set the text of the text field. If the form's very complex, you may have to inter

Re: [Flashcoders] Fullscreen problem

2007-07-06 Thread Muzak
zaias / Grafikonstruct" <[EMAIL PROTECTED]> To: Sent: Friday, July 06, 2007 5:00 PM Subject: [Flashcoders] Fullscreen problem > Hi everyone! > I have created a website with fullscreen option, using the follow code: > > Stage.displayState = "fullScreen" (To enable fullscreen v

Re: [Flashcoders] Fullscreen problem

2007-07-06 Thread eka
Hello :) no solution for the moment for your problem :) The fullscreen mod disabled the input fields.. Adobe implement this restriction but i don't know why ? EKA+ :) 2007/7/6, Izaias / Grafikonstruct <[EMAIL PROTECTED]>: Hi everyone! I have created a website with fullscreen option, using the

[Flashcoders] Fullscreen problem

2007-07-06 Thread Izaias / Grafikonstruct
Hi everyone! I have created a website with fullscreen option, using the follow code: Stage.displayState = "fullScreen" (To enable fullscreen version) Stage.displayState = "normal" (to back normal view) But I have a big problem: My website have a form with some editable fields, and if I click in f

Re: [Flashcoders] fullscreen javascript

2007-02-02 Thread Martin Klasson
t: Re: [Flashcoders] fullscreen javascript well it works on safari, there is a way to detect the browser type in order to redirect or to open a window Regards. On Feb 1, 2007, at 1:58 PM, Helmut Granda wrote: Gustavo, the fullScreen command only works in IE (I didnt know it did work in S

Re: [Flashcoders] fullscreen javascript

2007-02-01 Thread Cay Garrido H.
ailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas Sent: Thursday, February 01, 2007 2:03 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] fullscreen javascript well it works on safari, there is a way to detect the browser type in order to redirect or to open a window Regards. On

RE: [Flashcoders] fullscreen javascript

2007-02-01 Thread Hairy Dog Digital
rsday, February 01, 2007 2:03 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] fullscreen javascript well it works on safari, there is a way to detect the browser type in order to redirect or to open a window Regards. On Feb 1, 2007, at 1:58 PM, Helmut Granda wrote: >

Re: [Flashcoders] fullscreen javascript

2007-02-01 Thread Andy Herrman
It would probably be better if you find one solution that works for all browsers (that you want to support) instead of trying to switch between different methods for different browsers. Browser detection isn't always completely accurate, and it adds unnecessary complexity. We do something like t

Re: [Flashcoders] fullscreen javascript

2007-02-01 Thread Gustavo Duenas
well it works on safari, there is a way to detect the browser type in order to redirect or to open a window Regards. On Feb 1, 2007, at 1:58 PM, Helmut Granda wrote: Gustavo, the fullScreen command only works in IE (I didnt know it did work in Safari). So you have to look for an alt

Re: [Flashcoders] fullscreen javascript

2007-02-01 Thread Helmut Granda
Gustavo, the fullScreen command only works in IE (I didnt know it did work in Safari). So you have to look for an alternative to launch a fullscreen in FF/Netscape/Moz On 2/1/07, Gustavo Duenas <[EMAIL PROTECTED]> wrote: hi guys Iknow this is not for javascript but I think you might know of

[Flashcoders] fullscreen javascript

2007-02-01 Thread Gustavo Duenas
hi guys Iknow this is not for javascript but I think you might know of this, is a easy thing, I'm trying to open a browser window fullscreen, using javascript, in safari looks great and maybe in IE but in firefox, open the window but less than I expect in size. the code is. If one of you c

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread MetaArt
You can use this: where 'yourfullscreen.htm' is the page that you want open with fullscreen JavaScript inside. In this way, you first launch an empty window of browser (maybe by an autoexec, I suppose) where there is the above code inside head tag; the code itself after 0 seconds (=immediately) go

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread 8ball Developer
Enrico, Can you explain more? Wouldn't the refresh loop then? Thanks On 7/7/06, MetaArt <[EMAIL PROTECTED]> wrote: you can use a 'dirty' solution: launch first an empty window with in the head tag, and from this open your fullscreen window. workin' offline, this will be so fast that users ca

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread MetaArt
you can use a 'dirty' solution: launch first an empty window with in the head tag, and from this open your fullscreen window. workin' offline, this will be so fast that users can't realize it... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http:/

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread 8ball Developer
even Sacks - 310-551-0200 x209 > -Original Message- > From: [EMAIL PROTECTED] [mailto:flashcoders- > [EMAIL PROTECTED] On Behalf Of 8ball Developer > Sent: Friday, July 07, 2006 10:26 AM > To: Flashcoders mailing list > Subject: Re: [Flashcoders] Fullscreen from SWF >

RE: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread Steven Sacks | BLITZ
ll Developer > Sent: Friday, July 07, 2006 10:26 AM > To: Flashcoders mailing list > Subject: Re: [Flashcoders] Fullscreen from SWF > > I don't want to send .exe around. I have 1 html, 1 swf and to represent it > in fullscreen mode. > > On 7/7/06, Ian Thomas <[EMA

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread 8ball Developer
I don't want to send .exe around. I have 1 html, 1 swf and to represent it in fullscreen mode. On 7/7/06, Ian Thomas <[EMAIL PROTECTED]> wrote: But if you're running offline, you could use a swf2exe tool such as SWFStudio, Screenweaver or Zinc. HTH, Ian On 7/7/06, Jim Berkey <[EMAIL PROTECT

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread 8ball Developer
er" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, July 07, 2006 10:34 AM Subject: [Flashcoders] Fullscreen from SWF > I'm trying to make the browser window containing my swf go full screen. I > NEED to make this work accross browsers/platforms (IE, S

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread David Rorex
ight" blank - Original Message - From: "8ball Developer" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, July 07, 2006 10:34 AM Subject: [Flashcoders] Fullscreen from SWF > I'm trying to make the browser window containing my swf

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread John Hart
Oops.. for the full effect to work on any resolution leave the field "Width and Height" blank - Original Message - From: "8ball Developer" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, July 07, 2006 10:34 AM Subject: [Flashcoders]

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread John Hart
This guy has the best solution there is for your full screen problem give it a try :) http://www.flash-db.com/PopUp/PopUp.html - Original Message - From: "8ball Developer" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, July 07, 2006 10:3

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread Ian Thomas
But if you're running offline, you could use a swf2exe tool such as SWFStudio, Screenweaver or Zinc. HTH, Ian On 7/7/06, Jim Berkey <[EMAIL PROTECTED]> wrote: My understanding is that it is not possible to make the current browser window fullscreen via any code. It is possible to open a new b

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread Jim Berkey
My understanding is that it is not possible to make the current browser window fullscreen via any code. It is possible to open a new browser window full screen via pop-up, but any browser pop-up blockers would stop this ( google for 'javascript fullscreen') - so in effect, there is no bullet-pro

[Flashcoders] Fullscreen from SWF

2006-07-07 Thread 8ball Developer
I'm trying to make the browser window containing my swf go full screen. I NEED to make this work accross browsers/platforms (IE, Safari, Firefox/PC, Mac). Does anyone have code that works and are you willing to share :). Thanks. P.S. I promise not use this on a site, I hate windows that change si

Re: [Flashcoders] Fullscreen issues

2006-02-26 Thread stacey
hahahah ! major typo " Top Lost" um. Top Left! I've been watching too many Lost season 2 episodes all in a row. > You need to not only set the scale mode to noScale but you need to set > the resize regpoint to Top Lost > Stage.align="TL"; > > Try that. > >> On 2/27/06, slam dunk <[EMAIL PROTECTED

Re: [Flashcoders] Fullscreen issues

2006-02-26 Thread Nik Derewianka
That did it! Thanks, -- :: Nik Derewianka :: ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorize

Re: [Flashcoders] Fullscreen issues

2006-02-26 Thread stacey
You need to not only set the scale mode to noScale but you need to set the resize regpoint to Top Lost Stage.align="TL"; Try that. > On 2/27/06, slam dunk <[EMAIL PROTECTED]> wrote: >> >> try this tag in .html >> > > It's in a projector... but at least the noScale property is the one i > am loo

Re: [Flashcoders] Fullscreen issues

2006-02-26 Thread Nik Derewianka
On 2/27/06, slam dunk <[EMAIL PROTECTED]> wrote: > > try this tag in .html > It's in a projector... but at least the noScale property is the one i am looking for. However it resizes everything by moving the center of the stage to be in the center of the projector window, thus if you make the pr

Re: [Flashcoders] Fullscreen issues

2006-02-26 Thread slam dunk
try this tag in .html On 2/26/06, Nik Derewianka <[EMAIL PROTECTED]> wrote: ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fi

[Flashcoders] Fullscreen issues

2006-02-26 Thread Nik Derewianka
Hi All, I am making a flash projector for both mac and win, it issues an fscommand("fullscreen","true") and i cycle through an array of pictures by attachMovie()'ing a picture on the stage that is regpoint (0,0) and positioned (0,0) with the dimensions set to Stage.width and Stage.height. I am no

Re: [Flashcoders] Fullscreen flash SOLVED

2006-01-27 Thread Andreas Rønning
Er, Stage.align = "TL" even. I need my coffee. - Andreas Andreas Rønning wrote: Also, be sure to check your Stage.align value if you're doing things based on Stage.width and height. I was tearing hair out of my scalp before i realised all i needed was Stage.align = "left"; - Andreas Mike Bo

Re: [Flashcoders] Fullscreen flash SOLVED

2006-01-27 Thread Andreas Rønning
Also, be sure to check your Stage.align value if you're doing things based on Stage.width and height. I was tearing hair out of my scalp before i realised all i needed was Stage.align = "left"; - Andreas Mike Boutin wrote: Thanks Ian, works like a charm! Ian Thomas wrote: Hi Mike, It's

Re: [Flashcoders] Fullscreen flash SOLVED

2006-01-26 Thread Mike Boutin
Thanks Ian, works like a charm! Ian Thomas wrote: Hi Mike, It's a Known Feature with Firefox. It's not strictly speaking a bug - the browser doesn't know how high the document is supposed to be, because there's no sized content in the document. Try sticking this in the body,html { mar

Re: [Flashcoders] Fullscreen flash

2006-01-26 Thread Ian Thomas
Hi Mike, It's a Known Feature with Firefox. It's not strictly speaking a bug - the browser doesn't know how high the document is supposed to be, because there's no sized content in the document. Try sticking this in the body,html { margin:0px; padding:0px; height:100%; } If that

[Flashcoders] Fullscreen flash

2006-01-26 Thread Mike Boutin
Hi, I am making a fullscreen flash site and I have the width and height set to 100%. In internet explorer it all views fine, but when I view the same page in Firefox and Safari, the flash document doesnt stretch to 100%, it only shows like 1/3 of the page as flash and the rest as just plain

Re: [Flashcoders] Fullscreen Flash issue

2006-01-16 Thread Mike Boutin
Yes thanks this seems to work. Still not sure why it was doing what it was, either way thanks for the help! Marc Hoffman wrote: not sure why, but try putting Stage properties in a new variable that doesn't get reset when repositioning the object: theWidth=Stage.width/2; theHeight=Stage.heig

Re: [Flashcoders] Fullscreen Flash issue

2006-01-16 Thread Marc Hoffman
not sure why, but try putting Stage properties in a new variable that doesn't get reset when repositioning the object: theWidth=Stage.width/2; theHeight=Stage.height-70; siteLogo._x = theWidth; siteLogo._y = theHeight; - Marc At 10:34 AM 1/16/2006, you wrote: I am working on a fullscreen fla

Re: [Flashcoders] Fullscreen Flash issue

2006-01-16 Thread Ian Thomas
Mike, Where is this code? Just on the root timeline? Are you sure the repositioning you're getting isn't a result of the normal Flash resizing/scaling and that this code _is_ being called twice? Cheers, Ian On 1/16/06, Mike Boutin <[EMAIL PROTECTED]> wrote: > > I am working on a fullscreen fl

[Flashcoders] Fullscreen Flash issue

2006-01-16 Thread Mike Boutin
I am working on a fullscreen flash project. Can anyone tell me why this code acts like a loop rather than just happening once? I am trying to position an object at the bottom of the browser window no matter what the window size. I am using this code to set it right off the start. This all w

Re: [Flashcoders] Fullscreen with javascript for Mac / PC ?

2005-11-16 Thread MetaArt
you must be more specific: which trouble, with which browser/OS? On WindowsXP+IE, the fullscreen work fine (the Flash, less... the loading of elements its too slow, with ADSL); with FireFox the same... Enrico Tomaselli +> web designer <+ [EMAIL PROTECTED] http://www.metatad.it __

[Flashcoders] Fullscreen with javascript for Mac / PC ?

2005-11-16 Thread af a
Hello, Do you know if and how to enable a browser to let the javascript code execute. With this site : http://www.fastvideho.com/debut.html it seems that some people have no trouble but others do with some browsers. Is it due to javascript or firewall ? Thanks Tony