Flash Goddess Forum Index

 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

full page in flash

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Flash Goddess Forum Index -> Tutorials
View previous topic :: View next topic  
Author Message
Hila David



Joined: 29 Apr 2005
Posts: 13

PostPosted: Thu Jan 26, 2006 3:38 am    Post subject: full page in flash Reply with quote

I am very interested to know how does the window open to full scale as shown in the link below???

http://www.eyalbartov.co.il/welcome.html
Back to top
View user's profile Send private message
Flash Goddess
Administrator


Joined: 18 Jul 2002
Posts: 1228
Location: Ontario, Canada

PostPosted: Thu Jan 26, 2006 11:06 am    Post subject: Reply with quote

If you take a look at the source code in the HTML page, you can see that it was done using JavaScript:

Code:
<script language=JavaScript>
function popIt5(lang,width,height)
{
   if(screen.width > 800)
   {
      if(lang=="heb")
         filename="mainheb.html";
      else
         filename="main.html";
         
      window.open(filename,'','left=15,top=5,width='+width+',height='+height+'');
   }
   else
   {
      if(lang=="heb")
         filename="fullheb.html";
      else
         filename="fulleng.html";
         
      fullscreen = window.open(filename, "fullscreen", 'top=0,left=0,width='+(screen.availWidth)+',height='+(screen.availHeight)+',fullscreen=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrolling=0');
   }   
}
</script>

and on the button link you have:
Code:
<area shape="rect" coords="240,60,383,92" href="javascript:popIt5('main.html',((screen.availWidth)-30),((screen.availHeight)-40))">

_________________
:: FAQ :: Search :: Books :: Tutorials ::
www.FlashGoddess.com :: inspire :: create ::
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Hila David



Joined: 29 Apr 2005
Posts: 13

PostPosted: Fri Jan 27, 2006 3:01 am    Post subject: Reply with quote

thanx a lot. I will try to use this code and see what happens...
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Flash Goddess Forum Index -> Tutorials All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Google
 




Powered by phpBB © 2001, 2005 phpBB Group