I am just not getting it

you mean URL like this

then b, c, d ----- I only have through m currently - working on rest now.

If you would like me post a different way, pls let me know, and thanks for the help!!!

Thats fine thanks, gimmie bout 1/2 an hour and i’ll post back.

V.

P.S Your welcome.

If you want to see it working. Only done the letters A-J. One bad thing about using external SWF’s is that each letter will have to load, and some will load before others, so it looks kinda weird, unless you think the random-ness is ok.

I’ve attached the changed fla that reflects the changes to use external swf’s.

Regards,
Viru.

P.S I uploaded the letters to my server. Just put this fla(swf) in the same directory as the letters and it will work fine.

Forgot the fla.

V.

2 COOL!

The randomness of the loading is fine-- I think it’s absolutely cool.

It works great from your link. When I downloaded the fla and posted the .swf to the same folder with my letters— I get nothing. I changed the path to the letter .swf’s but nothing.

Now what have I done?

Hi,

The fla you were using was the first one i had made, it works with movieclips but ont with external swf’s.

I posted a second fla, with the same name, that works with external swf’s.

BUT

I tinkered with it a bit more and made it more efficient, the swf size is only 5k now.

Use the fla below, and upload the swf for it in your letters directory. It should work.

Regards,
Viru.

Thanks - that is just wicked cool.

:thumb: I can’t thank you both enough for all the help.

This looks/works really good.

*Originally posted by Mikol27 *
**You are one of the kindest people. Thank you so much for taking your time to review and fix the code.

You have totally made my day!!!:bounce: **

I bet that makes you feel all warm and fuzzy inside hey Iac?

Just out of interest Mikol27, who’s method are you using and why? Why not the other method?

Just interested in your opinion.

Regards,
Viru.

Now you have to understand I’m a newbie to both Actionscripting and Flash MX so I know some things and others are over my head, so I may not have applied the previous code to it’s full advantage.

Your code is streamlined to the hilt. With the other code and my limited knowledge the only way I could get it to work was by having multiple input textboxes and setting up different varibles for each. I know that probably not the intent of how the code was written, but there again, for my mind to make it work, that was the dance around I had to do.

With keeping it all separate, it was getting sticky.

Hope that makes sense.

OK- I finally got the pieces together for this.

Would you know of anyway to control the clip size of the hand shapes that load???

Thanks for the help!

-M

it would probably help if I gave the url so you could see what I am talking about - huh?

:sigh:

How are you loading the hand shapes? Need to know your method first.

Regards,
Viru.

Through a great deal of help, I got it working this way. Each letter is a .swf file of its own (“a.swf”, “b.swf”).

function showText() {
strLen = inputText.length;
getLetter;
for (i=0; i<strLen; i++) {
getLetter = inputText.charAt(i);
getLetter = getLetter.toLowerCase();
clip = attachMovie(“hold”, “hold”+i, 10+i);
clip._x = 15+(100*i);
clip._y = 200;
clip.loadMovie(getLetter+".swf");
trace(clip);
}
}

-M

Short lived fame. Thats the code i done for you! :sigh:

Anyway, look at your for loop you pasted, you’ve erased part of it.
You can remove the trace(clip) that was for my purpose when i made it. Its not integral to the code.
Look at the bold text to see what you need to add.

function showText() {
strLen = inputText.length;
getLetter;
for(i=0; i<strLen; i++) {
getLetter = inputText.charAt(i);
getLetter = getLetter.toLowerCase();

	clip = attachMovie("hold", "hold"+i,10+i);
	clip._x = 35+(30*i);
	clip._y = 200;
                        **clip._width = 40; // Change integer here to suit your needs.
                            clip._height = 60; // Change integer here to suit your needs.**
	clip.loadMovie(getLetter+".swf");
}
oldText = inputText;

}

Regards,
Viru.

Thanks. You have an amazing brain I thought it was code you did helping me out. Which I still can’t thank you enough for!

—speaking of which- In our “credits” section of this project, I would like to give credit to those who have helped on this project, would you be oppossed to us adding your name in the “special thanks” section or listed in the “team credits”? (it will be Web-wide)

Nope not at all, i’ll be honoured :slight_smile: thanks for that.

Did the resizing work?

Viru.

No, actually it causes “nothing” to happen (i tried various sizes), but once I remove the two lines- it’s back working

i understand the intent and it looks logical it should work - but it doesn’t seem to.

oh yeah, I’ll need either your name (full) or let me know how you prefer to be addressed in the credits.

My project is due end of Sept- Oct 1st will be the debut of months of work. I’ll be sure you get the link to it.

I’ve found a solution of what to do, its weird but it works.

In the library double click the ‘hold’ movie clip to open it up. Then draw a small square and align its position so that its in the centre, you can do this by highlighting the square and pressing the following to center is horizontally ‘Ctrl+Alt+5’. And then press ‘Ctrl+Alt+2’ to center it vertically. Now you should be able to resize the hand graphics.

My name is Viru Doshi. I’ve learnt how to sign spell my name from your site :), thanks.

Regards,
Viru.