Controlling the display options of IE 6.0

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Even after plugging in "location=no,directories=no,toolbar=no,menubar=no,status=no,scrollbars=no,resizable=no
dependent=no the new IE popup still displays the IE icons (printer, stop, refresh, etc.) and the only thing that was disabled was the back and forward buttons. I used the standard doPopUpWindow = window.open jsp code (provided) below

Can i remove all IE icons with a global attribute?

I am on Windows XP Professional using IE 6.0 .2800.1106 with SPI updates

-----------

<script

var doPopUpX = (screen.width/2)-40
var doPopUpY = (screen.height/2)-30
var pos = "left="+doPopUpX+",top="doPopUpY

function doPopUp()
doPopUpWindow = window.open("http://slcsepw01vd.pacificorp.us/ir...dro.role.PlantManager/com.pacificorp.pages.R3","Power & Deliver ePortal"

"location=no
directories=no
toolbar=no
menubar=no
status=no
scrollbars=no
resizable=no
dependent=no,width=800,height=600,"+pos)


</script
 
Just right click on the toolbar in a blank area and select
customize. Select and remove the icons you don't want.


| Even after plugging in
"location=no,directories=no,toolbar=no,menubar=no,status=no,
scrollbars=no,resizable=no,
| dependent=no the new IE popup still displays the IE icons
(printer, stop, refresh, etc.) and the only thing that was
disabled was the back and forward buttons. I used the
standard doPopUpWindow = window.open jsp code (provided)
below.
|
| Can i remove all IE icons with a global attribute?
|
| I am on Windows XP Professional using IE 6.0 .2800.1106
with SPI updates.
|
| ------------
|
| <script>
|
| var doPopUpX = (screen.width/2)-400
| var doPopUpY = (screen.height/2)-300
| var pos = "left="+doPopUpX+",top="doPopUpY;
|
| function doPopUp(){
| doPopUpWindow =
window.open("http://slcsepw01vd.pacificorp.us/irj/servlet/pr
t/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!
2fcom.sap.pct!2fevery_user!2fgeneral!2fcom.sap.portal.framew
orkpage!2fcom.sap.portal.innerpage!2fcom.sap.portal.contenta
rea?NavigationTarget=ROLES%3A//portal_content/com.pacificorp
..folder.PacificorpPortalContent/com.pacificorp.folder.rolefo
lder/com.pacificorp.ps.hydro.role.PlantManager/com.pacificor
p.pages.R3","Power & Deliver ePortal",
|
| "location=no,
| directories=no,
| toolbar=no,
| menubar=no,
| status=no,
| scrollbars=no,
| resizable=no,
| dependent=no,width=800,height=600,"+pos);
| }
|
| </script>
| ----------
| Thanks.
| James
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top