SWiSHzone.com Support Forums: Multiple Links page have some links link to page outside website - SWiSHzone.com Support Forums

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Multiple Links page have some links link to page outside website Can some links be linked to pages outside website?

#1 User is offline   rianashley 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 109
  • Joined: 25-June 05
  • Gender:Female

Post icon  Posted 25 March 2008 - 10:28 AM

Hi, I am using your mutilple.swi with changing images and it's great! Thanks again for it! Is there an easy way for me to insert hyperlinks within the textfield of the multiple.swi with changing images so that the hyperlinks scroll with rest of text on some of the page?

Rian
0

#2 User is offline   Wolf Gross 

  • Advanced Member
  • PipPipPip
  • Group: Moderator
  • Posts: 19,970
  • Joined: --
  • Gender:Male
  • Location:Perth/Australia

Posted 25 March 2008 - 10:47 AM

...no, not really - the scrollers are scripted in a way so that they will only move one "TEXT_FIELD" and nothing else and you can not render the text as HTML because the text will become a "D" - "Device" font and device fonts can not be masked and/or effects applied to, which in this case, that section has both.
...also if you would change the scroller to something else that will allow hyperlinks you will always have the problem of "bleeding links" in a "multiple" template - because all different sub-sections are in the same section, the link on the bottom sub-section will still be active, even if there is another sub-section displayed "on top".

wolf
Posted Image
Web Wolf Wonder Web Works

SWiSHsites modified
0

#3 User is offline   rianashley 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 109
  • Joined: 25-June 05
  • Gender:Female

Posted 25 March 2008 - 10:47 PM

Okay, thanks. I will have to come up with another solution to add the additional links to the site. Thanks for your response.
0

#4 User is offline   rianashley 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 109
  • Joined: 25-June 05
  • Gender:Female

Posted 26 March 2008 - 06:03 AM

Also, thank you for the gallery page with 16 pics.

Rian
0

#5 User is offline   rianashley 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 109
  • Joined: 25-June 05
  • Gender:Female

Posted 02 April 2008 - 04:40 AM

This is an idea I had in regard to trying to come up with another solution for myself regarding not being able to insert hyperlinks within the textfield of the multiple.swi page. I don't know if it will work so I need to find out from someone if this is even viable.

The non-profit organization wants me to add another multiple links page to the website but on this particular page they want 3 of the 4 multiple links located at the top of the page to link to PDF files located on their web server that can be downloaded. They don't want 3 of the links to go to the "Textfield"(or page that they are originally assigned to go to). Does this make sense? Can this be done and if so what would be the best way for me to do this?

:blink:

Rian
0

#6 User is offline   rianashley 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 109
  • Joined: 25-June 05
  • Gender:Female

Posted 02 April 2008 - 04:46 AM

I thought maybe I should make a new post as I posted this also under an older posting and I don't know if I was suppose to do it that way or not...

This is an idea I had in regard to trying to come up with another solution for myself regarding not being able to insert hyperlinks within the textfield of the multiple.swi page. I don't know if it will work so I need to find out from someone if this is even viable.

The non-profit organization wants me to add another multiple links page to the website but on this particular page they want 3 of the 4 multiple links located at the top of the page to link to PDF files located on their web server that can be downloaded. They don't want 3 of the links to go to the "Textfield"(or page that they are originally assigned to go to). Does this make sense? Can this be done and if so what would be the best way for me to do this?

:blink:

Rian
0

#7 User is offline   Wolf Gross 

  • Advanced Member
  • PipPipPip
  • Group: Moderator
  • Posts: 19,970
  • Joined: --
  • Gender:Male
  • Location:Perth/Australia

Posted 02 April 2008 - 09:28 AM

...I'll merge this with your other post regarding this.

wolf
Posted Image
Web Wolf Wonder Web Works

SWiSHsites modified
0

#8 User is offline   Wolf Gross 

  • Advanced Member
  • PipPipPip
  • Group: Moderator
  • Posts: 19,970
  • Joined: --
  • Gender:Male
  • Location:Perth/Australia

Posted 02 April 2008 - 09:44 AM

...you can use the area beetween the tagline and the textbox of any section to place links there - and to link to a pdf doc, you would use this...
on (release) {
getURL("http://www.your_domain.com/your_pdf_file.pdf","_blank");
}

wolf
Posted Image
Web Wolf Wonder Web Works

SWiSHsites modified
0

#9 User is offline   Wolf Gross 

  • Advanced Member
  • PipPipPip
  • Group: Moderator
  • Posts: 19,970
  • Joined: --
  • Gender:Male
  • Location:Perth/Australia

Posted 02 April 2008 - 01:23 PM

...if you want to use the 4 sub-forum links on "multiple.swi" as links to pdf files you have to change the script for "CONTENT/SUBNAV/SUBNAV/SUBNAV*/Button" from...

on (release) {
var hitpart = this._name.toString().split("SUBNAV");
_parent.cSub = Number(hitpart[1]);
_parent._parent.cSub = Number(hitpart[1]);
}
on (rollOver) {
gotoAndPlay("over");
}
on (rollOut) {
gotoAndPlay("out");
}

...to:
on (release) {
getURL("http://www.your_domain.com/your_pdf_file.pdf","_blank");
}
on (rollOver) {
gotoAndPlay("over");
}
on (rollOut) {
gotoAndPlay("out");
}

...and in "TEXT_FIELD" remove the sprites "PAGE2/3/4".

wolf
Posted Image
Web Wolf Wonder Web Works

SWiSHsites modified
0

#10 User is offline   rianashley 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 109
  • Joined: 25-June 05
  • Gender:Female

Posted 04 April 2008 - 11:53 PM

View PostWolf Gross, on Apr 1 2008, 07:44 PM, said:

...you can use the area beetween the tagline and the textbox of any section to place links there - and to link to a pdf doc, you would use this...
on (release) {
getURL("http://www.your_domain.com/your_pdf_file.pdf","_blank");
}

wolf


That's a good idea too. I never thought of doing that. I can use this as well. Thank you for this suggestion :) .
0

#11 User is offline   rianashley 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 109
  • Joined: 25-June 05
  • Gender:Female

Posted 04 April 2008 - 11:57 PM

Okay, I will try this. Thanks so much for your help. :)
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users