How Can I Make This?
http://www.digitalmindframe.net/audi...nseenjuke.html
I really need to know.
FlashKit > Flash Help > Flash MX
Posted on: 02-27-2004, 06:21 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Trying To Make A Formula To Make My Stickman's Head Adjust To The Direction He Moves
Ok, im making a little "walk around" movie clip...
you click he moves...
heres my .fla for the 2nd (main) question
My .Fla
I have 2 questions
the simple one first
Question 1 how do I flip an image, in the Graphic interface of flash pro 8, you can go to modify - transform, and flip it CCW + 90, CW + 90, or flip it horizontally or vertically, how can I do this in actionscript? my animation's name is "man"
Main Question
How do I write a formula to adjust my guys head so when he goes "left" or right, his head is thinner, (like your looking on him sideways)
and when he goes up/down, to be bigger so basically
when he's going up and down his head width is about 20-30, and when he's going left/right, its about 5-10
I've been trying for about 1 and a half hours, with no success
all my code:
Code:
var TargetX:Number = 200;
var TargetY:Number = 150;
var man_height:Number = man._height;
var man_width:Number = man._width;
var head_width:Number = man.head._width;
var head_height:Number = man.head._height;
var head_x:Number = man.head._x;
function clicked_spot()
{
TargetX = _xmouse-man_width;
TargetY = _ymouse-man_height;
}
function move_man()
{
man.head._width = 10;
//man.head._x = 20
if (TargetX > man._x-20)
{
man._x += 1;
}
else if(TargetX < man._x-20)
{
man._x -= 1;
}
if (TargetY > man._y-5)
{
man._y += 1;
}
else if(TargetY < man._y-5)
{
man._y -= 1;
}
}
setInterval(move_man, 10);
ground.onRelease = clicked_spot;
thanks in advance
How Can I Make A Startdrag And Stopdrag Actioned Mc Make A Sound?
HI there,
I need help on this one. I have used the start and stop drag AC for pulling a sword in and out of its sheath(holster). Thats all it has to do. One problem is that no matter how hard i try i can get the sounds to match up with it. I wanted for the sounds to play everytime the user puts the sword in and everytime the user takes the sword out. how can I do this?
Thanks alot
~Joe
How To Make Flash Make Html Page Return To Top?
Hey guys,
I created a website which contains a verticaly large flash movie on it which displays information. In order to read the bottom half of info, the user must scroll down the page. I was wondering if anyone knows the code to make a "return to top" button in flash which would send the html page back to the top without reloading the actual page itself of corse. I just cant figure out how to do it. Thans!
How To Make A Movie Clip Button I.e. Make It Click-able
i followed the tutorial for making animated buttons by using movie clips instead of button symbols. now i don't know how to make them click-able. this is probably pretty basic, but i'm new to flash and i'm getting pretty frustrated trying figure things out by myself (no programming experience here, although i did buy the flash bible). i'm using flash mx 2004.
any pointers on how to do this would awesome. thanx a ton.
--V
I Wanna Make Intro N Dnt Kno How Ta Make In Flash
Hello every 1
i wish sum1 can help mi !!!
i m makin my site n i wanna make a intro n i got Macromedia Flash PRo 8 but i rely dont much abt it....
intro iz lyk whn sum 1 open de page c dat animation .....bla bla ...... can sum1 plz help
n ask mi if they dnt get mi
my contact mail: nasty_thinker@hotmail.com
Make MC Visible, Make MC Invisible
Looking for a piece of script to (on rollover of other MC) make a MC placed on the stage visible, then to make it invisible.
I think there is a simple piece of code to target the MC and tell it visible == true or false???
Any Help greatly appreciated,
Thank you kindly,
cpalino
Make One Box Move On Roll Over, Make Other Box Move On Click
Okay here's the story: I have one box that moves the way I want it to on roll over, moves over my nav buttons and stays over them after you click one of them. The clicked button becomes where the box snaps back to. I have another box that I want to stay where it is until you click on a button. If you click on a button the box will move under the button that I have clicked on. Every attempt so far to get the second box to do that usually negates the other box's ability to do anything. Please, any help or suggestions?
Make One Box Move On Roll Over, Make Other Box Move On Click
Okay here's the story: I have one box that moves the way I want it to on roll over, moves over my nav buttons and stays over them after you click one of them. The clicked button becomes where the box snaps back to. I have another box that I want to stay where it is until you click on a button. If you click on a button the box will move under the button that I have clicked on. Every attempt so far to get the second box to do that usually negates the other box's ability to do anything. Please, any help or suggestions?
Need To Make A "Make Us Your Homepage" Button
Hello,
I have a site I am building and have a request for a "Make Us Your Homepage" button... I haven't ever come across this before and am wondering if there is a function or line of code out there for this....
thanks!
Make A Button Within A Movie Clip Make The Main Movie Clip Play?
hi, is it possible to make a button within a movie clip make the main movie clip play?
at the moment i have it set to play(); on release put this plays the movie clip rather than the main movie, is there any way to make it play the acutal main movie insteat?
Can't Make A Right-click Menu? Make A Middle-click Menu
Since so many people are always wanting to make a context menu that appears at the mouse position, and because it's such a pain to get rid of the flash right-click menu (and the methods i've seen are not cross browser) I decided to go about finding a way to make a middle-click menu. Most mice these days have a mousewheel and the vast majority of those mousewheels also act as a 3rd button if you push down on them. So here is the result of my labor. A way to detect the middle mouse up and down actions in Flash.
Code:
Mouse.toggle = false;
setInterval(TestMidMouse, 40);
function TestMidMouse() {
if (asNative(800, 2)(4) == true && Mouse.toggle == false) {
Mouse.broadcastMessage("onMidMouseDown");
Mouse.toggle = true;
} else if (asNative(800, 2)(4) == false && Mouse.toggle == true) {
Mouse.toggle = false;
Mouse.broadcastMessage("onMidMouseUp");
}
}
myListener = new Object();
myListener.onMidMouseDown = function() {
trace("middle button down");
};
myListener.onMidMouseUp = function() {
trace("middle button up");
};
Mouse.addListener(myListener);
In case you're wondering, asNative is an undocumented feature of flash. It refers to the native function table that resides in the flash player. asNative(800, 2)(4) returns true or false depending on weather the middle mouse is down or up respectively. FYI, replacing the 4 with other numbers activates for other buttons (including keyboard keys). 1 is left click, 2 is right click, 3 doesn't seam to do anything, 4 is the middle mouse button, 5 is a 4th mouse button if mouse has one. Here is the most extensive reference for the asNative function that I have found. I suppose you could do the same thing with Key.isDown(), but messing with undocumented stuff is so much cooler .
If anybody does know a way to get rid of flashes right-click menu, reliably and across multiple browsers please post it here because this method could easily be converted into right-click detection.
How To Make Something Like This?
http://www.pensioengatpeiler.nl/media/flash.swf
I have to make a kind of thing for a company.
Does anyone have a clue to make something like this?
Does anyone have a tutorial, FLA, or example?
I`m not a very good actionscripter.......
Thanks!
How Can I Make Something Like This...
Hi
I'm going to make an swf with 2 buttons for viewers to choose from in scene 1 and then say, if button 1 is clicked, scene 2 will start and then scene 3; if button 2 is clicked, scene 2 & scene 4 will start in sequence.
In this case, the buttons determine whether scene 3 or 4 would come out, they have little to do with scene 2 because scene 2 must start after one of the buttons clicked.
My question is, what script should I use to make flash know whether scene 3 or 4 should start after scene 2 finish playing?
Thanks
Make Mc Go To Right
i have this code that move a clip from rigt to left
onClipEvent (enterFrame) {
nextx = _x-(nextx/25);
if (nextx<0) {
nextx = 600;
}
_x = nextx;
}
¨
how do "flip" the code?? so its goes from left to right?
How To Make
hello,
scoured the board but couldn't find exactly my poblem...
I want to make a navigation system that loads movies for the different sections, as well as nav button/movieclips that display their "down" state when the section they
represent is active. I've gotten a portion working with the following code:
function sectLoad (i) {
targetClip = "nav"+i;
loadClip = "sec"+i;
sectionNow = "sect"+i;
set (sectionNow, true);
loadMovie (sections, _root.loadClip);
_root.targetClip.gotoAndStop(4);
//
trace ("targetClip = "+targetClip);
trace ("loadClip = "+loadClip);
trace ("sectionNow = "+sectionNow);
trace ("sect0 = "+sect0);
trace ("sect1 = "+sect1);
trace ("sect2 = "+sect2);
trace ("sect3 = "+sect3);
trace ("sect4 = "+sect4);
trace ("sect5 = "+sect5);
}
// set the section # and nav state
message._visible = false;
var sect0 = false;
var sect1 = false;
var sect2 = false;
var sect3 = false;
var sect4 = false;
var sect5 = false;
var sections = new Array("overview.swf", "composer.swf", "bandleader.swf", "pianist.swf", "jukebox.swf");
var i = 0;
sectLoad(i);
stop ();
I am loading swfs into separate mc's but would like only the active section visible...wondering if anyone else has tried this? i can mail the files if needed.
thanks,
charlie
How Do You Make/use A MC?
Hey, thanks for your help,
I nedd help on how to make a mc, then use it in a flash site?
thanks very much
How Do You Make A Swf Into A MC?
OK. i'm through trying to figure out how to get my loaded swf to work. I just want to make the swf into a movie clip. whats the easiest way to do this?
thanks.
_
How Can I Make
How can I make a clock that counts down from a set time?
Help How Can You Make?
Recently I saw in some pages new projects with Flash that you can see for a moment and then disappear and it look at the middle of the page over the html.
How can you make a flash in a html page than after a moment disappear?
Some body know???
Thank you!!!!
cesarpogarca@hotmail.com
Could Someone Plz Tell Me How To Make This?
plz check the link below
http://www.nocopy.com/
when u move ur mouse over those shapes,they will move away from ur mouse .
could someone plz tell me how to make this?
thx a lot !
How Can I Make This?
I am new to Flash,but I really want to make something just like this:
http://216.154.235.78/bottom_inc.php?page=main.php&x=1
(The top part that has the pictures slide whenever you
have your mouse over the menu.)
I've been searching for tutorials for this but I cannot seem to find one so I finally decided to ask. Can anyone refer me to a page that explains how to create this effect or give me some advice on this?
Thank you very much for your help!
How Can I Make It Do This?
Making a site, it's html but i would like to use flash for the navigation.. go here to see the nav >> http://www.theory1.orcon.net.nz/test/ it's just a pic at the moment but i'll make all into flash (flash file embedded in html page) later anyway basically what i want to do is this:
i want to get that barcode lot's of little lines looking thing at the top of the navigation to move - non stop sort of like its going across and then when the buttons are rolled over (chairs with no.) the country name will display above the lines...
any suggestions please?
Make A BOX
Can somebody help me out? I am trying to make a box. What I would like to do is have a flat object and have the sides & front & back fold up then the top fold over. If you know of any fla's or tut's please let me know.
Thanks in advance for any help.
Derek
Did Anybody Try To Make
OK, let me clarify that. We all know that it's possible to re-skin a component by changing the assets for buttons, sliders etc. That's NOT what I'm talking about.
I'm thinking of adding fundamentally new functionality to an existing component.
I'm interested in taking a calendar component and be able to hilight a set of days in a specific color (vacation days), or put an icon next to the day number or whatever. You could use this to build a calendar that hilights all days where you have a reoccurring meeting or stuff like that.
I think this is not possible with the current calendar component.
I've tried to poke around in the code a bit, but I quickly gave up. This is pretty complex action script in there...
Soooo, is there some way to - dunno - subclass a component and then make such changes? Or is there a calendar out there that does what I need?
Thanks,
Juggle5
How To Make A
Hello all. I was wondering what the best way to make a "flash" effect is. I mean the kind like a flash from a camera, one that turns the whole screen white for a split second. I know how to do the bightness thing for the whole page, but I want the effect to look like it came from the center of the screen. Thanks for any help you can offer.
How Do I Make A Sig
cant make sig plz help me
made a picture of what sig look like dont know
how to put online how do i do it plz help me
j
Make A
Hello, I have a button which triggers an MC to go play once mouseovered. How can I make the MC advance to the next frame and play once the button on the root timeline is 'mouseouted'.
However, its a little more complex than that. In order for it to work I don't want it to gotoAndPlay a frame everytime the mouse scrolls over and out. Then it cuts to the end of the animation. Is there a way with action script to make it recognise a mouseout from the root timeline once on a certain frame of the MC.
eg, (once accelerated to fr 20 - code on frame 20) when
_root.button.mouseout
tell target mc gotoandplay
complicated. Sorry I can't explain it better.
[Edited by Mitch Warren on 08-28-2002 at 08:26 AM]
How Do I Make A Sig
dont know how to make sig any one
heeeeeeelp me do clue at all need
help bad any one please help me thanks
this is how i tryed it whats wrong
How Can I Make This?
using for statement,
for (var j = 1; j<=2; j++) {
some statements...
}
I want outputs shold look like...
aaa1 = _root.first_1;
bbb1 = _root.second_1;
ccc1 = _root.third_1;
ddd1 = _root.foruth_1;
aaa2 = _root.first_2;
bbb2 = _root.second_2;
ccc2 = _root.third_2;
ddd2 = _root.foruth_2;
how can I achieve this?
Thanks,
Yung
HELP How To Make.......
I'm Stuck!!
I'm trying to have a MAIN movie load other movies (movie1, movie2,...) externally, and when they are done playing, they signal the MAIN movie to go back to a frame and reload again.
I've tried to put this in the very last frame of the movies:
Code:
stop();
_root.done = true;
then I put this in the MAIN movie:
frame label:loadHere(I KNOW this part works.)
Code:
// --- GET RANDOM MOVIE CODE
num = Math.ceil(random(3)); //- random # out of 3, rounded down.
ad = "movie"+num+".swf"; //- This will get movie#.swf; (# is a num).
loadMovie(ad, "holderMC"); //- load the movie into my empty holderMC.
// ------------------------------
Then, a few frames later, I check for the signal from the external movie:
frame label:check
Code:
stop();
if (_root.done == "true") {
gotoAndPlay("Unload");
}
this should go to the frame called "Unload". BUT IT DOESN'T!
PLEASE HELP!!
How Do You Make This?
Anyone could you please tell me how you make this flash movie, its basically on this website www.dre2001.com on the videos section.
I am interested in the colour( the black and white thing, tell me how you make such colour.
Cheers
Make It Go Away
I've been trying for 3 days now to make a MC disappear but with no luck.
see, i have a MC that i spawn multiple instances of and i want to disappear when it hits a different MC.
it sounds simple, but i've tried "this.removeMovieCLip; , removeMovieClip, this.gotoAndPlay(2) //where frame 2 is nothing but an empty keyframe, gotoAndPlay(2)... nothing seems to work... or it may for the original clip, but not for those that have been duplicated... is there a nice simple way to do a hitTest and remove MC that covers both the original and the spawned versions?
thanks
How Do You Make Something Like This
how do you make something like this, the pictures coming really cool how do you that, or wath for name is that effekt with the pictures
http://jim.be
THANK YOU
Hot To Make...
Anybody know how to make flash movies inte screenservers??
if u do then plz tell me...
Make Fla Out From Swf
recently i heart that it should be possible to make a fla out from an swf and i am kinda shocked right now.
is this even true?
if so, is this even legal?
how can this be done?
and is there a way to protect my swfs, except that "protect from import" or that robo protect software i see on the ads around here?
thanks
I Need To Make Something...
I need to make something for my friend's busness. They need a table like thing that is 10 rows long, 1 table for current items and another for sold, maybe a 3rd for misc.
I was gonna use 3 tabs to open up each section. What I need help with is the following:
1. When someone clicks on a tab and it takes them to the frame with all the data of the tab, how can I make it so when you click the word thats written on the tab it'll go into an imput box, then when clicked away looks like normal text so someone can change it anytime.
2. I need a button to add an entire row with 10 columns to the bottom of the existing ones. Each column will need to be editable so they can add anything to it.
3. I need a way to save everything that has changed. Like the tab's labels and what is in each row/columns, including any new columns someone makes. I'm assuming it would have to save it in the var=text type format cause when it loads up, it'll use a text file to get all the information from.
4.Almost forgot, I need to make every row (all 10 columns of 1 row) to be able to move form 1 tab to the other. By a button maybe, you click it and it'll copy everything from that row, delete it and move it to another tab's next row.
Does anyone mind helping me out with this? I'm not very good with action scripting. Also, I will be saving this out as a projector(.exe) so is there anything special I will need to consider?
Sorry if it sounds like I am basicly having you guys make the program, I'm not selling it or anything, its just a favor for a good friend. If no one helps I'll understand, since its alot of **** I'm asking and I will continue to attempt on my own.
Make EXE
How can i turn my flash moive into an exe file, i have tried the projector thing but it justs opens the flash player not movie, please help as i need to put it onto a CD to autorun the flash player files are invalid and do not work?
Please HELP.
0rlando.........
How Can I Make This?
hey,
do you know this site? http://www.ferryhalim.com/orisinal/flowers/index.htm
i want to make something like this. But i have no idea how. Plz gelp me!
THX
Sven
Please Help Me To Make This
please help me to make this
what i want is to:
1- send an fscommand from flash that contains e.g."1.txt".
2- send another fscommand that contains e.g."hello world".
3- then, i want VB to create a text file called "1.txt" and
contains "hello world".
briefly, i want to create a text file using VB, while the text file's
name and content are sent by flash..
N.B. the text file's name is going to change each time.
my email
micheal_nabil@hotmail.com
please send me the file which does so..
could any1 help plzzz!!
Can You Make 17,96 Out Of 17.96?
Hi,
In the order form I'm designing, I make calculations that are displayed in textfields as "17.96" and "18".
The thing is, that those values are meant to be financial... what code does it take to convert "17.96" into "17,96" and how do I add ",00" in case the number is a round number like "18"?
As an example, one of the calculations code is the following:
var myStringYear = String(perMonth.text*12);
perYear.text = myStringYear;
Thanx for your help!!
How Do I Make A....
How would I make a counter inside flash? I know I will need coding but I have no idea what the coding is can someone give me an example/tutorial or explain in or itleast give me the coding
|