Page 1 of 1
Multiple Links page have some links link to page outside website Can some links be linked to pages outside website?
#1
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
Rian
#2
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
...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
#3
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.
#5
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?
Rian
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?
Rian
#6
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?
Rian
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?
Rian
#8
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
on (release) {
getURL("http://www.your_domain.com/your_pdf_file.pdf","_blank");
}
wolf
#9
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
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
#10
Posted 04 April 2008 - 11:53 PM
Wolf 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
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
Share this topic:
Page 1 of 1

Help












