A button using co-ordinates?

Hi,

I’m stuck:q:

Imagine a menu system where a button is draggable, as you drag it around it doesn’t do anything until it it reaches a specific co-ordinate. Then when it crosses it, it loads an external movie.

O.k

There are rules though, the button needs to be able to have more than one set of co-ordinates, which are not single points but stretch across the movie (horizontal and vertical) , this is so it can load more than one external movie. Its basically a navigation.

here’s a pic to help you to visualise : -

idea

Any ideas on how I can achieve this?

thanks pixelmisfit

Can no one help?

try using drag & hittest actionscripts

I couldnt view the link you posted, but i think i get your idea.
I’ll try to post something later.

I put this up real quickly cause im in a hurry, if you need any explanation, please ask me later.
Instead of a button, you have to use a movieclip.

//i used range because its almost impossible to match exactly both x and y coordinates.
//check my picture to understand how it works.
range = 20;
speed = 3;
points = [[50, 50], [450, 150], [300, 250]];
//points to snap [x,y]
movies = ["portfolio", "photos", "profile"];
//movies to load; if you snap into [50,50] point, movie "portfolio" will be loaded
MovieClip.prototype.snapToPoint = function(x, y) {
	this.onPress = function() {
		this.startDrag(false);
	};
	this.onRelease = function() {
		for (var i in points) {
			this.dx = Math.abs(this._x-points*[0]);
			this.dy = Math.abs(this._y-points*[1]);
			if (this.dx<=range && this.dy<=range) {
				this.snap(i);
			}
		}
		this.stopDrag();
	};
	this.onReleaseOutside = this.onRelease;
	this.snap = function(j) {
		this.onEnterFrame = function() {
			this.tx = Math.round((points[j][0]-this._x)/speed);
			this.ty = Math.round((points[j][1]-this._y)/speed);
			this._x += this.tx;
			this._y += this.ty;
			if (this.tx == 0 && this.ty == 0) {
				delete this.onEnterFrame;
				//load the corresponding movie into a movieclip with an instance name content_mc
				loadMovie(movies[j]+".swf", content_mc);
			}
		};
	};
};
my_clip.snapToPoint();//clip to be dragged

Thanks for the reply

I think I’m definately going to ask for explanations!!

I have lots of questions…I also may want to send you the .fla of the draggable button I have, as you seem to know a lot more about code than I do!!!

Thanks for the code and the explanation!!

pixelmisfit

welcome :slight_smile:
If you want i cant make a simple fla for you.
And there was a mistake in the picture, here’s the correct one.

Claudio,

If you could make me a .fla that would be wonderful!! Then at least I can pull it apart and see what its all about!

As I said you seem a lot more competent than me in coding!

Thanks for all your help so far

pixelmisfit (paul)

Here it is.

hey that little fla file there is pretty slik i like it! nice!

Thanks :slight_smile: