Home  | Login  | Register  | Help  | Play 

RE: Flash Q&A Thread 4

 
Logged in as: Guest
  Printable Version
All Forums >> [Gaming Community] >> [Legends and Lore] >> Artists of Legend >> Art Academy >> RE: Flash Q&A Thread 4
Page 19 of 30«<1718192021>»
Forum Login
Message << Older Topic   Newer Topic >>
12/4/2007 23:55:43   
ll_BLACKPANTHER_ll
Member
 

Thanks.

Got another question: How do I make a button so that when I press it a character is animated. Just like the "attack" buttons on all AQ games. When you press it your character attacks..

Please and thank you!
AQ DF  Post #: 451
12/5/2007 12:32:02   
Darklord517
Member

iHeavily doubt this will work but try:

on(release){
_root.gotoAndPlay() //Enter the frames in between the brackets i guess.
}
AQ DF  Post #: 452
12/5/2007 22:17:50   
flsg
Member

Comrad D: XD. You don't even know where is his player mc, so how is playing the main movie going to work?
but, yeah, change the _root in the code to your player mc's path. I'm too tired to tell you a better way of doing this, no one listens anyway lol

_____________________________

My flash gallery
my game thread

flsg, proud old member of AQ(still playing :O)
AQ  Post #: 453
12/5/2007 22:35:17   
ll_BLACKPANTHER_ll
Member
 

I'm really, really new to actionscripting..So i don't know what either of you is talking about. Thanks tho.
AQ DF  Post #: 454
12/6/2007 1:42:29   
Darklord517
Member

Lol i knew there was something to do with the MC in the code. Meh.
AQ DF  Post #: 455
12/7/2007 22:23:24   
ll_BLACKPANTHER_ll
Member
 

Anyone else have a suggestion?

http://img466.imageshack.us/img466/1250/lasermqswordoa5.swf
AQ DF  Post #: 456
12/7/2007 23:18:33   
Burning Raven
Member
 

nice looking weapon! :P
hmmm are you trying to have it so the laisah come out when you press the button?
if so just select the frame with no laisah and open the actions window and insert the script

stop();

then select the last frame of the animation and do the same (to make the sword stay there :P)
now select the button and open up the actions window and type

on(releace){
gotoAndPlay(*whatever frame number the animation starts on)
};

thats the simplest method I dont use it much anymore but its easy :P
~Raven
AQ  Post #: 457
12/8/2007 6:04:33   
ll_BLACKPANTHER_ll
Member
 

Thanks, I'll try it :D
AQ DF  Post #: 458
12/8/2007 6:16:35   
Dragonlord Razielle
Member

Hi how do i use a Flash animation as a sig? i have tried and it never works, the animation is within the 500/100 limit

it is really confusing me

Razielle
Post #: 459
12/8/2007 8:15:04   
Darklord517
Member

I suggest converting it into a Gif.

Then download:

http://www.whitsoftdev.com/unfreez/

This is a helpful tool that takes all of the Gif. Files that you insert into it and makes them animated. Then all you do is upload it to imageshack.

Thats what i used to do.
AQ DF  Post #: 460
12/8/2007 8:58:17   
SirSchmoopy
Banned Multi


cann any1 help me understand how they made the movement in this game?
http://www.addictinggames.com/rockbandrampage.html


_____________________________

Sig deleted.
Post sig only once per page.
Post #: 461
12/8/2007 9:59:05   
flsg
Member

SirSchmoopy: what movement?
AQ  Post #: 462
12/8/2007 15:25:09   
SirSchmoopy
Banned Multi



quote:

ORIGINAL: flsg

SirSchmoopy: what movement?

the 3-d ish movement, were the background moves too

_____________________________

Sig deleted.
Post sig only once per page.
Post #: 463
12/8/2007 20:34:23   
biG frend
Member

Alright, I'm working on a battle sys, Got most of it working properly but the MP, I can't find a way so that if you don't have any MP you can't do anything. Basically when you don't have the Required MP to cast a Certain spell the Button Disappears.

if (_root.MP <= -0) {
{_root.Thunder._visible='false';}
}

I Tried using that but It won't seem to work, Someone help please!
AQ DF MQ  Post #: 464
12/9/2007 8:59:01   
SirSchmoopy
Banned Multi



quote:

ORIGINAL: biG frend

Alright, I'm working on a battle sys, Got most of it working properly but the MP, I can't find a way so that if you don't have any MP you can't do anything. Basically when you don't have the Required MP to cast a Certain spell the Button Disappears.

if (_root.MP <= -0) {
{_root.Thunder._visible='false';}
}

I Tried using that but It won't seem to work, Someone help please!

I might be able to help, try this, i dont know if itll work, but maybe:
if (_root.MP <= -0) {
{_root.Thunder._alpha=0;}
}

_____________________________

Sig deleted.
Post sig only once per page.
Post #: 465
12/9/2007 12:44:15   
flsg
Member

biG frend: you really need to check to documentations, even though no one here does
the _visible preperty takes a boolean value, not a string value
_root.Thunder._visible=false
second, there's no such thing as -0.

SirSchmoopy: sorry but that doesn't help at all lol. If you set the alpha to zero you simply don't see the button. but you can still click it
AQ  Post #: 466
12/9/2007 15:48:13   
biG frend
Member

Thanks Flsg.
New question.

How do i make it so when my Character goes to the edge of the Flash screen the map scrolls and you see more of the map?
my friend told me too google Vcam but it wasnt much help. Can anyone aid me?
AQ DF MQ  Post #: 467
12/10/2007 6:33:54   
Taerzik
Member

... I ... is ... tired ... of wrestling with my comp. Ok, it's Flash, SFS and my Apache server that I'm irritated with. Basically, I can get my Flash file to reach my server if I launch it manually but not if I route through my website. (I'm hosting both at the moment) Ah well, work on it tomorrow, right after the truck is fixed.
Post #: 468
12/10/2007 15:23:16   
TreadLight
Member
 

Is there a possible way to edit Bitmap pictures on flash? How?

I have no editting software besides flash (but I do have basic PC computer components [besides MSPaint]).

And please, please do not recommend just getting a new editting software, I cannot download more than this.
MQ AQW Epic  Post #: 469
12/10/2007 17:39:44   
SirSchmoopy
Banned Multi



quote:

ORIGINAL: flsg

biG frend: you really need to check to documentations, even though no one here does
the _visible preperty takes a boolean value, not a string value
_root.Thunder._visible=false
second, there's no such thing as -0.

SirSchmoopy: sorry but that doesn't help at all lol. If you set the alpha to zero you simply don't see the button. but you can still click it

i said it MIGHT work lol

_____________________________

Sig deleted.
Post sig only once per page.
Post #: 470
12/10/2007 18:46:21   
flsg
Member


quote:

ORIGINAL: TreadLight

Is there a possible way to edit Bitmap pictures on flash? How?

I have no editting software besides flash (but I do have basic PC computer components [besides MSPaint]).

And please, please do not recommend just getting a new editting software, I cannot download more than this.

select the image, then press ctrl+b
or you could use modify-bitmap to render(not sure about the name, but it should be something like that)
AQ  Post #: 471
12/10/2007 20:28:32   
TreadLight
Member
 

Okay, thank you for the help, flsg.
MQ AQW Epic  Post #: 472
12/12/2007 19:40:19   
ll_BLACKPANTHER_ll
Member
 

I can't seem to get the shape tween to work inside a symbol layer. Am I doing something wrong or is it just not possible?
AQ DF  Post #: 473
12/12/2007 20:35:22   
flsg
Member

ll_BLACKPANTHER_ll: can you be more specific please?
AQ  Post #: 474
12/12/2007 21:35:42   
ll_BLACKPANTHER_ll
Member
 

It's okay, i figured it out. But i got another question tho.

is it possible to apply shape tween on objects at all? (Graphic, Movie Clip, Buttons)
AQ DF  Post #: 475
Page:   <<   < prev  17 18 [19] 20 21   next >   >>
All Forums >> [Gaming Community] >> [Legends and Lore] >> Artists of Legend >> Art Academy >> RE: Flash Q&A Thread 4
Page 19 of 30«<1718192021>»
Jump to:






Icon Legend
New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts




Forum Content Copyright © 2018 Artix Entertainment, LLC.

"AdventureQuest", "DragonFable", "MechQuest", "EpicDuel", "BattleOn.com", "AdventureQuest Worlds", "Artix Entertainment"
and all game character names are either trademarks or registered trademarks of Artix Entertainment, LLC. All rights are reserved.
PRIVACY POLICY


Forum Software © ASPPlayground.NET Advanced Edition