473,777 Members | 1,732 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to use JS to turn on projector and put up a picture

Don
Setting: chruch multimedia computer and projection system, with 2 display
monitors. The projector is connected to monitor #2.

Is there some way using JavaScript I can display a ".jpg" picture on display
#2? I know how to send the <form> tag to turn on/off the projector, but
don't know how to put up a picture. I don't want any browser artifacts to
show. Just the picture.

Thanks,
Don

----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
Aug 2 '05 #1
3 2305
"Don" <no@adr.com> kirjoitti
viestissä:90*** *************** **************@ 4ax.com...
Setting: chruch multimedia computer and projection system, with 2 display
monitors. The projector is connected to monitor #2.

Is there some way using JavaScript I can display a ".jpg" picture on
display
#2? I know how to send the <form> tag to turn on/off the projector, but
don't know how to put up a picture. I don't want any browser artifacts
to
show. Just the picture.

HTML/Javascript is not your ideal medium for said situation. There are many
programs out there to build slide shows. Microsoft PowerPoint would be the
most known example. I suggest you really concider alternatives before trying
to create such a project using JS, which would be simply stupid*, partly not
possible**.

* Stupid, because JS and HTML are designed to work in a browser and you
don't want to show the browser.
** Leaving out the browser elements would be possible by setting the browser
to full screen mode, but that's something you just can't accomplish with JS,
that's something the user must control.
--
SETI @ Home - Donate your cpu's idle time to science.
Further reading at <http://setiweb.ssl.ber keley.edu/>

Soulman <et************ ****@5P4Mgmail. com>
Aug 2 '05 #2
Don wrote:
Setting: chruch multimedia computer and projection system, with 2 display
monitors. The projector is connected to monitor #2.

Is there some way using JavaScript I can display a ".jpg" picture on display
#2? I know how to send the <form> tag to turn on/off the projector, but
don't know how to put up a picture. I don't want any browser artifacts to
show. Just the picture.

Thanks,
Don


Theoretically this is entirely possible, but I'll have to agree with
Kimmo that it's not the best way to do it.

I assume you know for certain which browser will be used in this
setting, so that simplifies it quite a bit.

But if I were going to do it, what I would do is open a new window with
no frills, position it such that it appears on the second screen (i.e.
where the first monitor is 1024/768, you move it to 768 or so-- I don't
know how screen.width behaves in a multiple monitor situation, but it
might do), and expand it so that the title bar, status bar, and borders
are off the screen. How you display the jpeg then depends on other
needs.

Consider the following just pseudo-code:

function openDisplay() {
x = new window( 'about:blank', 'DisplayWindow' , '' );
x.moveTo( screen.width, -20 );
x.resizeTo( x.screen.width + 20, x.screen.height + 35 );
return x;
}

Aug 2 '05 #3
Don
On Tue, 02 Aug 2005 06:48:28 -0700, Don <no@adr.com> wrote:
Setting: chruch multimedia computer and projection system, with 2 display
monitors. The projector is connected to monitor #2.

Is there some way using JavaScript I can display a ".jpg" picture on display
#2? I know how to send the <form> tag to turn on/off the projector, but
don't know how to put up a picture. I don't want any browser artifacts to
show. Just the picture.

Thanks,
Don

----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----

Thanks for your help guys.
Don

----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
Aug 4 '05 #4

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

Similar topics

2
7241
by: Sandra Setz | last post by:
Hi, I was wondering if someone could explain to me what the difference is between the width propery of the picture property of an image and the width property of the image itself. I would have guessed that when the stretch property of an image was set to false and an image was assigned to the picture property, that Image1.Picture.Width and Image1.width would be the same. This is not the case.
3
10468
by: Sandra Setz | last post by:
Hi, Is it possible to assign the Picture property of a picturebox to the Picture property of an image control? I use an invisble picturebox to make some changes to a picture, but I want to show the picture in an imagecontrol, since the image is very large and I want to stretch it. But when I execute the following code:
3
5079
by: EN | last post by:
Hi, I want to put a bmp of a toggle switch leaning to the left, the off position. With a painter prgm, flip the left toggle , lean right, for ON or Start position. How do I do this? With VB 6 , ot the left are 2 columns of clickable icons, Pointer, PictureBox, Label, Textbox, etc Which of these do I use to make an ON or ENABLE sending data bits and a STOP, or Disable data bits. thanks
6
8125
by: Jeff | last post by:
Hey (and thank you for reading my post) In visual web developer 2005 express edition I've created a simple website project.. At this website I want users who register to be able to upload a picture of themselves to their profile... I admit that I'm a newbie... but this is how I understand this:
0
898
by: putra | last post by:
I wanna build VB program as a wrapper, to hold a flash projector (exe) file. At first i wanna figure out on how to do this so that i can give more functions to my flash projector like, minimize etc. so the question is how to load the exe file? can anybody show me how to do this. Oh BTW i alredy search the forum.. thanks
0
1943
by: mal64 | last post by:
I want to produce a flash presentation which will run off a CD ROM (projector or .exe) and be used on a Mac or PC to a projector. This projector could be SVGA 800 x 600 or XGA 1024 x 768. I will embed jpgs and open up external video files. There is a possibility of this also going to a 4m x 3m lcd screen. What dimensions should I have my stage size? 800 x 600? What resolution should I keep the jpegs at - 96dpi? ... and what size should I...
3
2593
by: raghunadhs | last post by:
hi all! i have a picture box, in that picture box, there is a picture asume it as "pic1.bmp".. now i have made some changes in that picture. Now i want to load a picture to a image( my form consists of a picture box and a image also). like image1.picture=loadPicture(picture1.picture) ... but i know that this statement is invalid.... how can i do it? actually.. yesterday i learned how to make changes on a picture and how to save a...
2
2578
by: Dale | last post by:
Access 2003 I have an access database used for scoring a high school sporting event. Data is entered as scores are turned in from the different events throughout the day. I would like to display data via multi-media projector in real time, so students & teams know thier status at all times. I am open to ideas about how to achieve this. I have tried reports
2
1271
by: javamama | last post by:
Hi, I programmed a web page where two parallel maps can be explored with moving the cursor on the summer and winter buttons. The active button should turn red but now the right hand buttons turn red instead of the left ones. Where's the problem? <HTML> <META HTTP-EQUIV="Refresh" CONTENT=300> <HEAD><TITLE>Parallel Visual Exploring</TITLE></HEAD>
1
10061
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8954
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7471
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6722
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5368
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5497
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4031
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3627
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2860
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.