473,394 Members | 1,810 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

pop-up status bar/Firefox

on pop-up, which I have scripted to not show status bar, status bar
still shows up in Firefox. Any way to get Firefox to open pop-ups w/o
status bar at the bottom? thank you.. Frances
Jul 23 '05 #1
10 2405
In article <42**********@x-privat.org>, fd***@yahoo.com enlightened us
with...
on pop-up, which I have scripted to not show status bar, status bar
still shows up in Firefox. Any way to get Firefox to open pop-ups w/o
status bar at the bottom? thank you.. Frances


Sure. You already did.
Firefox just lets us specify that we don't want you to do such a thing.
If you want to allow it in YOUR browser:

Tools -> Options -> Web Features
Advanced (button)
Allow scripts to:
(uncheck) hide status bar

You can't force it in MY browser.

/ thank you firefox!

--
--
~kaeli~
Cthulhu Saves. He might get hungry later.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #2
kaeli wrote:
In article <42**********@x-privat.org>, fd***@yahoo.com enlightened us
with...
on pop-up, which I have scripted to not show status bar, status bar
still shows up in Firefox. Any way to get Firefox to open pop-ups w/o
status bar at the bottom? thank you.. Frances

Sure. You already did.
Firefox just lets us specify that we don't want you to do such a thing.
If you want to allow it in YOUR browser:

Tools -> Options -> Web Features
Advanced (button)
Allow scripts to:
(uncheck) hide status bar

You can't force it in MY browser.

/ thank you firefox!


thank you kaeli!

I know pop-ups have become "politically incorrect" in this
newsgroup...;) however, this is not for me personally, but at work, for
our very demanding corporate clients (for whom we do webcasts, which are
seen/heard mostly internally by their employees..)

thanks again.. Frances

Jul 23 '05 #3
In article <42**********@newsgate.x-privat.org>, fd***@yahoo.com enlightened
us with...

thank you kaeli!

Welcome!
I know pop-ups have become "politically incorrect" in this
newsgroup...;) however, this is not for me personally, but at work, for
our very demanding corporate clients (for whom we do webcasts, which are
seen/heard mostly internally by their employees..)


Always remember to specify on these groups if your stuff is for an intranet
application.
There is more leeway for putzing with things on an intranet, since you
usually know a lot more about your clients than on the WWW.

The comments I posted stand, however -- you still can't force it in Firefox.
Make your clients use MSIE like everyone else. LOL
(or just put a notice about it on your stuff and let them enable status
hiding if they don't want to see the status bar)

If they're REALLY dumb and can't figure these things out, use a div that
mimics a window instead of an actual window object.

--
--
~kaeli~
I can't sleep. The clowns might eat me.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #4
kaeli wrote:
In article <42**********@newsgate.x-privat.org>, fd***@yahoo.com enlightened
us with...
thank you kaeli!

Welcome!

I know pop-ups have become "politically incorrect" in this
newsgroup...;) however, this is not for me personally, but at work, for
our very demanding corporate clients (for whom we do webcasts, which are
seen/heard mostly internally by their employees..)

Always remember to specify on these groups if your stuff is for an intranet
application.
There is more leeway for putzing with things on an intranet, since you
usually know a lot more about your clients than on the WWW.

The comments I posted stand, however -- you still can't force it in Firefox.
Make your clients use MSIE like everyone else. LOL
(or just put a notice about it on your stuff and let them enable status
hiding if they don't want to see the status bar)

If they're REALLY dumb and can't figure these things out, use a div that
mimics a window instead of an actual window object.


thank you again, kaeli.. technically they're not really intranets..
some of them are watched (or listened to, if they're audio-only) by
people from a bunch of countries simultaneously.. until recently we
were supporting only IE, but we just started supporting Netscape,
Mozilla and FF, so have been busy re-coding a lot of stuff.. this
window.status thing is a pain, you know, b/c I'm sure you know when you
mouse over a link it puts code for link in status bar and well, it shows
long string of javascript code and stuff... so: more coding I guess...
(onmouseover="window.status=..." etc..) thanks again..

Frances



Jul 23 '05 #5
In article <42**********@newsgate.x-privat.org>, fd***@yahoo.com enlightened
us with...
but we just started supporting Netscape,
Mozilla and FF, so have been busy re-coding a lot of stuff.. this
window.status thing is a pain, you know, b/c I'm sure you know when you
mouse over a link it puts code for link in status bar and well, it shows
long string of javascript code and stuff... so: more coding I guess...
(onmouseover="window.status=..." etc..) thanks again..


LOL
Yeah, just don't forget that firefox can turn that off, too. ;)
I have changing status text disabled because some sites use it to obfuscate
where links are actually going.

To fix this, stop coding javascript in href in links (don't fix a problem by
adding yet more problems with mouseovers)! That's not what href should be
used for, anyway.

<a href="somenoscriptpage.html" onClick="theScriptStuff();return false;">link
</a>

There, now your script won't show up in the status bar.

--
--
~kaeli~
If it's tourist season, why can't we shoot them?
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #6
Frances Del Rio <fd***@yahoo.com> wrote:
you know when you mouse over a link it puts code for link in status
bar and well, it shows long string of javascript code and
stuff... so:


Yes. So what? Does it do any harm? Is this really worth your time?

Bye,
Martin

Jul 23 '05 #7
Martin Bialasinski wrote:
Frances Del Rio <fd***@yahoo.com> wrote:

you know when you mouse over a link it puts code for link in status
bar and well, it shows long string of javascript code and
stuff... so:

Yes. So what? Does it do any harm? Is this really worth your time?

Bye,
Martin


does it matter why I want to do what I want to do? it just looks messy,
when a long string of code that means nothing to user shows up down
there, is all...
Jul 23 '05 #8
Frances Del Rio wrote:
Martin Bialasinski wrote:
Frances Del Rio <fd***@yahoo.com> wrote:
you know when you mouse over a link it puts code for link in status
bar and well, it shows long string of javascript code and
stuff... so: Yes. So what? Does it do any harm? Is this really worth your time?


And, more important: Is it really worth our time?
does it matter why I want to do what I want to do? [...]


Yes, of course it does. Stupid question.
PointedEars
--
Im Anfang war das Wort. Und das Wort war Content-Type: text/plain.
Jul 23 '05 #9
Frances Del Rio wrote:
Martin Bialasinski wrote:
Frances Del Rio <fd***@yahoo.com> wrote:

you know when you mouse over a link it puts code for link in status
bar and well, it shows long string of javascript code and
stuff... so:


Yes. So what? Does it do any harm? Is this really worth your time?

Bye,
Martin

does it matter why I want to do what I want to do? it just looks messy,
when a long string of code that means nothing to user shows up down
there, is all...


But it does mean something to many users. I like to be told that a
click will open a link in a new window (as Safari tells me) or that a
link will run some JavaScript (as many browsers tell me).

The real issues are: is it practical to remove such functionality
from all users for all browsers in all cases, and whether doing so
(if it is possible) actually provides a benefit to the users.

I would think the answer to both is 'no', but you may do (or attempt
to do) whatever you wish.
--
Rob
Jul 23 '05 #10
"Frances Del Rio" <fd***@yahoo.com> wrote in message
news:42**********@newsgate.x-privat.org...
kaeli wrote:

The comments I posted stand, however -- you still can't force it in
Firefox. Make your clients use MSIE like everyone else. LOL
... until recently we were supporting only IE ...


I suppose someone should point out that IE as configured in Windows XP
Service Pack 2 also creates new windows with the status bar on by
default and the user has to explicitly find and disable this feature
(Tools > Internet Options > Security tab > choose zone > Custom Level... Miscellaneous > Allow script-initiated windows without size or

position constraints). As you can see, the manner in which you disable
this is neither easy to find, nor particularly intuitive considering
that including a status bar doesn't seem to be either a "size" or a
"position" constraint.

So even if all you ever supported was Internet Explorer, you would still
have this "problem". In short, a Web browser you have no control over is
not exactly the best place to host an application you want to have a
feature-rich UI. If you want to host your application in a Web browser
you have no control over, you will have to learn to live with the
limitations it introduces.

--
Grant Wagner <gw*****@agricoreunited.com>
comp.lang.javascript FAQ - http://jibbering.com/faq
Jul 23 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Roy Smith | last post by:
In the recent "transforming a list into a string" thread, we've been discussing the fact that list.pop() is O(1), but list.pop(0) is O(n). I decided to do a little timing experiment. To be sure,...
4
by: Andre | last post by:
Hi guys, newbie question. I am having trouble with a script that is supposed to login me to my account on yahoo pop server. When i do this: import getpass, poplib, re POPHOST =...
1
by: spencer | last post by:
Hi, The code. def buildStackMajor(): for node in dirStackMinor: #print 's is the node...', node dirStackMajor.append(node) dirStackMinor.pop() print 'POP the stack...', len(dirStackMinor)...
6
by: Will | last post by:
Hi, Sorry to be a pest... But I can figure this out. I'm pushing to a stack. then I need to check to see if the word is a palindrome. Is the code below correct? if so, how can I check the...
2
by: John Hoge | last post by:
I would like to open an exit pop when a user leaves my site, but I don't want to the back button to trigger the pop if the user remains in my site. I'm using the onUnload attribute of the Body...
15
by: Stig Brautaset | last post by:
Hi group, I'm playing with a little generic linked list/stack library, and have a little problem with the interface of the pop() function. If I used a struct like this it would be simple: ...
25
by: Nicholas Parsons | last post by:
Howdy Folks, I was just playing around in IDLE at the interactive prompt and typed in dir({}) for the fun of it. I was quite surprised to see a pop method defined there. I mean is that a...
7
by: Scott | last post by:
As said before I'm new to programming, and I need in depth explaination to understand everything the way I want to know it, call it a personality quirk ;p. With pop() you remove the last element...
4
by: j_depp_99 | last post by:
The program below fails on execution and I think the error is in my pop function but it all looks correct.Also could someone check my code as to why my print function is not working? I havent...
20
by: merrittr | last post by:
I need some C advice I want to read in string commands from a user when the user enters a \n I want to push it on the stac. Then at some point , if the user enters the word print pop off and print...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.