Formatting Text: Inline Hyperlinks

Q&A about the latest versions
Post Reply
samhaw
Posts: 12
Joined: Mon Aug 14, 2017 12:25 pm

Hey,

i have a problem with Inline Hyperlinks. I want to have a link in a Infotextbox. I found this tags in a documentation for Pano2VR 4 and can't find the one for Pano2VR 5:

The first shows a link to open in the same window:
<a href="http://www.yourwebsite.com" target="_self">Your Text</a>
The next in a new window:
<a href=”http://www.yourwebsite.com” target="_blank">Your Text</a> "


The first one works without problem. But when i use the one to open it in a next window it doesn't work and says:

File not found: �http://mywebsite.de"target="_blank"

If you could help me would be great.Thank you!
User avatar
jare
Posts: 365
Joined: Thu Mar 19, 2009 1:26 pm
Location: RU/CZ
Contact:

I see an extra " at the end of your second link.

Hyperlink like this wiil work

Code: Select all

<a href="http://www.yoursite.com" target="_blank">Your link text</a>
samhaw
Posts: 12
Joined: Mon Aug 14, 2017 12:25 pm

jare wrote: Mon Aug 28, 2017 8:12 pm I see an extra " at the end of your second link.

Yeah forgot to delete that one in this post here, but in the programm everything is correct and i can't understand why it doesn't work.
User avatar
jare
Posts: 365
Joined: Thu Mar 19, 2009 1:26 pm
Location: RU/CZ
Contact:

Aren't you using a text editor like MS Word to copy/paste your code?

You can attach your project and/or skin files here, we will have a look at it.
User avatar
360Texas
Moderator
Posts: 3684
Joined: Sat Sep 09, 2006 6:06 pm
Location: Fort Worth, Texas USA
Contact:

IF you use MS Word... please save it ONLY as PLAIN TEXT file type with extension .TXT .
But then I am not really sure it is straight ACSII text

Otherwise use MS Notepad and save as .txt
Dave
Pano2VR Forum Global Moderator
Image
Visit 360texas.com
samhaw
Posts: 12
Joined: Mon Aug 14, 2017 12:25 pm

No i'm not using any text editor in Pano2VR or how do i have to understand this. Just copied the text directly in the description for ht_info and added the codes. And it works fine except for the first link. Sorry if i'm completely stupid ;)
PanoHelp.PNG
PanoHelp.PNG (638.56 KiB) Viewed 4244 times
User avatar
Tony
Posts: 1342
Joined: Mon Feb 15, 2010 6:54 am
Location: Adelaide, South Australia
Contact:

Hi,

I notice in your hyperlink there isn't any space between the url and target eg

Code: Select all

<a href="http://pfarrei-jb.de/"target="_blank">
Can you try removing the forward slash after de and adding a space before target.

Code: Select all

<a href="http://pfarrei-jb.de" target="_blank">
Tony
Tony Redhead | Panoramic Photographer | mobile: +61438501002 | website: https://tonyredhead.com - https://redsquare.com | Pano2VR Tutorials: https://tonyredhead.com/pano2vr | instagram: https://www.instagram.com/tonyredhead/
samhaw
Posts: 12
Joined: Mon Aug 14, 2017 12:25 pm

Tony wrote: Tue Aug 29, 2017 11:59 am
I notice in your hyperlink there isn't any space between the url and target eg
Can you try removing the forward slash after de and adding a space before target.

Okay thank you very much!!
Post Reply