Re: trouble with Javascript Pop-up



Ok, it does sound like the same issue of resolution, and I don't have a
magic solution.

When you use the compress images function in Pub 2003, pictures are
"resampled" at 96 dpi, and I think it could be said that the code is setup
in general for 96 dpi viewing. Of course that means that if you produce it
at 120 dpi, when the HTML is viewed by a monitor at 96, everything will
appear differently. Though it would probably be a pain in the rear gear,
have you considered resetting your machine at 96 to produce the code? If you
did this with your test files, how do they look after you reset your
machine, and how do they then look on the office machines?

For what its worth, I used to have this problem when I switched back and
forth between my laptop and desktop. What I found was that I could work on
the Publisher file on my laptop, but copied it over to my desktop to produce
the code before I posted it. In fact, I posed the question to David Bartosik
the resident MVP and true expert, and he lost a small bet when I sent him
the code from the two machines, and they did end up producing different
pages. Does anyone else in the office use Pub 2003, and would they let you
copy your Pub file to their machine long enough to produce the HTML code, to
see if that resolves the issue?

I read through some old posts about this issue, and it was said that
professional web designers can use various techniques to mitigate this
problem, but of course as you point out this is beyond the scope of
Publisher. I also read somewhere that if you set your monitor to its default
resolution, that might help??? However, there was also one poster who
devised a workaround. Now I am neither a programmer or a professional web
builder, and know little about code, but perhaps you can understand what he
was saying. Here is the link:
http://groups.google.com/group/microsoft.public.publisher.webdesign/browse_thread/thread/7a24774e827b0284/dbb742a2cd633974?lnk=gst&q=96+dpi&rnum=29#dbb742a2cd633974

I would be interested in what solution you come up with, (he optimistically
said ;-) And by the way, how large is your Publisher file? And how large is
your HTML output? I am not sure I can reproduce your error, but it might be
interesting to forward your files to the MS Publisher team, to get their
input.

DavidF


"djdefpoints" <djdefpoints@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:1AF87BA1-DAE6-4070-86C6-0A17FB684BDF@xxxxxxxxxxxxxxxx
Ah, no the page itself is not centered. I kept it to a small width, to
avoid
issues with visibility on other systems. (ironically) The issue seems to
have been that I had my monitor set to 120 dpi, everyone else in the
office
had it at 96. This actually affected how the program generated the HTML.
Doesn't solve the overall issue: I'm sure the website will look odd on a
different set-up, but, as far as I can tell, this is unavoidable to a
degree
with Pub2003, and WSYWIG progs in general.

Don't yet have a test-page URL. The page is strictly in-house at this
point, since it really doesn't have content yet. I'll post back when I've
uploaded to the host. Thanks, David.
--
-no sig necessary-


"DavidF" wrote:

I was talking about some script to center your page on the monitor, vs.
it
being left justified as by default...not your new window.

Are you using a laptop, and your friend a desktop with different
resolutions? A number of people have complained about the wide aspect
laptops, and viewing Publisher sites. If you are using a desktop to
produce
the site, can you view it with another desktop? Is the resolution the
same
on the two computers that you are using?

I guess the next step is to post the URL of your test page. Tell me where
the text link is supposed to be located on your page.

DavidF

"djdefpoints" <djdefpoints@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:7736F7AC-D74A-43E8-BBEC-18674A85B50D@xxxxxxxxxxxxxxxx
Let me clarify:
What works: the text link itself, the pop-up window generated
What's wrong: the location of the text link on different monitors (on
my
coworker's monitor, for instance, it appears half-way down the page
from
where it does on mine.)

Here's the text link code, which appears twice on the main page (and
"wanders" in different browsers):
<a href="testpage2.htm"
onclick="NewWindow(this.href,'mywin','528','600','no','center');return
false"
onfocus="this.blur()"><span
style='font-size:7.0pt;letter-spacing:1.0pt;language:EN'>more...</span></a>

Here's the script for the pop-up:
<script language="javascript" type="text/javascript">
<!--
/****************************************************
Author: Eric King
Url: http://redrival.com/eak/index.shtml
This script is free to use as long as this info is left in
Featured on Dynamic Drive script library
(http://www.dynamicdrive.com)
****************************************************/
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") ||
pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}
// -->
</script>

There is a centering code, but in the script (for the new pop-up
window),
not the text link, yes?

What I've done:
-placed text link in different locations, the only one that doesn't
shift
on
different monitors is at the very top corner of the page
-placed the text link both layered over another object and in free
space -
no effect
-used a script that linked an image instead - same problem, except now
its
a
wandering image.

And no, no master page...learned that lesson my first time here!


--
-no sig necessary-


"DavidF" wrote:

I have never been able to layer a fragment box over any other design
element...surprised to hear it worked at all. The page generated
should
be
fixed as far as width. Are you trying some sort of centering code? I
have
seen text boxes lengthen when the text size is changed in the browser,
but
otherwise the user's monitor shouldn't make a difference. Perhaps if
you
explained that in more detail.

You might play with the size of the fragment box...and you aren't
using a
master page are you?

DavidF

"djdefpoints" <djdefpoints@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:B65485C5-92BC-43C0-81DC-B4E8BBB2BEF0@xxxxxxxxxxxxxxxx
ARGH...happiness short-lived...now the link text seems to wander all
over
the
page, depending on the user's monitor settings. From a search of
this
site
and some tests, it seems that this is partly due to layering the
fragment
over a text-box, but even then, when I move it to the open, the link
text
is
placed far down the page, as if making room for items above. Kinda
stumped
how to fix.
--
-no sig necessary-


"djdefpoints" wrote:

I grabbed and modified the following script from the publishermvps
site:

<a href="BLOCKED
SCRIPTwindowname_window=window.open'testpage.htm','windowname_window','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=428',
height=480');windowname_window.focus()">More...</a>

I inserted this code fragment into my document, published to web,
and
likewise, published-to-web the document called testpage. Both the
main
webpage document (called index-test.htm) and testpage.htm reside in
the
same
folder on our network server. I assumed I could test this fragment
out
before actually putting the documents on our website, but the link
doesn't
work. I get the hyperlink on the page (More...) but when I click
on
it,
nothing happens. I'm a bit confused.

Side question: will pop-up blockers be a problem for this code
snippet?
(I
actually have trouble on this site with that - this posting window
gets
blocked.)

Thanks in advance for your help.
--
-no sig necessary-








.



Relevant Pages

  • Re: trouble with Javascript Pop-up
    ... still be using Publisher;-) ... When you use the compress images function in Pub 2003, ... at 120 dpi, when the HTML is viewed by a monitor at 96, everything will ... Here's the script for the pop-up: ...
    (microsoft.public.publisher.webdesign)
  • Re: trouble with Javascript Pop-up
    ... -no sig necessary- ... at 120 dpi, when the HTML is viewed by a monitor at 96, everything will ... the Publisher file on my laptop, but copied it over to my desktop to produce ... Here's the script for the pop-up: ...
    (microsoft.public.publisher.webdesign)
  • Re: Retrieving Horizontal Resolution
    ... > Is there a way for an ordinary user to run a script returning the ... > horizontal resolution of the monitor in use? ... scripting language you use, you'll be doing a systemand parsing its ...
    (comp.os.linux.x)
  • Re: Getting current screen resolution
    ... I need a way to get the DPI or screen resolution of the monitor that a ... script is currently runnign on. ... Today it is common for people to have more than one monitor, so you will need to take that into account. ... Just getting resolution of one monitor might not be enough (but then I don't know EXACTLY what is is that you are doing with the ...
    (comp.lang.python)
  • Re: What determines monitor resolution?
    ... I use a 19" LED monitor and have set to run at 1024x768 resolution in Windows desktop properties. ... I am using a NVDIA Geforce4 MX 4000 PCI Video Card. ... The DVI digital connection, offers the ability to keep the signal perfect, ...
    (microsoft.public.windowsxp.general)