A little help please...

Hanneman_213

New Member
On my page there are some users who visit it in places where they shouldn't (like in their jobs or where they studies)... so I made one button called "Panic Button", it works in the same way "Floating Guest Notify" does (http://www.vbteam.info/vb-3-6-x-addons-template-modifications/352-floating-guest-notify.html), the idea of this is when the users thinks they could be surprised by someone, they just click the button and they will be redirectioned to another web, now I put a redirection to Google on a new window (or tab).

This is the code I'm using

HTML:
<if condition="$show['member']">
 <!-- Botón de pánico -->
<style type="text/css">

#topbar{
    position:absolute;
    border: 0px solid black;
    padding: 0px;
    background-color: ;
    width: 173px;
    visibility: hidden;
    z-index: 200;
    top: 1px;
    height: 46px;
    left: 1px;
}

</style>

<script type="text/javascript">
var persistclose=1 //set to 0 or 1. 1 means once the bar is manually closed, it will remain closed for browser session
var startX = 828 //set x offset of bar in pixels
var startY = 30 //set y offset of bar in pixels
var verticalpos="frombottom" //enter "fromtop" or "frombottom"

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function closebar(){
if (persistclose)
document.cookie="remainclosed=1"
document.getElementById("topbar").style.visibility="hidden"
}

function staticbar(){
barheight=document.getElementById("topbar").offsetHeight
var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera;
var d = document;
function ml(id){
var el=d.getElementById(id);
if (!persistclose || persistclose && get_cookie("remainclosed")=="")
el.style.visibility="visible"
if(d.layers)el.style=el;
el.sP=function(x,y){this.style.left=x+"px";this.style.top=y+"px";};
el.x = startX;
if (verticalpos=="fromtop")
el.y = startY;
else{
el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight;
el.y -= startY;
}
return el;
}
window.stayTopLeft=function(){
if (verticalpos=="fromtop"){
var pY = ns ? pageYOffset : iecompattest().scrollTop;
ftlObj.y += (pY + startY - ftlObj.y)/8;
}
else{
var pY = ns ? pageYOffset + innerHeight - barheight: iecompattest().scrollTop + iecompattest().clientHeight - barheight;
ftlObj.y += (pY - startY - ftlObj.y)/8;
}
ftlObj.sP(ftlObj.x, ftlObj.y);
setTimeout("stayTopLeft()", 10);
}
ftlObj = ml("topbar");
stayTopLeft();
}

if (window.addEventListener)
window.addEventListener("load", staticbar, false)
else if (window.attachEvent)
window.attachEvent("onload", staticbar)
else if (document.getElementById)
window.onload=staticbar
</script>

<div id="topbar">
<p align="right"><a href="" onClick="closebar(); return false"><img src="http://i29.tinypic.com/w03sk8.gif" border="0" /></a>
  </align>
<a href="http://www.google.cl" target="_blank"><img src="http://i31.tinypic.com/nvr6on.jpg" border="0"></a></td>
</div>

<!-- End Botón de pánico -->
</if>
I have this on the footer template.
If someone don't like it, can close it and it will remain closed for browser session.

This is how it looks

Now, I need help with this. Could every user choose the web it will be redirectioned using one custom profile field?

I tried changing
HTML:
<a href="http://www.google.cl" target="_blank">
to
HTML:
<a href="$post[fieldX]" target="_blank">
where X is the custom profile field I did, but it didn't worked.

Someone knows how to do what I want? Any suggestion to make this better?

Thanks in advance.

PD: Sorry for my poor english xD
 
Back
Top