"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
447
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
447

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 The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/
  • The Helper The Helper:
    Decided to put up a healthier type recipe to mix it up - Honey Garlic Shrimp Stir-Fry https://www.thehelper.net/threads/recipe-honey-garlic-shrimp-stir-fry.193595/
  • The Helper The Helper:
    Here is another comfort food favorite - Million Dollar Casserole - https://www.thehelper.net/threads/recipe-million-dollar-casserole.193614/

      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