Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Button Actionscripts



I really suck at actionscripts, especially in Flash. I'm not very good in the program and I have made this website which uses different scenes for different pages. You can surf throught the scenes with a menu. Everything is ready but the problem is that I have to connect the buttons to the scenes. Which actionscript do I need?

And do I have to use a 'stop' in every scene?

Thanks in advance

Nepeace



FlashKit > Flash Help > Flash General Help
Posted on: 02-16-2004, 07:30 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Koolmoves Actionscripts For A Press,realese Play Movie Button?
can someone give me an actionscript for a push button press,and realse play movie actionscripts?becuase when i do it it says expectin line 23?

Actionscripts?
im pritty new to flash mx (infact i only got it 5 days ago) and i have been doing the tutorials on flashkit.com. In the tutorial it keeps saying things like "insert action script in the actionscript propertys blablalablalblablabla ect." Is actionscript important? Do i need to learn it? Where can i learn it? Any tutorials?

ActionScripts.txt
vertex = function (x, y, z) {
this.x = x;
this.y = y;
this.z = z;
};
vertex.prototype.rotateXY = function(sinX, cosX, sinY, cosY) {
//rotation around of axes X and Y
var yp = this.y*cosY-this.z*sinY;
var zp = this.y*sinY+this.z*cosY;
var xp = this.x*cosX+zp*sinX;
var zp = -this.x*sinX+zp*cosX;
this.x = xp;
this.y = yp;
this.z = zp;
};
vertex.prototype.perspective = function() {
//calculation 3d to 2d
var perRatio = 1/(this.z/dist+1);
this.rx = cnx+this.x*perRatio;
this.ry = cny+this.y*perRatio;
};
face = function (c, v1, v2, v3, v4) {
this.c = c;
this.v1 = v1;
this.v2 = v2;
this.v3 = v3;
this.v4 = v4;
};
face.prototype.draw = function() {
var shadow = 140+((v[this.v1].rx+v[this.v2].rx+v[this.v3].rx+v[this.v4].rx)-(v[this.v1].ry+v[this.v2].ry+v[this.v3].ry+v[this.v4].ry))/4;
_root.lineStyle(0, 0x000000, 100);
_root.beginFill(shadow << 16 | shadow << 8 | shadow << 0, 100);
_root.moveTo(v[this.v1].rx, v[this.v1].ry);
_root.lineTo(v[this.v2].rx, v[this.v2].ry, v[this.v3].rx, v[this.v3].ry);
_root.lineTo(v[this.v3].rx, v[this.v3].ry, v[this.v4].rx, v[this.v4].ry);
_root.lineTo(v[this.v4].rx, v[this.v4].ry, v[this.v1].rx, v[this.v1].ry);
_root.endFill();
};
face.prototype.fill = function() {
var vis = ((v[this.v2].rx-v[this.v1].rx)*(v[this.v3].ry-v[this.v1].ry)-(v[this.v2].ry-v[this.v1].ry)*(v[this.v3].rx-v[this.v1].rx));
if ((this.c+2)%2) {
vis *= -1;
}
if (vis>=0) {
this.draw();
}
};
_root.onLoad = function() {
cnx = 250;
cny = 250;
dist = 200;
var sx = 75;
var sy = 75;
var sz = 75;
rad = Math.PI/180;
amount = 7;
// initialization of the vertex
v = new Array();
v[0] = new vertex(sx, -sy, sz);
v[1] = new vertex(sx, sy, sz);
v[2] = new vertex(sx, sy, -sz);
v[3] = new vertex(sx, -sy, -sz);
v[4] = new vertex(-sx, -sy, -sz);
v[5] = new vertex(-sx, sy, -sz);
v[6] = new vertex(-sx, sy, sz);
v[7] = new vertex(-sx, -sy, sz);
// initialization of the faces
f = new Array();
f[0] = new face(0, 0, 1, 2, 3);
f[1] = new face(1, 2, 3, 4, 5);
f[2] = new face(2, 4, 5, 6, 7);
f[3] = new face(3, 0, 1, 6, 7);
f[4] = new face(4, 0, 3, 4, 7);
f[5] = new face(5, 1, 2, 5, 6);
};
// ################################################## ##
// -- © 2002-2003 Grigory Ryabov.
// -- http://www.flash.plux.ru
// ################################################## ##
this.onEnterFrame = function() {
var xa = -(cnx-_ymouse)*rad/25;
var ya = (cny-_xmouse)*rad/25;
var sinY = Math.sin(ya);
var cosY = Math.cos(ya);
var sinX = Math.sin(xa);
var cosX = Math.cos(xa);
for (var i = 0; i<=amount; i++) {
v[i].rotateXY(sinY, cosY, sinX, cosX);
v[i].perspective();
}
_root.clear();
// fill the right side face
f[0].fill();
// fill the front face
f[1].fill();
// fill the left side face
f[2].fill();
// fill the back face
f[3].fill();
// fill the bottoms face
f[4].fill();
// fill the top face
f[5].fill();
};
stop();

Actionscripts
Hey I don't understand actionscripts where can I learn them?(tried the actionscript dictionary already and I do not understand such stuff)

Help With Actionscripts
I am designing a game and I have a dynamic text box with the variable named power. Throughout the game the number in this box will rise. For an enemy in the game I will have a health bar that will decline as the enemy gets hit. How can i use the number in the power text box to determine how much the health bar will decline. Please give me an example of a script. It will be greatly appreciated.
Thanks,
Chad Conger

Any Actionscripts Can Help Me?
I want that all buttons in my animation have the same action except a button which instance name is "ABC". But I don't want to add the same actionscripts for each button which instance is not "ABC". Can I do this? How?

I Need Some Help. Actionscripts
pls give me some copy of your actionscripts. pls. pls. pls

Help Me On Actionscripts
I have figured out how to use "HitTest".
but I have a game I'm making, and I made an invisable moveclip, and when my player goes on it or "hitTest" it. Then it will move to the next frame and play...

could someone help me wih this problem...

here is my code:
If _root.player, HitTest (_root.object2) then
telltarget "?my movie"
gotostop "56"


but I want to know how do you tell the movie to move to a specific frame?

that only thing I know is how to tell a moveclip to move a specific frame inside of it.

how do you tell the movie to move...

Actionscripts
How can I trace Fps for the movie with actionscript?
How can I trace Cpu for the movie with actionscript?

I have seen this in other flash movies/games and wonder
how it is done..

ActionScripts... Where Do They Go?
problem solved... Thank you so much

Actionscripts
hello,

i am new at this flash thing. heres the situation. I have a looped from frame, say, 135 to 195 - i.e. the movie plays within these frames. I have written an action script to jump to frame 196 on a button click. simple so far. the trouble is once it reaches the 196th frame, the movie doesnt display anything even though there are clips and objects beyond it.

i have been at it for hours and cant figure out why does it not display the clips beyond 196. help!

FULL Actionscripts For EVERYTHING?
One quick question for you guys. A guy wants a Flash site where ALL the tweens are in actionscripts. Although I doubt this is possible, (tell me if it is or not) but let's just say it is. Tell me something, as developers, would you want to waste your time writing actionscripts for EVERY single motion tween out there? I mean, really, can someone tell me how much file size (give me a percentage) it would save? I seriously doubt it'd help any more than about a 5% file size decrease, if even that. Oh, and I'm not talking about extreme tweens where things bounce around, etc, I'm talking about your BASIC Flash sites. As a developer, what do you think is optimal as far as doing the least for the most?

Riki

Sliding MCs With Actionscripts
here's the deal. I have five menu items(buttons) lined up vertically. In front of those menu items I have a MC that magnifies them (covering one item at a time). That part works fine.

I want to be able to click on another menu item and have that button set the Y axis variable so the magnifying MC slides along the y axis to the click item. Sliding being the part I can't make happen. I've found similar examples in Flash 5 but I need to do this project in Flash 4. And am have had no luck converting the code. Does anyone have a flash 4 example they could share?

Any help you can offer is greatly appreciated.

-feeling very mini

ActionScripts Where To Start?
I don't have a clue about action scripting where can I start.
which tutorial is best to use?

How can I tween an image to do a skew transformation?

What Would Be The Best Way To Learn Actionscripts?
im pissed, i suck at actionscripts, how should i go about learning the whole code?

Interface Actionscripts
ok on an interface, whats the script so when the mouse clicks, it changes scene?
and whats the script for mouse overs?

Basic Actionscripts
I'm new to flash and trying to learn and understand actionscripts. I would like to know of some good tutorials on basic things to get me started. I have messed around with many things and can't get anything to work right. If you have any help I would greatly appreciate it. this is about as far as i have been able to take the program. www.halo-elite.com/test.html

How Do I Consolidate These Actionscripts?
What is the best way to consolidate all of this? I apologize for the length of the post.

_root.resumeButton.onRollOver = function() {
this.gotoAndStop("_over");
this.swapDepths(2);
};
_root.resumeButton.onPress = function() {
this.gotoAndStop("_down");
};
_root.resumeButton.onRelease = function() {
this.gotoAndStop("_up");
};
_root.resumeButton.onRollOut = function() {
this.gotoAndStop("_up");
};
_root.bioButton.onRollOver = function() {
this.gotoAndStop("_over");
this.swapDepths(2);
};
_root.bioButton.onPress = function() {
this.gotoAndStop("_down");
};
_root.bioButton.onRelease = function() {
this.gotoAndStop("_up");
};
_root.bioButton.onRollOut = function() {
this.gotoAndStop("_up");
};
_root.dirButton.onRollOver = function() {
this.gotoAndStop("_over");
this.swapDepths(2);
};
_root.dirButton.onPress = function() {
this.gotoAndStop("_down");
};
_root.dirButton.onRelease = function() {
this.gotoAndStop("_up");
};
_root.dirButton.onRollOut = function() {
this.gotoAndStop("_up");
};
_root.shakButton.onRollOver = function() {
this.gotoAndStop("_over");
this.swapDepths(2);
};
_root.shakButton.onPress = function() {
this.gotoAndStop("_down");
};
_root.shakButton.onRelease = function() {
this.gotoAndStop("_up");
};
_root.shakButton.onRollOut = function() {
this.gotoAndStop("_up");
};
_root.proButton.onRollOver = function() {
this.gotoAndStop("_over");
this.swapDepths(2);
};
_root.proButton.onPress = function() {
this.gotoAndStop("_down");
};
_root.proButton.onRelease = function() {
this.gotoAndStop("_up");
};
_root.proButton.onRollOut = function() {
this.gotoAndStop("_up");
};
_root.masterButton.onRollOver = function() {
this.gotoAndStop("_over");
this.swapDepths(2);
};
_root.masterButton.onPress = function() {
this.gotoAndStop("_down");
};
_root.masterButton.onRelease = function() {
this.gotoAndStop("_up");
};
_root.masterButton.onRollOut = function() {
this.gotoAndStop("_up");
};
_root.physButton.onRollOver = function() {
this.gotoAndStop("_over");
this.swapDepths(2);
};
_root.physButton.onPress = function() {
this.gotoAndStop("_down");
};
_root.physButton.onRelease = function() {
this.gotoAndStop("_up");
};
_root.physButton.onRollOut = function() {
this.gotoAndStop("_up");
};

PageFlip From Actionscripts.org
hello.
im disecting the PageFlip file from ActionScrits.org Originaly from Pixelwit.com

Look exelent BUT ive been trying to code a sort of menu that appers on the second page of the book or even outside of the actual book that jumps say to the 3rd 2nd or 5th page but still keeps the order when u flip back or forward from that page.
But with no sucsess.
Could some one take a look @ the attached file "the attached file is the original from pixelwit.com as my file is to large to upload here.
and also i would post my code here but i exeeds the character limit of this board some thing like 150000 characters.

Thanks.

CGI And Flash Actionscripts
Hi,

I am looking for help. I have tried to use several tutorials but never seemed to work properly and I am wondering if you know a good tutorial that would help me building a flash form with a submit button. I am using an apache server with perl, cgi-bin. The latest version. I would like to be able to receive the form via my email located on hotmail.

Thanks.

Problem With Actionscripts
I am making a brickles-type game for fun and I have run into a problem. The ball can't get the _x and _y or any other value of the paddle. I am sure it is just some simple problem with how I worded it:
if (paddle._y <= _y) {
}

That should do something when the paddle's y value is less than the ball's y value. It doesn't.

Even doing this:
trace (paddle._y);
doesn't work. Therefore I think I worded it wrong. What do you say instead of "paddle._y" to get the y value of the paddle?

DuplicateMovieClip And Actionscripts
Hi,

i created a matrix of squares with the function duplicateMovieClip and set some properties on the duplicated clips.
This is the code that does it:

Code:
amount = 100;
perrow = 10;
counter = 0;
while (amount>0) {
duplicateMovieClip (square, "mc"+i, i);
if(amount % perrow == 0) {
FromTop = FromTop + 10;
counter = 0;
}
setProperty ("mc"+i, _x, counter * 10);
setProperty ("mc"+i, _y, FromTop);
setProperty ("mc"+i, _alpha, 100 / counter);
i++;
counter++;
amount--;
}


Now I want that when someone rolls over one of the duplicated clips, this clip will get other properties (width, height, alpha, wathever)

I also want that every time a movie loops (onClipEvent(enterFrame) ) it changes the alpha of that clip. In that way I want to create a kind of "wave" in the alpha values of the squares.

I hope this make any sense ?

Thankx for the help,
kGP

Actionscripts Along The Timeline
If I have a actionscript at frame 1 (just a on(press) action) and then I put a different actionscript at frame 50, it seems that my button doesn't work anymore after frame 50, unless I repeat the original on(press) script at frame 50.

Make sense?

Flash 4 And Actionscripts
I have Flash 4 and would like to know where I can find out about all the actionscript commands available to me and how to use them.I have both the original manual plus another FLASH 4 help book but neither list the commands which I think is pretty poor.
Thanks.

How To Set Pic Coordinates By Actionscripts?
Hi. I'd like to know (if it's possible) how to set & change coordinates points of the picture filling of a shape (as BeginGradientFill can set the coordinates points of a gradient) ?
Thanks for answers

ActionScripts With Scenes
Hi, all.
Recently having some problem with using scene in Flash.
Would like some advice.
I have 3 scenes, Main, Scene B, Scene C.
Main is the starting scene.
I will go to Scene B or C from Main.

In Scene B and C, I have a function
code: _root.onMouseDown = function() {//bring me to main};
this will bring me back to Main.

Here comes the problem.
After returning from Scene B or C,
when I click the mouse in Main,
It actually trigger the mouseDown function from Scene B or C.

I would like to ask has anybody experienced this?
Is it becos Flash only allows one
code: _root.onMouseDown = function() {//bring me to main};
to be declasred in the whole movie?
Thanks

Sound Actionscripts
hey,

i'm aware of actions in relation to sound such as playsound, stopsound, stopallsounds,

but i was wondering if there's a script out there that allows you to prevent new sounds from coming up? kinda like a 'silent' mode

Can ActionScripts Contain CSS Features?
I am building a resource guide for a company that will be hundreds of companies. Each company will have a hyperlink to it's website.

The the guide will have multiple sections with scrolling lists of these companies.

Althgh I've been working in flash for years, I'm limited in my action scripting.

My solution to adding all the hyperlinks is to just creat that part of the company as a button. But the buttons need to be decorative such as a different color and underline when hover.

In html, CSS handles that flawlessly on a global level. Does flash action script have a feature where if I assign an instance to a button it to can have features such as text font, color, underline, etc...

thanks for any help.

[F8] Actionscripts For Buttons
when button1 is clicked AFTER movieclip1 is played, movieclip2 is played. So I am trying to write this actionscript on the last frame of movieclip1.

How do I do this? I tried:

Code:
On(button1.release) {
(_rootmovieclip2.gotoAndPlay (15))
}
But I got a syntax error!!! What do I do??? Please help! Really am stuck.

Masking Using Actionscripts
Hi,

I wonder if there is anyway I can use masking for the tweening text up and down not using motion tween but actionscript? I think Bill_T has this script and it works great but I wonder if I can do the masking along with the text.

Thanks

Beginner In Actionscripts
hi... i have worked a bit with flash and now want to move on to the wonders of actionscript....

as i can see there is flash 5 and flash MX...and must admit i have no idea of what MX is....lol

i was wondering if there was someone who could help me with some starter tips about what programs are best to use...

ActionScripts Not Executing
Having an issue similar to KB401230, but with newer player. Scripts are ignored on my flash movies. And, when I try to debug, it says it can't because there are no Actionscripts. I tried moving scripts to the second frame as the KB suggested, but that did NOT work. I have simple scripts: stop the timeline@each frame and provide interaction with elements on-stage. Is there any file or network permissions issues not allowing the scripts to run? We sometimes have strange permissions on our PCs and network. Are there any files that are used WHEN COMPILING the movie (Ctrl+Enter) that might get flagged as not allowed for execution if network/file permissions were strict? Please help. I'm very frustrated, and this is making my work difficult. As far as changes go, I simply added some stage objects and some interaction scripting. But now ALL my movies (even old ones that I've tested) have the same problem when compiled/tested into the SWF.

Problem On Actionscripts
Hi there, i have follow the tutorial on transition
http://www.kirupa.com/developer/mx/p...transition.htm

n have create the same for my flash file.....but the fact that it does work with my own one...can someone help me .......

Great Thx for looking

Query With Actionscripts - Pls Help
I am a complete newbie n was checkin out a number of sites n came across this kool effect. Can someone help me out with the actionscript used...the site is http://www.idiommedia.nl/ex%20site/html.htm.
I would also like to know how to add the time n date as a mouse trail.
Thanx in advance...

Match 2 Different ActionScripts
Hi,

Can somebowy help me with the following:
On frame 1, I have 2 different MC's ("LetterY" & "Symbol5").

They get both a Random color by Actionscript by uploading or refreshing the page. But they both have a different choosen color. Example 'Blue and green'.

What I want to try/do is to get "LetterY & Symbol5" the same Randomised color by "ONE" Actionscript on frame 1.
So I get the SAME Colordefinition (Randomised) for "LetterY" & "Symbol5" and by example they are both Orange.

Can somebody help me?

TX !


See below the AC at the moment.

---

myColor = Math.round( Math.random()*0xFFFFFF );
myColoredObject = new Color (_root.LetterY);
myColoredObject.setRGB(myColor);

myColor = Math.round( Math.random()*0xFFFFFF );
myColoredObject = new Color (_root.Symbol5);
myColoredObject.setRGB(myColor);

Help With Simple Actionscripts...
I'm currently teaching myself how to do simple stuff with actionscript. I've gotten the basic concept but I keep having problems and my endless experimentation just isn't working. For right now, all I'm trying to teach myself is how to move, resize, fade etc. movies. Nothing too complicated, but whenever I try to get it to do something after one action has occurred, it all goes downhill from there.

For example, I have one movie that I want to fade in along with another movie; once they have faded in, I want them to fade back out again, and then I want to resize movie #1. I can get them to fade in, but that's about it. How can I get it to do each thing consecutively? I've tried every combination that my brain can come up up with, but nothing works; all it'll do is fade them in and anything else I want it to do afterwards just doesn't work.

I've had this problem before — having more than one action try to execute in the proper order — but I never did find a solution to it. The only real thing I can find to do is split the code up frame by frame, so what I want it to first do happens on the first frame, then when it's done it goes to the second frame and that code executes, then the third etc. I figure there has to be an easier way than that though.

I'd greatly appreciate any pointers on this topic or advice, lines of codes, explanations, examples etc. Anything!!

Problem On Actionscripts
Hi there, i have follow the tutorial on transition
http://www.kirupa.com/developer/mx/p...transition.htm

n have create the same for my flash file.....but the fact that it does work with my own one...can someone help me .......

Great Thx for looking

Query With Actionscripts - Pls Help
I am a complete newbie n was checkin out a number of sites n came across this kool effect. Can someone help me out with the actionscript used...the site is http://www.idiommedia.nl/ex%20site/html.htm.
I would also like to know how to add the time n date as a mouse trail.
Thanx in advance...

Match 2 Different ActionScripts
Hi,

Can somebowy help me with the following:
On frame 1, I have 2 different MC's ("LetterY" & "Symbol5").

They get both a Random color by Actionscript by uploading or refreshing the page. But they both have a different choosen color. Example 'Blue and green'.

What I want to try/do is to get "LetterY & Symbol5" the same Randomised color by "ONE" Actionscript on frame 1.
So I get the SAME Colordefinition (Randomised) for "LetterY" & "Symbol5" and by example they are both Orange.

Can somebody help me?

TX !


See below the AC at the moment.

---

myColor = Math.round( Math.random()*0xFFFFFF );
myColoredObject = new Color (_root.LetterY);
myColoredObject.setRGB(myColor);

myColor = Math.round( Math.random()*0xFFFFFF );
myColoredObject = new Color (_root.Symbol5);
myColoredObject.setRGB(myColor);

Actionscripts In 2Advanced
Hi,
I´m just discovering the power of actionscripting and I would like to know for what are used actionscripts in 2Advanced website (if there is some AS of course).

And second question:
How to make so nice text areas like on 2Advanced. When I use the Helvetica Neue font it is antialiased and looks ugly.

THANK TO ALL VERY MUCH.

Question About 2 Actionscripts
Hi, this i s a great forum and site :)
I have one question about carousel action script and http://satelitko.data.bg/levTextSpace.zip this script .

Can i compile them in 1 fla and if i can what is the way.

Thanks.


ps:im a noob, please dont laught at me :)

Differences Between The 3 Actionscripts
Well I'm kinda a new person to actionscript. Do I need to learn actionscript 1 and 2? Should I just learn the 3rd one? What are the differences between the 3? Which one do you recommend on me learning. Do you have a recommendation to a site of a tutorial?

Stealing Code/actionscripts...OK? NOT OK?
This guy I know uses .fla he finds on the flashkit, et al., modifies it and then claims it as his own - I use .fla to STUDY and learn the scripting/strucure of that particular site, which is what I believe these open resources are intended for - MY QUESTION IS: is it okay(ethically) to copy flash scripting and use it to make money with it? One argument would be YES, copy it just like you would copy some complicated Javascript and then concentrate on designing a tight site - this seems to be a more round-about version of smartclips, no? The other side would be NO, it is not okay, since often actionscripting is inseperable from graphics/logos/etc. so the code becomes intellectual property, like a commercial photograph or a logo.
What do you think? Love, J_red

A Good ActionScripts Book?
Hi,
any one knows a gooooood actionscript book for flash 5???
What is the best book ?
i'm just starting with flash but i got programing background...
anyways, i'm looking for some intresting script book that touch asp with flash
and stuffs like that...
help! anyone???

Thanks

Getting Out Of Expert Mode In Actionscripts - Help
Please help me. I need to find how to get out of the expert mode in actionscript editor.

Generic Actionscripts Problem
using generic actionscripts, i'd like to control a movie to play in certain x, y positions for specific buttons.
however i cant get it to work.


the following situation:

movie(instance)name is masknav.

first frame of the layer "scripts", movieclip with instance name scripts >in first frame>movie frame actions:

function rolloverScript(x,y) {
_root.masknav._x=x;
_root.masknav._y=y;
_root.masknav.gotoAndPlay ("start");
};

and call the above said script in the button "A" in its Object Actions with:

on (rollOver) {
_root.rolloverScript(250,0);
};

------------
what am i doing wrong? :
i tried several things but it doesnt work
(and yes i have the movie masknav on top layer so it is visible.)

if someone would need to see *.fla file, np.

Help Me Controling Movies Through Actionscripts
Hi Friends,

I am trying to control another movie from one movie in the page. I have one movie in the top header (top row of the page) and another movie in the left side (first TD of the second row). I am using buttons in the top movie and want to jump on the different frames of the left movie on click event.

Please help me.

Thanks,

Rahul

ActionScripts Question From A Beginner
I saw the tutorial on this site regarding Animations and Loops. I'm new to flash so I'm trying to get a feel for how to develop a flash page from scratch. I can get the animation working according to this tutorial.

I'd like to reduce the animations to just two or three frames in the main scene layer of the flash page (I don't know what the proper terminology is for saying this)


I was reading a tutorial but forgot to bookmark it on how to reduce the frames in the movie by using layers (my history is set for one day) . To make it easy, I created a symbol of a circle moving across the screen and another symbol of a box moving across the sreen. I would like to have the circle moving across the screen to appear after a box moves across the screen 1 time (the box should no longer be present when the circle appears).

When I put just the first symbol(the box) down in the first frame I get it repeatedly moving across the screen - even if I set the symbol loop for 1. When I put the second symbol in on the second frame I get flashing between
the two symbols but no movement. Can someone please let me know where I am going wrong.

Thanks

Copyright © 2005-08 www.BigResource.com, All rights reserved