Welcome Guest! To enable all features please try to register or login.
How to make a teleporter Web Page
The_Black_Rieder
#1 Posted : Saturday, May 30, 2015 11:42:04 PM(UTC)


Rank: Veteran Forum Member

Joined: 9/26/2008(UTC)
Posts: 7,429
A simple Teleporter page that you double click to open. I added mine as an icon to my Web Browser and can open it by clicking on the icon at the top of my browser. Clicking on a button takes me there to that location. If not logged in I can still click a button, it takes me to the Login page, I login and then it continues to my chosen destination. The HTML is clumsy, not as concise or quick as it could be, but I wanted to keep it simple and easy to follow.



Make a simple Web Page by opening Notepad and pasting the following in;

Code:
<!DOCTYPE html>
<html>
<head>
  <title>My Teleporter</title>
</head>
<body>
  This is my Teleporter
</body>
</html>


Save it as "All Files" then call it something like Teleporter.html
You now need to add buttons, names, addresses

Use a free program called Notepad++ to edit the HTML file and other files too. Search in Google and you will get the program free, it is small and a simple install. EDIT: https://notepad-plus-plus.org/ Once installed simply right click and edit the file by choosing "Edit with Notepad++". The following will give you some starter buttons;

Code:
<center><button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/VirtualVancouver/trans#What%3f'">VV Transport</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/vancouverstreet#DROP.-8194.955.-23525'">Virtual Vancouver</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/RedLightCenter/trans'">RLC Transport</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/RedLightCenter/welcome'">WC Universal</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/zaby01#DROP.-232.547.683'">Zaby Building</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/street#enter'">RLC Street</button></center>


Each line is a seperate button, name and address. You can copy it to add more buttons and then paste it, change the name of the button and the address, even change the colour of the button itself. By using <P> on a line on its own you can make a blank line and perhaps then start a second line of buttons. A background image can be applied by adding as follows;

Code:
<body background="bgimageRed.jpg">


You must call the image bgimageRed and in jpg format. Keep it in the same place/folder as the HTML file itself. Here is the finished code with a little splash of colour;

Code:
<!DOCTYPE html>
<html>
<head>
  <title>Teleporter Web Page</title>
</head>
<body background="bgimageRed.jpg">
<center><b>Rieders' Teleporter</b></center>
<P>
<center><button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/VirtualVancouver/trans#What%3f'">VV Transport</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/vancouverstreet#DROP.-8194.955.-23525'">Virtual Vancouver</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/RedLightCenter/trans'">RLC Transport</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/RedLightCenter/welcome'">WC Universal</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/zaby01#DROP.-232.547.683'">Zaby Building</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/street#enter'">RLC Street</button></center>
<P>
<center><b>Personal Ports</b></center>
<P>
<center><b>Beaches</b></center>
<P>
<center><button style="background-color:yellow" onclick="window.location='vww://utherverse.vww/@19/@85844#Beach%20Default%20Entry'">Club Senses</button></center>
<P>
<center><b>Other Clubs</b></center>
<center><button style="background-color:orange" onclick="window.location='vww://utherverse.vww/@4431/excess#stairs'">Club Excess</button></center>
<P>
</body>


You still need to make a background image and name it as above and/or change the name of the file in the HTML code and the pic itself. You will need to resize the pic to suit the Teleporter HTML page.
NOTE: My nick and image are from a company. That company allows people to use them both as long as they get permission and a licence. I have that and a certificate to prove it.

"These are not the Druids you are looking for..."
14 users thanked The_Black_Rieder for this useful post.
DJ_Hyporis_EXC on 5/31/2015(UTC), Pryss_2 on 5/31/2015(UTC), 1Mr_H on 5/31/2015(UTC), divingA_WnC on 5/31/2015(UTC), Loving_INTENSE on 5/31/2015(UTC), elmerfudddaffy on 5/31/2015(UTC), Lucky_Strke on 5/31/2015(UTC), LazTopCat on 5/31/2015(UTC), Anhton_Novo on 5/31/2015(UTC), SaphyreRose on 6/19/2015(UTC), x_Ghadah_x on 5/12/2016(UTC), Trisomes on 6/17/2016(UTC), Never_Lost on 9/12/2019(UTC), Sandra_SD_SoF on 9/13/2019(UTC)
LazTopCat
#2 Posted : Sunday, May 31, 2015 12:58:48 PM(UTC)


Rank: Veteran Forum Member

Joined: 4/15/2009(UTC)
Posts: 4,161
Location: Kansas City
Very cool ThumpUp Thankyou Rieder. Applause

4 users thanked LazTopCat for this useful post.
Pryss_2 on 5/31/2015(UTC), Loving_INTENSE on 5/31/2015(UTC), The_Black_Rieder on 5/31/2015(UTC), Anhton_Novo on 5/31/2015(UTC)
The_Black_Rieder
#3 Posted : Sunday, May 31, 2015 4:25:47 PM(UTC)


Rank: Veteran Forum Member

Joined: 9/26/2008(UTC)
Posts: 7,429
No probs, enjoy. If it works perfectly then it was all my doing, if it messes up then see Pryss Wink Grin
NOTE: My nick and image are from a company. That company allows people to use them both as long as they get permission and a licence. I have that and a certificate to prove it.

"These are not the Druids you are looking for..."
3 users thanked The_Black_Rieder for this useful post.
Anhton_Novo on 5/31/2015(UTC), LazTopCat on 5/31/2015(UTC), SaphyreRose on 6/19/2015(UTC)
Pryss_2
#4 Posted : Sunday, May 31, 2015 4:27:54 PM(UTC)


Rank: Veteran Forum Member

Joined: 2/22/2008(UTC)
Posts: 2,877
The_Black_Rieder;1359589 wrote:
No probs, enjoy. If it works perfectly then it was all my doing, if it messes up then see Pryss Wink Grin



Actually if the BG looks all crazed and pixelated go fuck with Rieder BEFORE blaming me. Anything else, fuck with Rieder!
3 users thanked Pryss_2 for this useful post.
LazTopCat on 5/31/2015(UTC), SaphyreRose on 6/19/2015(UTC), Never_Lost on 9/12/2019(UTC)
LazTopCat
#5 Posted : Sunday, May 31, 2015 9:47:46 PM(UTC)


Rank: Veteran Forum Member

Joined: 4/15/2009(UTC)
Posts: 4,161
Location: Kansas City
Fuckin' him ain't in me job discription Tongue .... I just hope Dusty sees this.


1 user thanked LazTopCat for this useful post.
Pryss_2 on 6/1/2015(UTC)
__KittenGirl__
#6 Posted : Sunday, May 31, 2015 9:57:18 PM(UTC)


Rank: Seasoned Forum Member

Joined: 3/27/2015(UTC)
Posts: 1,020
its too much work. Looks cool though. Smile
2 users thanked __KittenGirl__ for this useful post.
Loving_INTENSE on 5/31/2015(UTC), LazTopCat on 6/17/2015(UTC)
Loving_INTENSE
#7 Posted : Sunday, May 31, 2015 10:02:44 PM(UTC)


Rank: Veteran Forum Member

Joined: 12/1/2012(UTC)
Posts: 3,168
loll Kitten!

Ask Rieder or Pryss (now she is so good at it)

if you can send them (in a pm message or inbox)

your properties vww addys,

maybe they can help you make one and send to you!!!


1 user thanked Loving_INTENSE for this useful post.
Never_Lost on 12/5/2021(UTC)
Viegoth
#8 Posted : Sunday, May 31, 2015 10:31:47 PM(UTC)

Rank: Veteran Forum Member

Joined: 10/9/2009(UTC)
Posts: 2,358
Medals:
Nice work, you two. But I think I'll stick with my antiquated version. Tongue



It does require a little thought process to use (you gotta punch in the address), so unless you have a good memory for numbers (or Goa'uld symbols)...

"The definition of insanity is doing the same thing over and over again and expecting different results." - Albert Einstein

VC Designs (Viegoth Customs)

Profile Message

-
7 users thanked Viegoth for this useful post.
Loving_INTENSE on 5/31/2015(UTC), 1Mr_H on 5/31/2015(UTC), The_Black_Rieder on 5/31/2015(UTC), Pryss_2 on 6/1/2015(UTC), LazTopCat on 6/1/2015(UTC), Lucky_Strke on 6/17/2015(UTC), Never_Lost on 12/5/2021(UTC)
__KittenGirl__
#9 Posted : Sunday, May 31, 2015 10:34:20 PM(UTC)


Rank: Seasoned Forum Member

Joined: 3/27/2015(UTC)
Posts: 1,020
Viegoth;1359653 wrote:
Nice work, you two. But I think I'll stick with my antiquated version. Tongue



It does require a little thought process to use (you gotta punch in the address), so unless you have a good memory for numbers (or Goa'uld symbols)...




Stargate!!!!
1 user thanked __KittenGirl__ for this useful post.
Loving_INTENSE on 5/31/2015(UTC)
The_Black_Rieder
#10 Posted : Sunday, May 31, 2015 11:58:41 PM(UTC)


Rank: Veteran Forum Member

Joined: 9/26/2008(UTC)
Posts: 7,429
Pryss has a prototype columns design teleporter. With 3 columns of buttons to save using an extended length page. She locked the background image too so it doesn't scroll. Not only a geekess but she has become an information junkie. Grin Grin Grin
NOTE: My nick and image are from a company. That company allows people to use them both as long as they get permission and a licence. I have that and a certificate to prove it.

"These are not the Druids you are looking for..."
4 users thanked The_Black_Rieder for this useful post.
Pryss_2 on 6/1/2015(UTC), Loving_INTENSE on 6/1/2015(UTC), LazTopCat on 6/17/2015(UTC), Never_Lost on 9/12/2019(UTC)
RandyKnight
#11 Posted : Monday, June 01, 2015 5:55:06 AM(UTC)


Rank: Seasoned Forum Member

Joined: 6/5/2013(UTC)
Posts: 1,059
Location: Dallas
Now that is cool.........

as a person who wrote HTML many years ago one of my teachers use to always say...

"It is only fun when it works"

Looks like yours worked...and it is tedious work....
2 users thanked RandyKnight for this useful post.
Pryss_2 on 6/1/2015(UTC), LazTopCat on 6/17/2015(UTC)
GODMistyCP_RuEBL
#12 Posted : Friday, June 12, 2015 8:17:12 AM(UTC)


Rank: Novice Forum Member

Joined: 12/3/2012(UTC)
Posts: 37
Medals:
May be more easy will be do that - insert in your Profile-Personality this code:

<a href="http://vwwmanager.lovecity3d.net/"><img border=0 src="http://images.lovecity3d.net/kralex/style/utherverse/vwwmanager.png" alt="VWW Manager" title="VWW Manager" style="position:absolute;top:50px;left:50px;"></a></p>

and you will get this link in your profile this VWW Manager - you may see it in your left up corner

when you click it you will be transported on this page

there you may add your locations or go to other worlds like as utheverse, 3dsex or ....

you may try it in my profile if you interested Smile


vww://utherverse.vww/@106769/@1144901
1 user thanked GODMistyCP_RuEBL for this useful post.
DurtyJay on 4/25/2016(UTC)
wayne_wild
#13 Posted : Wednesday, June 17, 2015 4:52:54 PM(UTC)

Rank: Rising Forum Member

Joined: 4/16/2013(UTC)
Posts: 88
Medals:
The_Black_Rieder and Pryss and anyone else that is interested, I have copied the Simple Teleporter and placed a link for it in my Transport. I also wrote some code so that it checks the member ID number against a white list and closes the browser window if the ID does not show up on the list.

___

wayne_wild



Edit to add: I can provide the code if you what it just message me.
LazTopCat
#14 Posted : Wednesday, June 17, 2015 10:16:35 PM(UTC)


Rank: Veteran Forum Member

Joined: 4/15/2009(UTC)
Posts: 4,161
Location: Kansas City
The_Black_Rieder;1359395 wrote:
A simple Teleporter page that you double click to open. I added mine as an icon to my Web Browser and can open it by clicking on the icon at the top of my browser. Clicking on a button takes me there to that location. If not logged in I can still click a button, it takes me to the Login page, I login and then it continues to my chosen destination. The HTML is clumsy, not as concise or quick as it could be, but I wanted to keep it simple and easy to follow.



Make a simple Web Page by opening Notepad and pasting the following in;

Code:
<!DOCTYPE html>
<html>
<head>
  <title>My Teleporter</title>
</head>
<body>
  This is my Teleporter
</body>
</html>


Save it as "All Files" then call it something like Teleporter.html
You now need to add buttons, names, addresses

Use a free program called Notepad++ to edit the HTML file and other files too. Search in Google and you will get the program free, it is small and a simple install. EDIT: https://notepad-plus-plus.org/ Once installed simply right click and edit the file by choosing "Edit with Notepad++". The following will give you some starter buttons;

Code:
<center><button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/VirtualVancouver/trans#What%3f'">VV Transport</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/vancouverstreet#DROP.-8194.955.-23525'">Virtual Vancouver</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/RedLightCenter/trans'">RLC Transport</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/RedLightCenter/welcome'">WC Universal</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/zaby01#DROP.-232.547.683'">Zaby Building</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/street#enter'">RLC Street</button></center>


Each line is a seperate button, name and address. You can copy it to add more buttons and then paste it, change the name of the button and the address, even change the colour of the button itself. By using <P> on a line on its own you can make a blank line and perhaps then start a second line of buttons. A background image can be applied by adding as follows;

Code:
<body background="bgimageRed.jpg">


You must call the image bgimageRed and in jpg format. Keep it in the same place/folder as the HTML file itself. Here is the finished code with a little splash of colour;

Code:
<!DOCTYPE html>
<html>
<head>
  <title>Teleporter Web Page</title>
</head>
<body background="bgimageRed.jpg">
<center><b>Steves' Teleporter</b></center>
<P>
<center><button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/VirtualVancouver/trans#What%3f'">VV Transport</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/vancouverstreet#DROP.-8194.955.-23525'">Virtual Vancouver</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/RedLightCenter/trans'">RLC Transport</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/RedLightCenter/welcome'">WC Universal</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/zaby01#DROP.-232.547.683'">Zaby Building</button>
<button style="background-color:lightblue" onclick="window.location='vww://utherverse.vww/street#enter'">RLC Street</button></center>
<P>
<center><b>Personal Ports</b></center>
<P>
<center><b>Beaches</b></center>
<P>
<center><button style="background-color:yellow" onclick="window.location='vww://utherverse.vww/@19/@85844#Beach%20Default%20Entry'">Club Senses</button></center>
<P>
<center><b>Other Clubs</b></center>
<center><button style="background-color:orange" onclick="window.location='vww://utherverse.vww/@4431/excess#stairs'">Club Excess</button></center>
<P>
</body>


You still need to make a background image and name it as above and/or change the name of the file in the HTML code and the pic itself. You will need to resize the pic to suit the Teleporter HTML page.



I Do So Love Note++
looks awesome Pryss... and its cute how you let Reider take credit for teachin' ya Wink

1 user thanked LazTopCat for this useful post.
Pryss_2 on 6/17/2015(UTC)
The_Black_Rieder
#15 Posted : Thursday, September 12, 2019 7:44:32 AM(UTC)


Rank: Veteran Forum Member

Joined: 9/26/2008(UTC)
Posts: 7,429
This is for one of the VOLS

Code:
<html>
<head>
  <title>Teleporter Web Page</title>
</head>
<body background="bgimageRedNew.jpg">
<div style="text-align:right;"><b>Steves' Teleporter</div></b>
<P>
<P>
<center><b>Wednesday</b></center>
<P>
<center>
<button style="background-color:lime" onclick="window.location='vww://utherverse.vww/@182043/event#entree'">Event Room</button>
.....<button style="background-color:lime" onclick="window.location='vww://utherverse.vww/RudeVirtual/street#Wasteland%20EXIT'">Rude Street</button>
<button style="background-color:lime" onclick="window.location='vww://utherverse.vww/RudeVirtual/Alley#Alley%20Right%20Entry'">Rude Alley</button>
<button style="background-color:lime" onclick="window.location='vww://utherverse.vww/vegaschapel'">Vegas Chapel</button>
<button style="background-color:lime" onclick="window.location='vww://utherverse.vww/weddings#from_street'">Wedding Region</button>
<button style="background-color:lime" onclick="window.location='vww://utherverse.vww/alley#DROP.-6791.675.13389'">Alley</button>
<button style="background-color:lime" onclick="window.location='vww://utherverse.vww/Cam_Alley_G'">Gay Cam Alley</button>

</center>
<P>
<P>
</body>
</html>


To get place to place in the events
NOTE: My nick and image are from a company. That company allows people to use them both as long as they get permission and a licence. I have that and a certificate to prove it.

"These are not the Druids you are looking for..."
1 user thanked The_Black_Rieder for this useful post.
CrowsBaby on 9/12/2019(UTC)
The_Black_Rieder
#16 Posted : Sunday, December 05, 2021 5:47:30 AM(UTC)


Rank: Veteran Forum Member

Joined: 9/26/2008(UTC)
Posts: 7,429
From 6 years ago to the modern day. I bought the last Elgato 15 button Stream Deck on the shelf at my local Currys/PC World for the sale price of £99.99 (usual price everywhere is £129.99 so a barain). They come in a 6, 15, 32 button variety and my 15 button was £99.99. You make a home profile with keys pointing to your new profiles and each can have a set of 15 keys (in my version) and extra pages with more lots of 15 buttons. Usage can be Streaming (like Twitch), games buttons, web pages, turn lights on/off (needs more equipment) and lots more. I use it for games, to give me extra buttons. Every profile links back to the default page. Each Page 1 automatically puts a pointer in if you add a page and a pointer back to page 1. So here is the Teleporter today with a modern twist on the old HTML version;



and here is how the profile and buttons are edited;



The Title is the button name but the enter key used after each word to make it fit on the button. The large T lets you change the font, size, colour, line to top, centre, bottom.
The URL is filled by dragging a url icon from the right side menu to each button then pasting in the address. The buttons, when clicked on, have a down arrow in the editor and this is where you can add an image (seen in the bottom left image with a down arrow in its top right corner). I went to each property and took a snapshot then added it "from file". I coloured the active property buttons with green text to show they are in use. The red font buttons are empty properties but colour them any way you want. The right arrow bottom right was added by the system to indicate and take me to page 2 with 14 more buttons + the automatic back button. I could add several more pages, it may be 100+ each, can't recall.

If you are inworld each button takes you to that property with just one press. Press another and you go there also.
If not inworld one button press takes you to the login and then automatically to that property. Next button press takes you to that property as you already logged in.
Pictures took on my phone so they don't do the button image and content full justice.
NOTE: My nick and image are from a company. That company allows people to use them both as long as they get permission and a licence. I have that and a certificate to prove it.

"These are not the Druids you are looking for..."
1 user thanked The_Black_Rieder for this useful post.
LazTopCat on 12/5/2021(UTC)
Users browsing this topic
Guest (5)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Clean Slate theme by Jaben Cargman (Tiny Gecko)
Powered by YAF | YAF © 2003-2010, Yet Another Forum.NET
This page was generated in 0.423 seconds.
TC-IIS-7
18.189.189.67