A Flash Developer Resource Site

Results 1 to 7 of 7

Thread: Tips on how to stop sites to RIP your stuff.

  1. #1
    MindGem Graphics Inc. JediMind's Avatar
    Join Date
    Nov 2001
    Location
    Stockholm/Sweden
    Posts
    407

    Tips on how to stop sites to RIP your stuff.

    I need help, i have 2 games/programs, that gladly enough are very popular, i get aprox 50000 hits per day for them, but along with that
    i also get a flood of sites that run my games in a frame on there site. and this is not good at all for me.
    First question is: Is this even legal, and it dosent matter anyways,
    because its no idea to try to sue, or whatever. not gonna happend.
    Second Question: How can i prevent this the best way ?
    Right now, i just have a text on the indexsite of the game, saying that "If your not on www.mingem.nu blah blah, you should go there.."
    and whatever, its the best i could think of.

    Any ideas ? MindGem

  2. #2
    Developer
    Join Date
    Sep 2001
    Location
    The Bluegrass State Will Flash For Food ™
    Posts
    3,789
    Flash Games?

    HTML:
    Code:
    <script language="JavaScript">
    <!--
    	if (window != top) {
    		top.location.href = location.href;
    	}
    //-->
    </script>
    Flash:
    Code:
    if (_flash._url != "http://www.mingem.nu/graffiti.swf") {
    	_flash.unloadMovie();
    }

  3. #3
    MindGem Graphics Inc. JediMind's Avatar
    Join Date
    Nov 2001
    Location
    Stockholm/Sweden
    Posts
    407

    HaHa

    Great stuff, never new that existed.

    Thanx gSolO

  4. #4
    Registered User
    Join Date
    Feb 2001
    Posts
    13,041
    Hi,

    just wnted to remind you that someone could just do
    <embed src="http://www.mingem.nu/graffiti.swf" ...>
    This way the flsh test would allow the movie AND you would even pay for the bandwidth

    Musicman

  5. #5
    MindGem Graphics Inc. JediMind's Avatar
    Join Date
    Nov 2001
    Location
    Stockholm/Sweden
    Posts
    407

    Damn!

    Cus thats the biggest threat to me, the bandwidth
    from that site, the worst of them, i get i dunno, 20-30 thousand hits
    and thats alot of bandwidth, for my program that is 200-300kb

    I tested with this,

    if (_flash._url != "http://www.mingem.nu/graffiti.swf") {
    _flash.unloadMovie();
    getURL(http://www.mindgem.nu/graffiti.html);
    }

    cus i wanted to reload to my site. but this cause it to open about
    20 new windows, before it stopped, or i stopped it.
    Arrg..


    oh well...
    MindGem

  6. #6
    MindGem Graphics Inc. JediMind's Avatar
    Join Date
    Nov 2001
    Location
    Stockholm/Sweden
    Posts
    407

    Musicman

    Any ideas how to prevent the embedding to work.

  7. #7
    Registered User
    Join Date
    Feb 2001
    Posts
    13,041
    Hi,

    there was a good one posted in scripting & backend a few weeks ago: essentially the movie makes a call to javascript to retrieve the location (of the html page)
    This may not work with every browser
    Have the movie interact with the server ... and generate a bit of extra traffic this way

    Musicman

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center