473,396 Members | 1,864 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,396 software developers and data experts.

How can i fix this issue?

Some people who visit this website cannot see the rotating pics of the
house while others can. Why is it? Anyone know? Thanks.

http://www.myhousephoto.com/11727/index.html
Jul 20 '05 #1
10 2245
Quoth the raven named in****************@yahoo.com:
Some people who visit this website cannot see the rotating pics of
the house while others can. Why is it? Anyone know? Thanks.

http://www.myhousephoto.com/11727/index.html


<applet ID="RotatingPicture1" NAME="RotatingPicture1"
CODE="RotatingPicture.class" CODEBASE="../" HEIGHT=366 WIDTH=550
ALT="Rotating Picture"> ...

This is an IE only thingy. And then only for visitors who permit
ActiveX controls. Many do not, due to the possible security breaches
from malicious sites.

Others with different browsers won't see it at all.

<meta NAME="Generator" CONTENT="Microsoft FrontPage 5.0">

Ah. That explains it. FrontPage generates many things that do not work
on the WWW. Consider some other technology, such as thumbnails and
then the visitor has the choice to only view images s/he wants to see,
rather than download them all.

--
-bts
-This space intentionally left blank.
Jul 20 '05 #2
Beauregard T. Shagnasty wrote:
Quoth the raven named in****************@yahoo.com:
Some people who visit this website cannot see the rotating pics of
the house while others can. Why is it? Anyone know? Thanks.

http://www.myhousephoto.com/11727/index.html


<applet ID="RotatingPicture1" NAME="RotatingPicture1"
CODE="RotatingPicture.class" CODEBASE="../" HEIGHT=366 WIDTH=550
ALT="Rotating Picture"> ...

This is an IE only thingy. And then only for visitors who permit ActiveX
controls. Many do not, due to the possible security breaches from
malicious sites.


Actually it is a standard HTML 3.2 tag to include a Java Applet.
Although it is deprecated in HTML 4 it is still widely used and
supported. Therefore here we have Java availability requirement not
ActiveX permissions. The page including the Java Applet is displayed
just fine in both my Mozilla and IE browsers.

Probably some visitors with IE and WinXP which doesn't include the
JVM (Virtual Machine for Java) wouldn't see it. Notice that WinXP
SP1 installs the MS JVM while the SP1a doesn't, on a WinXP system.
Users could get the Sun's JRE (Java Run-time Environment) which
includes the browser plug-in from the www.java.com site.

The OP could include info on getting the Java plug-in as alternative
content of your APPLET element:

<APPLET ... >
<PARAM ... >
Your browser doesn't support Java Applets, have them disabled or
is misconfigured.
<a href="http://www.java.com/">Get Java</a>
</APPLET>

The OP might consider using the OBJECT tag
<http://www.w3.org/TR/html4/struct/objects.html#include-objects>
instead APPLET, too.

--
Stanimir
Jul 20 '05 #3
Quoth the raven named Stanimir Stamenkov:
Beauregard T. Shagnasty wrote:
Quoth the raven named in****************@yahoo.com:
Some people who visit this website cannot see the rotating pics
of the house while others can. Why is it? Anyone know? Thanks.

http://www.myhousephoto.com/11727/index.html
<applet ID="RotatingPicture1" NAME="RotatingPicture1"
CODE="RotatingPicture.class" CODEBASE="../" HEIGHT=366 WIDTH=550
ALT="Rotating Picture"> ...

This is an IE only thingy. And then only for visitors who permit
ActiveX controls. Many do not, due to the possible security
breaches from malicious sites.


Actually it is a standard HTML 3.2 tag to include a Java Applet.
Although it is deprecated in HTML 4 it is still widely used and
supported. Therefore here we have Java availability requirement not
ActiveX permissions. The page including the Java Applet is
displayed just fine in both my Mozilla and IE browsers.


Hmm, ok. <g> I have IE set to prompt for ActiveX, and it did and I
said no. Didn't realize that could also represent Java.
Probably some visitors with IE and WinXP which doesn't include the
JVM (Virtual Machine for Java) wouldn't see it. Notice that WinXP
SP1 installs the MS JVM while the SP1a doesn't, on a WinXP system.
Users could get the Sun's JRE (Java Run-time Environment) which
includes the browser plug-in from the www.java.com site.


I'm using Win2K, but have Java turned off...

--
-bts
-This space intentionally left blank.
Jul 20 '05 #4
in****************@yahoo.com wrote:
Some people who visit this website cannot see the rotating pics of the
house while others can. Why is it? Anyone know? Thanks.

http://www.myhousephoto.com/11727/index.html


Notice that you can achieve the same effect using an animated gift
instead of a Java applet. Then, you'll have no problems with any
browser.

Best regards,

Jose Carlos Santos

Jul 20 '05 #5
José Carlos Santos wrote:
in****************@yahoo.com wrote:
Some people who visit this website cannot see the rotating pics of the
house while others can. Why is it? Anyone know? Thanks.

http://www.myhousephoto.com/11727/index.html


Notice that you can achieve the same effect using an animated gift
instead of a Java applet. Then, you'll have no problems with any
browser.


In terms of accessibility one could think of better method instead
using large animated GIF - a tiny JavaScript which cycles the
images, loading and replacing the current in the document one at a
time, would be more sane solution, IMO. The image itself could be
placed in a hyper link which points to a page containig all the
images in cases where a UA doesn't have JavaScript support or has it
turned off.

--
Stanimir
Jul 20 '05 #6
Stanimir Stamenkov <s7****@netscape.net> wrote in message news:<bt************@ID-207379.news.uni-berlin.de>...
In terms of accessibility one could think of better method instead
using large animated GIF - a tiny JavaScript which cycles the
images, loading and replacing the current in the document one at a
time, would be more sane solution, IMO. The image itself could be
placed in a hyper link which points to a page containig all the
images in cases where a UA doesn't have JavaScript support or has it
turned off.


Do you happen to know some web page which uses this approach?

Best regards,

Jose Carlos Santos
Jul 20 '05 #7
I'd like to suggest to you that "How can I fix this issue?" is a poor
subject for a newsgroup posting. Assuming that it would benefit you to have
a large number of people take the time to open your message, using a subject
that sums up the nature of your problem would be wise. Simply stating that
you *have* a problem doesn't distinguish your message from a thousand others
that are posted here, and makes it much less likely that any given person
will take the time to open it and read it.

Jul 20 '05 #8
Jose Carlos Santos wrote:
Stanimir Stamenkov <s7****@netscape.net> wrote in message news:<bt************@ID-207379.news.uni-berlin.de>...
In terms of accessibility one could think of better method instead
using large animated GIF - a tiny JavaScript which cycles the
images, loading and replacing the current in the document one at a
time, would be more sane solution, IMO. The image itself could be
placed in a hyper link which points to a page containig all the
images in cases where a UA doesn't have JavaScript support or has it
turned off.


Do you happen to know some web page which uses this approach?


Here's a very draft example:

http://www.geocities.com/stanio/temp...e_for_you.html

I'm not JavaScript expert and I don't have time to experiment more
with this one. Notice that if JavaScript is active I remove the
'href' attribute from the A (link) element so it doesn't act as a
link anymore (if JavaScript is active), but one could make it other
way depending on what the final result should be.

One could make the linked page to contain only thumbnail links with
descriptions, one could enhance the javascript to change the 'href'
of the link in the main document to change with the images, etc.
Using this approach you're not restricted to use 256 color palleted
images only but TrueColor PNGs and JPEGs also.

--
Stanimir
Jul 20 '05 #9
On Mon, 12 Jan 2004 09:34:39 -0500, Harlan Messinger wrote:
I'd like to suggest to you that "How can I fix this issue?" is a poor
subject for a newsgroup posting.


+5 Insightful

--

..

Jul 20 '05 #10
Stanimir Stamenkov <s7****@netscape.net> wrote in message news:<bt************@ID-207379.news.uni-berlin.de>...
Do you happen to know some web page which uses this approach?


Here's a very draft example:

http://www.geocities.com/stanio/temp...e_for_you.html

I'm not JavaScript expert and I don't have time to experiment more
with this one. Notice that if JavaScript is active I remove the
'href' attribute from the A (link) element so it doesn't act as a
link anymore (if JavaScript is active), but one could make it other
way depending on what the final result should be.


Thanks a lot.

Jose Carlos Santos
Jul 20 '05 #11

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

Similar topics

3
by: Paul Mateer | last post by:
Hi, I have been running some queries against a table in a my database and have noted an odd (at least it seems odd to me) performance issue. The table has approximately 5 million rows and...
7
by: George Hester | last post by:
Please take a look at this google artcle: http://groups.google.com/groups?hl=en&lr=&frame=right&th=55d6f4b50f5f9382&seekm=411f370d%241%40olaf.komtel.net#link9 The op was having trouble with...
2
by: Anthony Cuttitta Jr. | last post by:
We have an application that outputs several different graphs from data downloaded from our AS400. The application has worked without (this) issue for several months now, but just recently, the...
0
by: Kevin Spencer | last post by:
Hi all, I am working on a service that uploads METAR weather information to the National Weather Service FTP site. The service I'm authoring is hosted on a Windows 200 server, and the NWS FTP...
2
by: Ben Rush | last post by:
Hello World, Okay, I have spent the day browsing the newsgroups and reading up on article after article concerning ViewState corruption and so forth, and I have a couple questions. We...
5
by: Robert | last post by:
I have a series of web applications (configured as separate applications) on a server. There is a main application at the root and then several virtual directories that are independant...
0
by: Charles Leonard | last post by:
I am having yet another issue with Windows Server 2003. This time, the web service (a file import web service) appears to run except for one odd message: "ActiveX component can't create object". ...
4
by: Paul | last post by:
Hi, I've been struggling with this today, I'm developing a DotNet2.0 website in C# that needs to call a long running data query. Obviously this is a good candidate for an Asynchronous call, so...
1
by: AlekseyUS | last post by:
Hi, I'm a little stuck, I basically need to copy all the information within a specific file in Temp and append it to a file in another location. I'm not having any problems with smaller size...
13
by: SAL | last post by:
Hello, I'm trying to include a popup in the ItemTemplate of a gridview row. The ItemTemplate for the field contains a textbox and when the user clicks in the textbox I want a popup panel to show...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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?
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.