"Spam my (cheap) site"(tm) thread!

TFlan

I could change this in my User CP.
Reaction score
64
its flash, many ads these days have this feature, but not as unique as this.
 

quraji

zap
Reaction score
144
Fuck that must be a long script.

I see a lot of these in flash, so I think that it's moderately easy*. It even looks pretty simple, just mirror the add and slide the image down across the page.

*I'm not a flash artist/programmer
 

duyen

New Member
Reaction score
214
I see a lot of these in flash, so I think that it's moderately easy*. It even looks pretty simple, just mirror the add and slide the image down across the page.

*I'm not a flash artist/programmer

I'm pretty sure it's not that easy.
 

Oninuva

You can change this now in User CP.
Reaction score
221
Easy stuff man :) I will show you open-source version when I find the link.
 

JerseyFoo

1/g = g-1
Reaction score
40
Code:
body>
<script type="text/javascript" src="http://www.cirtexhosting.com/images/banners/peel2/peel.js">
1/*
2 Das Copyright dieses Scriptes liegt beim Autor.
3 Bitte die Lizenzbedingungen beachten, und ausgefüllt zurücksenden.
4*/
5
6var esel = new Object();
7// --------------------------------------------------------- MODIFFY
8esel.ad_url = escape('http://www.cirtexhosting.com/affiliates/idevaffiliate.php?id=1298'); // Change URL to be redirected to when clicking Peel Away Ad
9// --------------------------------------------------------- END MODIFY
10
11esel.small_path = 'http://www.cirtexhosting.com/images/banners/peel2/cornersmall.swf'; // Enter the URL of the Peel Away Corner Flash
12esel.small_image = escape('http://www.cirtexhosting.com/images/banners/peel2/images/smallanim.swf'); // URL of the Image behind the Peel
13esel.big_path = 'http://www.cirtexhosting.com/images/banners/peel2/cornerbig.swf'; // Enter the URL of the Large Peel Away Corner
14esel.big_image = escape('http://www.cirtexhosting.com/images/banners/peel2/images/big.gif'); // URL of the Big Image Behind the Peel
15
16// Do not Change anything under this line-----------------------------------------------------------------------------------------
17
18esel.small_width = '100';
19esel.small_height = '100';
20esel.small_params = 'ico=' + esel.small_image;
21esel.big_width = '650';
22esel.big_height = '650';
23esel.big_params = 'big=' + esel.big_image + '&ad_url=' + esel.ad_url;
24function sizeup987(){
25 document.getElementById('eselcornerBig').style.top = '0px';
26 document.getElementById('eselcornerSmall').style.top = '-1000px';
27}
28function sizedown987(){
29 document.getElementById("eselcornerSmall").style.top = "0px";
30 document.getElementById("eselcornerBig").style.top = "-1000px";
31}
32esel.putObjects = function () {
33document.write('<div id="eselcornerSmall" style="position:absolute;width:'+ esel.small_width +'px;height:'+ esel.small_height +'px;z-index:9999;right:0px;top:0px;">');
34document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
35document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
36document.write(' id="eselcornerSmallObject" width="'+esel.small_width+'" height="'+esel.small_height+'">');
37document.write(' <param name="allowScriptAccess" value="always"/> ');
38document.write(' <param name="movie" value="'+ esel.small_path +'?'+ esel.small_params +'"/>');
39document.write(' <param name="wmode" value="transparent" />');
40document.write(' <param name="quality" value="high" /> ');
41document.write(' <param name="FlashVars" value="'+esel.small_params+'"/>');
42document.write('<embed src="'+ esel.small_path + '?' + esel.small_params +'" name="eselcornerSmallObject" wmode="transparent" quality="high" width="'+ esel.small_width +'" height="'+ esel.small_height +'" flashvars="'+ esel.small_params +'" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
43document.write('</object></div></script>');
44document.write('<div id="eselcornerBig" style="position:absolute;width:'+ esel.big_width +'px;height:'+ esel.big_height +'px;z-index:9999;right:0px;top:0px;">');
45document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
46document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
47document.write(' id="eselcornerBigObject" width="'+ esel.big_width +'" height="'+ esel.big_height +'">');
48document.write(' <param name="allowScriptAccess" value="always"/> ');
49document.write(' <param name="movie" value="'+ esel.big_path +'?'+ esel.big_params +'"/>');
50document.write(' <param name="wmode" value="transparent"/>');
51document.write(' <param name="quality" value="high" /> ');
52document.write(' <param name="FlashVars" value="'+ esel.big_params +'"/>');
53document.write('<embed src="'+ esel.big_path + '?' + esel.big_params +'" id="eselcornerBigEmbed" name="eselcornerBigObject" wmode="transparent" quality="high" width="'+ esel.big_width +'" height="'+ esel.big_height +'" flashvars="'+ esel.big_params +'" swliveconnect="true" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
54document.write('</object></div>');
55setTimeout('document.getElementById("eselcornerBig").style.top = "-1000px";',1000);
56}
57esel.putObjects();
</script>
Code:
<div id="eselcornerSmall" style="position: absolute; width: 100px; height: 100px; z-index: 9999; right: 0px; top: 0px;">
<object id="eselcornerSmallObject" height="100" width="100" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
<param value="always" name="allowScriptAccess"/>
<param value="http://www.cirtexhosting.com/images/banners/peel2/cornersmall.swf?ico=http%3A//www.cirtexhosting.com/images/banners/peel2/images/smallanim.swf" name="movie"/>
<param value="transparent" name="wmode"/>
<param value="high" name="quality"/>
<param value="ico=http%3A//www.cirtexhosting.com/images/banners/peel2/images/smallanim.swf" name="FlashVars"/>
<embed height="100" width="100" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" allowscriptaccess="always" flashvars="ico=http%3A//www.cirtexhosting.com/images/banners/peel2/images/smallanim.swf" quality="high" wmode="transparent" name="eselcornerSmallObject" src="http://www.cirtexhosting.com/images/banners/peel2/cornersmall.swf?ico=http%3A//www.cirtexhosting.com/images/banners/peel2/images/smallanim.swf"/>
</object>
</div>
<div id="eselcornerBig" style="position: absolute; width: 650px; height: 650px; z-index: 9999; right: 0px; top: -1000px;">
<object id="eselcornerBigObject" height="650" width="650" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
<param value="always" name="allowScriptAccess"/>
<param value="http://www.cirtexhosting.com/images/banners/peel2/cornerbig.swf?big=http%3A//www.cirtexhosting.com/images/banners/peel2/images/big.gif&ad_url=http%3A//www.cirtexhosting.com/affiliates/idevaffiliate.php%3Fid%3D1298" name="movie"/>
<param value="transparent" name="wmode"/>
<param value="high" name="quality"/>
<param value="big=http%3A//www.cirtexhosting.com/images/banners/peel2/images/big.gif&ad_url=http%3A//www.cirtexhosting.com/affiliates/idevaffiliate.php%3Fid%3D1298" name="FlashVars"/>
<embed id="eselcornerBigEmbed" height="650" width="650" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" allowscriptaccess="always" swliveconnect="true" flashvars="big=http%3A//www.cirtexhosting.com/images/banners/peel2/images/big.gif&ad_url=http%3A//www.cirtexhosting.com/affiliates/idevaffiliate.php%3Fid%3D1298" quality="high" wmode="transparent" name="eselcornerBigObject" src="http://www.cirtexhosting.com/images/banners/peel2/cornerbig.swf?big=http%3A//www.cirtexhosting.com/images/banners/peel2/images/big.gif&ad_url=http%3A//www.cirtexhosting.com/affiliates/idevaffiliate.php%3Fid%3D1298"/>
</object>
</div>

That's the code for it if you haven't gotten it yourself yet. Honestly I'd delete my site before adding something like this but your preference.

Don't see how it could be "a long script", just a flash animation with 2 objects fixed in the top. Could be done alot better, like having the object load after the website and only one object.
 

FhelZone

Have a drink of a nice cold mellowberry juice!
Reaction score
103
I think theres a lot of scripting in this one :D Could you give me the preview?
 

JerseyFoo

1/g = g-1
Reaction score
40
It is a flash object which is switched with another flash object on mouseover, where is all the scripting in that.

The hardest part is animating it I'd say.
 

FhelZone

Have a drink of a nice cold mellowberry juice!
Reaction score
103
So you mean there are 2 flash objects, the only thing you need to do next is create 2 different flash objects, 1 for idle and 1 for the overview thingy.....
 

JerseyFoo

1/g = g-1
Reaction score
40
According to the script there are 3.
Code:
11esel.small_path = 'http://www.cirtexhosting.com/images/banners/peel2/cornersmall.swf'; // Enter the URL of the Peel Away Corner Flash
12esel.small_image = escape('http://www.cirtexhosting.com/images/banners/peel2/images/smallanim.swf'); // URL of the Image behind the Peel
13esel.big_path = 'http://www.cirtexhosting.com/images/banners/peel2/cornerbig.swf'; // Enter the URL of the Large Peel Away Corner
14esel.big_image = escape('http://www.cirtexhosting.com/images/banners/peel2/images/big.gif'); // URL of the Big Image Behind the Peel

All the work is in the flash animation, that's all I'm saying. The page peeling effect is just transparency, it not taking into account anything on the webpage.

Pseudo-code
Code:
Write small object to page
Write big object to page, hide

On mouse over of small object...
Hide small object
Show big object, play animation

On mouse out of big object
Play animation ( insert 3rd object )
Hide big object ( and remove 3rd object )
Show small object

Your saying "that must be a big script" but its just animation.

I have no idea how to use Flash, but I would guess that...
  • The peeling away effect is the big objects start animation
  • The peeling back effect is a seperate object from the two

It should be able to be done with 1 single object, but they use 3.
 

UndeadDragon

Super Moderator
Reaction score
448
I found a good menu generator which moves when the page is scrolled. Here.

If you don't want it for a menu, you can just use that as a template to work on.
 

FhelZone

Have a drink of a nice cold mellowberry juice!
Reaction score
103
Thanks! Is there anything else that would use the vertical part?
 

FhelZone

Have a drink of a nice cold mellowberry juice!
Reaction score
103
Javascript Dropdown Menu

I was trying to implement a new navigation bar, and I would need a dropdown menu. Though the navigation bar is based on a CSS and I would need another class. I'm a bit confused on this, how would I implement a dropdown on this one? Heres my blog.....
 

UndeadDragon

Super Moderator
Reaction score
448

FhelZone

Have a drink of a nice cold mellowberry juice!
Reaction score
103
I have many external files associated with blogger. You can use other websites to store some of the files that you would need like CSS files and other more like .js files.

~ Edit ~

Oh look at that, I have implemented a new navigation bar :D thanks for helping everyone.

Click the smiley to see my navigation bar :D
 
General chit-chat
Help Users
  • No one is chatting at the moment.

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top