Jump to content
  • 0

slider text in thor patcher


Kariton Revolution

Question


  • Group:  Members
  • Topic Count:  161
  • Topics Per Day:  0.04
  • Content Count:  429
  • Reputation:   5
  • Joined:  11/21/11
  • Last Seen:  

Im having error on slider in my thor patcher the sliders is like a small square like this when
i browse the slide.html in internet explorer

Here when i browse my url where i save the slide.html and also that is the same image showing on my thor patcher 

post-467-0-41932100-1458374818_thumb.png

but when i browse in Google Chrome its working fine ?? how to solve this please help
post-467-0-64443200-1458374821_thumb.png

 

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  108
  • Reputation:   1
  • Joined:  02/10/12
  • Last Seen:  

already solved it..

<script type="text/javascript"
   src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js"></script>
<script type="text/javascript"
   src="https://ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js?
   load=effects"></script>
<style>
html,body{margin:0px;padding:0;border0px;overflow:hidden;}
</style>
 <script type="text/javascript">

  function ShowEffect(element){
       new Effect.Appear(element,
       {duration:1, from:0, to:1.0});
   }
    function FadeEffect(element){
       new Effect.Fade(element,
       {duration:1, from:1.0, to:0});
   }
   
var i = 0;
var path = new Array();
 
// LIST OF IMAGES
path[0] = "link/to/image";
path[1] = "link/to/image";
path[2] = "link/to/image";

function swapImage_0()
{
   document.slide.src = path[i];
   if(i < path.length - 1) i++; else i = 0;
 
 setTimeout("FadeEffect('hideshow')",4000);

setTimeout("ShowEffect('hideshow')",5000);

 setTimeout("swapImage_0()",6000);
 
 
}
window.onload=swapImage_0;

</script>

<div id="hideshow">

<a href="link/to/image" target="_blank"><img height="auto" name="slide" src="link/to/image" width="auto"/></a>

</div>
Link to comment
Share on other sites

  • 0

  • Group:  Content Moderator
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  639
  • Reputation:   596
  • Joined:  11/25/11
  • Last Seen:  

Thor Patcher uses Internet Explorer, so, check any code on IE and it probably may be compatible with Thor Patcher.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  161
  • Topics Per Day:  0.04
  • Content Count:  429
  • Reputation:   5
  • Joined:  11/21/11
  • Last Seen:  

Thor Patcher uses Internet Explorer, so, check any code on IE and it probably may be compatible with Thor Patcher.

hi sir sorry but where i can check any codes for that .

can you tell me what is that error so i can search it on google ? plesae help me /thx

im using this patcher .

https://rathena.org/board/files/file/3189-pro-style-s1-free-thor-patcher-v3/

Link to comment
Share on other sites

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3123
  • Reputation:   1617
  • Joined:  03/26/12
  • Last Seen:  

Posting your html might help us help you.

Link to comment
Share on other sites

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3123
  • Reputation:   1617
  • Joined:  03/26/12
  • Last Seen:  

i also use this, has anyone solved it?

It's solvable if you post your html and css, like i said.

Link to comment
Share on other sites

  • -1

  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  108
  • Reputation:   1
  • Joined:  02/10/12
  • Last Seen:  

i also use this, has anyone solved it?

Link to comment
Share on other sites

×
×
  • Create New...