00:00
00:00
View Profile nabibrian
They must find it difficult... Those who have taken authority as the truth, rather than TRUTH as the authority.

Male

MO

Joined on 10/9/06

Level:
11
Exp Points:
1,130 / 1,350
Exp Rank:
58,071
Vote Power:
5.28 votes
Rank:
Scout
Global Rank:
38,770
Blams:
12
Saves:
225
B/P Bonus:
4%
Whistle:
Normal

nabibrian's News

Posted by nabibrian - February 10th, 2008


Here's how you can protect yourself and your files as well as know when your files are being stolen.

The first way to stop a thief is to block their site from using your file. This can be achieved by placing code to detect their site and not allow you movie to play. This code should do the trick:

// URL Checker
checkIt = this._url.substring(8,this._url.indexO f( "/", 8 ) );
// Enforcer
if (checkIt.indexOf( "SiteToBlockHere.com" ) != -1) {
stop();
}

What the code does is check its location and if it matches "SiteToBlockHere.com", then it stops your movie. Place this code in a reoccurring movie clip for maximum effect. That way, the thief can't have your movie start at the frame after the stop code, thus defeating your code. If you are using it in a game, place the code on enemy spawn code or in your character's walking code. If it's in a video, toss it in every 200 frames.

So that's the easy way to block 1 site from using your flash file, but what if you want something a bit better? You could always change the script so that it only allows 1 site so that it works on your site but not on other sites, but maybe you want to give copies to other people and you don't want to edit the code every time you let someone host it. Here's where having a file 'call home' is helpful.

You'll have your file load an XML file from your site to both track a thief and thwart them. First, you need to create the XML file. In a text editor make a new file (you can create an empty action script file in flash) and insert the following:

<?xml version="1.0"?>
<a ntiTheft>
<banned site="someSite.com" />
<banned site="someOtherSite.com" />
</antiTheft>

You can change, add and remove the <banned site="" /> tags as needed. Save the file and call it something like 'banned.xml' and then upload it to your site (upload it anywhere you want, just know where you put it). Then go into the flash video you want to protect. All you need to do is tell your flash file to read that XML file and not run if it's on a banned site.

Here's how you do it:

// URL Checker Setup
checkIt = this._url;
checkIt = checkIt.substring(7, checkIt.indexOf("/", 8));

data_xml = new XML();
data_xml.ignoreWhite = true;
data_xml.onLoad = function(success) {
if (success) {
var track_xml = data_xml.firstChild.firstChild;
while (track_xml != null) {
// Enforcer
if (checkIt.indexOf(track_xml.attributes.
site) != -1) {
stop();
}
track_xml = track_xml.nextSibling;
}
else {
//server down/file missing
stop();
}
delete data_xml;
};
data_xml.load("http://www.yoursite.com /banned.xml");

Be sure to change the last line to match the path to your ban file!

What the code does is 2 things. First 'checkIt' is set to the site that the flash video is playing from. If you were to put you movie at 'http://www.yoursite.com/videos/movie.
swf
', checkIt would be set to 'www.yoursite.com'. The next thing it does is load your banned.xml from your server and checks if it's on any of the banned sites. If it matches a banned site to its location, it'll halt the movie playback. Also, if it can't connect to your server it won't play.

Having you flash files call home is a nice way to track them. If you look at your server logs (or server stats) you can see who's requesting your banned.xml file, and track down people who have stolen your file(s). This allows you to ban sites as you find out about them and not block all sites which could block legitimate sites. A possible extension to this is adding a 'file' property to each 'banned' tag so that it reads <banned site="someOtherSite.com" file="myVideo" /> and have the videos detect if the ban rule applies to them or not. That way you can have your videos banned on different sites.

The only weakness to this code is that if someone hotlinks your movie, it'll still work as it'll be loading from your server. The only way to prevent that is to implement anti-hotlinking code on your server.

Don't let the thieves make money off your hard work!


Posted by nabibrian - September 7th, 2007


I am currently taking a break from making any games right now.

I am brainstorming some ideas.

I will submit something in a short while. Thanks for waiting!


Posted by nabibrian - August 27th, 2007


Now I will be the first to admit that I need lots of improvement on my flash work.

I appreciate each and every review. Thanks for taking time to review flash submissions. You don't know really how much your feedback is appreciated.

However, I am finding that there are some that leave some pretty brash reviews and have yet to submit any flash themselves. What gives, they are now the experts?

So, next time you the flash expert who has yet to submit any flash work decides to offer your technical support advice. Why don't you first show me and us how well you can do. After all, you are the expert!

Now for those who give both positive and not so positive reviews but have authored at least one or more submissions, I especially respect your reviews as for the most part many of you set the standard for flash gaming/design. Thanks!

Peace!!


Posted by nabibrian - August 27th, 2007


Well...

I have been doing some extra studying and have taken many of your reviews quite seriously.

I desire to brush up on my graphical skills and make my flash more pleasing to the eye.

I am pleased to inform you that you will find more of my next flash submissions to be at least graphically better.

I will also make an effort to include the NG pre-loader so long as I don't run into any problems.

Thanks for taking time to review my submissions!

Here's a screenshot of one of the projects that I am currently working on, it is called: "O.M.G."

This movie is about some guy who is out for a drive and rocking out.
He comes to a river with no way around except for a bridge which is WAY out of the way.

You have to make a choice what to do!

Will this happen to you??

Better stuff!


Posted by nabibrian - August 18th, 2007


I am currently working on a second edition of Biblenaire for those of you interested.

:)


Posted by nabibrian - August 16th, 2007


I have found Newgrounds section on Flash Tutorials VERY helpful!

If you are new to flash, may I suggest you check the Newgrounds flash tutorials section. You will find a wealth of information just waiting for you to view.

Flash Tutorials