Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Loosing I.E's standard objects (e.g: Window, icons e.t.c)

Status
Not open for further replies.

level0

Programmer
Dec 6, 2001
22
GB
I dont know if this is the right forum for this question but i hope someone will know :)

As seen the last year there are many sites that seem to load on its own sepearate window without using the standard I.E explorer window. I dont know if this is color effects or special programming functions put an example can be found here
On this site for I.E only:


go for the flash version...

As you can see the title bar is white and the standard buttons (drop,close, minimse) are all gone...

Also try to drag this window from its Title bar...

Can anyone explain a method for doing this ?????
 
This is all done in Flash as far as i can see if you want an IE window with no toolbars and unable to resize you can use a simplae bit of code.
the one below loads a new window from a link.

<SCRIPT>
function newwindow('page.htm')
{
window.open(strLink,'jav','width=750,height=600,resizable=no');
}
</SCRIPT>


href=&quot;javascript:newwindow()&quot;
 
No Flash only used to display the content of this window. Altough there is a Js function behind it that i didnt know my self.

Thanks to HUSS from the flash post forum we got the answer on what it really is:))))

thread250-177022 is the link for you to find out if you want.

Thanks a lot for your reply. I apreciatedx it.
Regards
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top