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








Find The X Game - How Too?


Does anyone know how to do this OR know where an open FLA is?

http://us.mms.com/us/dark/

I've checked in the movies section but there is nothing like this there.

Thanks!
Cosmo




FlashKit > Flash Help > Flash Newbies
Posted on: 10-19-2006, 08:18 PM


View Complete Forum Thread with Replies

Sponsored Links:

Find The Error Game
i have to go to bed can anyone find the error(its in the moonlander mc). My friend is new at programming and i said i'd give him this to look at. ITs supposed to be the done version. He's making his own and then he's gonna compare code.

View Replies !    View Related
Find The Error Game
i have to go to bed can anyone find the error(its in the moonlander mc). My friend is new at programming and i said i'd give him this to look at. ITs supposed to be the done version. He's making his own and then he's gonna compare code.

View Replies !    View Related
Game (find Objects In Room)
to better explain what im tryin to do (mystery case files, titanic expedition, even certain parts in paparazzi) of course i dont wanna do sth as complicated as those... just 1 level. 1 room filled with objects and a list with the name of the objects on the right.
i already had a lil help with the actionscriptm, so now, when an object is clicked, it's name disappears from the right.
but this is not exactly what i had in mind, i cant fit all the object names on the right (i have each name as movie clips) the first thing i need help with..

"is how to just turn it into a normal list of lets say 10 words under each other.. and when i click the object on the picture, the name of the object will disappear from the list, and a new object name which wasnt previously on the list appears, until lets say all 22 objects are found..." "or another choice for the list is to just keep is as a list of 12 objects, and have it be random, everytime the game is replayed or started and of course once the object is clicked the name of the object disappears from the list."

"another problem i also do not know how to solve is... putting a timer... lets say a 30, or 60 seconds timer to find all the objects, if they aint found then its game over..."

and lastly... once all objects are found ... to jump into the next frame (or screen)

ok... its a lot i know.... but.... it's important to me to have it working perfectly... and unfortunately... without help, i wont be able to do so...
so... if ny1 can help in anyway.... with any of the problems... just let me know

View Replies !    View Related
Find Signs (simple Game)
I try to create a game in which the player should find the hidden objects in a region. When the player finds an object the variable is increased at one and when it finds all is presented a message.
Unfortunately does not work the variable !!!

View Replies !    View Related
Game (find Objects In Room)
to better explain what im tryin to do (mystery case files, titanic expedition, even certain parts in paparazzi) of course i dont wanna do sth as complicated as those... just 1 level. 1 room filled with objects and a list with the name of the objects on the right.
i already had a lil help with the actionscriptm, so now, when an object is clicked, it's name disappears from the right.
but this is not exactly what i had in mind, i cant fit all the object names on the right (i have each name as movie clips) the first thing i need help with..

"is how to just turn it into a normal list of lets say 10 words under each other.. and when i click the object on the picture, the name of the object will disappear from the list, and a new object name which wasnt previously on the list appears, until lets say all 22 objects are found..." "or another choice for the list is to just keep is as a list of 12 objects, and have it be random, everytime the game is replayed or started and of course once the object is clicked the name of the object disappears from the list."

"another problem i also do not know how to solve is... putting a timer... lets say a 30, or 60 seconds timer to find all the objects, if they aint found then its game over..."

and lastly... once all objects are found ... to jump into the next frame (or screen)

ok... its a lot i know.... but.... it's important to me to have it working perfectly... and unfortunately... without help, i wont be able to do so...
so... if ny1 can help in anyway.... with any of the problems... just let me know

View Replies !    View Related
Matching Pairs Game - Can't Find Error
Hi all, i've been making a matching pairs game. you know the one where you pick 2 cards and if they are the same then its a match although i want to do this with questions and answers.

Basically if a card is selected it is assigned the value of "2". When both corredt cards are selected the total is set to "4" and they remain turned over. wrong selections reset the cards.

when selecting correct answers it works fine and on some selections of wrong answers but theres an error somewhere and I can't find it. When you turn over the 2 diagonal cards which are not matched the total goes to"4" and marks them as correct.

I have attached the file .. please help i've been on this hours now:

View Replies !    View Related
Can't Find A Point And Click Game Tutorial
Hey i'm really interested in making a room escape game but i can't find a tutorial anywhere. I have very basic flash experience but i think if i could find a good tutorial i could manage pretty well.

Can anybody point me in the direction of a tutorial like this?

View Replies !    View Related
Find It Game, Found Differences Counter
Hi there,

I am currently trying to fix a find-it game. I have a counter which needs to count the differences that are found by the player.

I have copied the same movieclip to the locations of the differences and gave them different instance names. (buttonA all the way to buttonO.) Then i created an input text field and the Var name of this is: found.

The movieclip consists of two frames. In the first frame the graphic is not visible and in the second one it is.

Then on the keyframe in the root where all the MC's are on I entered the following script:

function buttonReleased(){
this.gotoAndStop(2);
found += 1;
}

buttonA.onRelease = buttonReleased;
buttonB.onRelease = buttonReleased;
buttonC.onRelease = buttonReleased;

This proceeds on to buttonO.

The problem is that the found counter works but only for 1 difference. After clicking the first difference the counter sets to 01, but after that the counter does not seem to add 1 on.Release.

Can anyone help me with this?
I have been working on this for a whole week now and can't get it to work.

View Replies !    View Related
WordSearch Game Error #1010 - Can't Find It
Hey guys!

I can't find the cause of this error:

TypeError: Error #1010: A term is undefined and has no properties.
at WordSearch/:laceLetters()
at WordSearch/startWordSearch()
at WordSearch_fla::MainTimeline/startAgain()
at WordSearch_fla::MainTimeline/finishedHandler()
at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio n()
at flash.events::EventDispatcher/dispatchEvent()
at WordSearch/::foundWord()
at WordSearch/::checkWord()
at WordSearch/::mouseRelease()

Flash docs says:
1010 The override attribute may be used only on class property definitions. You cannot use the override keyword within a function block.

The funny thing is, the app runs through once, no problem, at the end of the second time round, when it tries to start again, it throws this error.

Here's my FLA code:

ActionScript Code:
import com.matbury.LoadXML; // handles the XML loading.

var url:String = "commonobjects.xml";
var wordsearch:WordSearch;
var loader:LoadXML = new LoadXML(url);
var xmlWords:Array = new Array();

loader.addEventListener(LoadXML.LOADED, loadedHandler);
loader.addEventListener(LoadXML.FAILED, failedHandler);

function loadedHandler(event:Event):void {
    loader.removeEventListener(LoadXML.LOADED, loadedHandler);
    loader.removeEventListener(LoadXML.FAILED, failedHandler);
    var xml:XML = loader.xml;
    for each(var temp:XML in xml..word){
        xmlWords.push(temp);
    }
    starter();
}

function failedHandler(event:Event):void {
    trace("LoadXML failed");
}

function finishedHandler(event:Event):void {
    startAgain();
}

function starter():void {
    wordsearch = new WordSearch(xmlWords);
    addChild(wordsearch);
    wordsearch.startWordSearch();
    wordsearch.x = stage.stageWidth / 2 - (wordsearch.width / 2);
    wordsearch.y = stage.stageHeight / 2 - (wordsearch.height / 2);
    wordsearch.addEventListener(WordSearch.FINISHED, finishedHandler);
}

function startAgain():void {
    wordsearch.removeEventListener(WordSearch.FINISHED, finishedHandler);
    removeChild(wordsearch);
    wordsearch = null;
    wordsearch = new WordSearch(xmlWords);
    addChild(wordsearch);
    trace(xmlWords); // traces the full array each time round
    wordsearch.startWordSearch();
    wordsearch.x = stage.stageWidth / 2 - (wordsearch.width / 2);
    wordsearch.y = stage.stageHeight / 2 - (wordsearch.height / 2);
    wordsearch.addEventListener(WordSearch.FINISHED, finishedHandler);
}

View Replies !    View Related
Where To Find Good Flash Game Tutorial Resources?
I want to start learning to develop a flash games, but as far as I looked there are only tutorials for flash 5 with AS1.
If you know some other resources that use AS2 and most recent flash flash versions I would be glad if you suggest me for some

View Replies !    View Related
Cosine Function To Find Angle Of Robots Arm For My Game. EASY?
Ok heres the deal...

I am making a megaman style game. I am currently making a Boss. The boss has an arm that needs to rotate to point at your charactor, to shoot his gun. Right now I have a script I wrote that gets the diference in X's for sideB of the triangle and Distant in Y's for sideC and the pathagoreon therom to get sideA. All the sides are correct.

Now for the rotation, I am finding angle A (opposite of sideA) which is the hypotinues.

The function for cosine is: A = acos(b2 + c2 - a2) / (2bc)....Heres my code. Please tell me what I did wrong for the angela. Thanks in advance.

::SCRIPT::

onClipEvent (enterFrame) {
_root.sideb = _root.pos2._x - _root.robotout._x;
_root.sidec = _root.pos2._y - _root.robotout._y;
_root.sidea = math.sqrt(_root.sideb*_root.sideb + _root.sidec*_root.sidec);
_root.anglea = Math.acos((_root.sideb*_root.sideb + _root.sidec*_root.sidec - _root.sidea*_root.sidea) / (2*_root.sideb*_root.sidec));
this._rotation = _root.anglea;
}

View Replies !    View Related
HELP Me With "find A Pair - Game"
i'd like to do a game like this... actually everybody knows this game, and it's wery simple...( there are squares... and you have to find pairs, by clicking on them) but i'm not much of a script guy...
so, if anyone can send me an example of that game or show me where to find one (.fla), i'd be thankful...
need it quick
Thnx

View Replies !    View Related
My 'find' Won't Find Empty Lines And } Now
on 750 buttons I'm trying to go from:
{
Sound01

}

}
}

to:
{Sound01}

by deleting the empty lines and these } using find & replace - and when I hit replace all - it says none found, even though I copy directly from button code...

Is possible this happened by earlier having copied code from AS window - pasting it onto main stage to hold it while busy doing something else - then later double-clicking it and copying it into the find/replace window - which strangely puts little squares in wherever there was a carriage return??? Help please.

View Replies !    View Related
Needs EXPERT Help: 1. Save Game For Replay, 2. Reset Game
I'm rather new to Action Script, but doing not bad. I have searched the Board, found a link to a tutorial on ActionScript[Org], titled: "save a local copy of file". But that was yet not clear enough for me.

2 Questions at the moment (files attached):

1. Save Game for Replay: How can I save the set to a file in the Same Folder so it could reload for further play from that point on?

2. Reset Game: How can I Reset the Game for a NEW Attemp? I need to remove all Actors at once, to start a new game, without closing this SWF and reopenning it.

If you'd be so kind as to explain very clearly, and add Action Script, taking into consideration that I still get confused by trying to deal with Arrays and so. I promise to study your lesson carefully - this GameTest attached is the fruit of this week studies.

THANKS A LOT
Nit Kalish

View Replies !    View Related
Was This Game Made From Flash ? (Zadarider) Download The Game
Was this game made using flash 8 because it seems to run very well even when i have made up to 10000 lines.

View Replies !    View Related
Flash Game Help The Game Runs Too Slow In A Browser
lo there!
I'am so frustrated!

I have made a plattformgame in flash, and after I had published it I tested it (local) when it was embedded in a browser, and it hacks and laggs! But when I play it in the flash player it works just fine.
What should I do?

I removed all the heavy graphics, lowerd the fps to 30fps and removed all the code so now its just the bassis left (gravity, collision, key checking etc. and yes u should bounce on the walls giving a wall jump effect).

Anyone please! I am in big need of help!
Is it my code? Did I publish it wrong?

here are the links:

http://smh03.lbs.se/smh03niklas/prof...ofilbollen.swf
http://smh03.lbs.se/smh03niklas/prof...ofilbollen.fla
http://smh03.lbs.se/smh03niklas/prof...filbollen.html


//Qui

View Replies !    View Related
How To Disply Time In Game And How To Stop After The Game..
Hi all,

i need help on drag and drop game...

i have done the drag and drop function, for this game timer has to be shown, after user finishes the drag & match, it should give finish alert and time taken for this game (please tell me also how to stop time after he finish the game) is to be sent to some external file or some database...

can it be done?
i have attached the .fla file also..

View Replies !    View Related
[F8] Game Studio Needs Flash Game Programmer
Hi -

I've been working on cartoon Flash interfaces for awhile. Now my clients want games, so I'm looking for one or two Flash game actionscripters who can help out and maybe start a studio. Since it's a startup, I'm looking for someone who's good, but not yet making millions - hoping we can do that ourselves eventually. Someone dependable, easy-going and easy to get along with. Would be great to find someone relatively local, but not absolutely necessary.

We'll be creating custom Flash games for an existing client.

Hoping to check out people's games first.

J.

View Replies !    View Related
[F8] How Can I Make A Game With Levels And A Game That Restarts?
I know this sounds stupid, but I just can't figure it out. I need to make a platform game. I'm fine with making a points system and a scrolling background and it functions but I don't know how to get the player to touch an object, or reach a goal and then transport to another level...I don't want to make the user have to click something to go to a new level.

Also, when the character hits an enemy, I can make it die, but I don't know how to make a button or something appear saying 'Game Over - Try again', so they can pretty much restart the level.

Hopefully someone can help me.
Regards,
Andrea

View Replies !    View Related
Help With A Game.. Game Is Running Slow In Browser..
I am working on this game for work and for now all i have is placeholder art for the most part and nothing very heavy on the graphics end yet my game is running very slow.. i bumped the FPS to 60 since at 30 i was getting image tearing or a double vision effect.. the upped FPS fixed that but the game is still running very slow. To give you an idea of what's going on i have different intervals running so different things can happen at different times.. there are 2 constant onEnterframes for the 2 enemies flying around the screen.. there is 1 for the main loop, 1 for the character, 1 for whenever tickets generate which removes itself and deletes the enterframe when they disappear, 1 for the wrecks that occur on level 2 which also remove themselves and delete enterframes for themselves, and 1 for a holder that handles all the money flying in which removes themselves as they collide with the player or leave the screen. All enterframes that run during gameplay delete themselves at the end of each level and re-initialize at the beginning of the next.

I can't figure it out.. please take a look at the fla and html files attached. Could it be just the sheer size of the game screen.. should i make it about half the size?? I appreciate any help and thank you.

Also the game's scripted animations seem to be running a little choppy if you watch their movement closely like there is a little glitchy jump every second or so.. is this fixable?

View Replies !    View Related
AS Help Needed In Game(i Will Give Credit In Game If You Help)
ok so basicly this is my game so far
23.swf

my probelm is that i want to make my charcter a flame and the tips of his head will move depending on the direction you are going.
So here is basicly this what its like

Moving left-Flames bend to right
Moving left and down-Flames bend at an angle between the left and down
Moving Down-Shorter Flames
Moving Up-Stretched Flames
etc...

ill put borders on after i get the flames down

View Replies !    View Related
Updating Game Stats During Game
B"H

hi - happy new year

i have a small problem - i run a college sports website - i want to update game stats during the game and ppl would go my website and access the stats as i type them - they are in microsoft database and i have php cgi flash mysql on my server (just not asp) and i want it to be that as i type the scores and then switch cells w/o uploading the new file - flash could still access the files from my computer and update the page auto - (it could load the files from my i.p. addy)

what is the best way to do this - do you have any examples?

thanks

yechi

View Replies !    View Related
[CS3] Snake Game, Game Size
I'm using this snake game code from the old Nokia phones. The game takes place in a 150X150 square, i want this to be 384X512 but ideally it would be in a var so it can be changed easily. Can anyone help?


PHP Code:



var unit = 15;//size of snake partsvar uwh = 20;//?var canMove = false;var dir = 2;var score = 0;aPieceList = new Array();mouseListener = new Object();mouseListener.onMouseDown = function(){    if (!canMove)    {        canMove = true;        startGame();    }};Mouse.addListener(mouseListener);k = new Object();k.onKeyDown = function(){    var k = Key.getCode();    if (k == Key.UP && dir != 2 && canMove)    {        dir = 0;        canMove = false;    }    else if (k == Key.LEFT && dir != 3 && canMove)    {        dir = 1;        canMove = false;    }    else if (k == Key.DOWN && dir != 0 && canMove)    {        dir = 2;        canMove = false;    }    else if (k == Key.RIGHT && dir != 1 && canMove)    {        dir = 3;        canMove = false;    }};Key.addListener(k);function addPiece(){    var p = this.attachMovie("piece", "piece" + aPieceList.length, aPieceList.length);    p._x = aPieceList[aPieceList.length - 1]._x;    p._y = aPieceList[aPieceList.length - 1]._y;    aPieceList.push(p);}function moveFood(){    var moveIt = true;    while (moveIt)    {        food._x = Math.floor(Math.random() * uwh) * unit;        food._y = Math.floor(Math.random() * uwh) * unit;        moveIt = false;        for (var i = 0; i < aPieceList.length; i++)        {            if (aPieceList[i]._x == food._x && aPieceList[i]._y == food._y)            {                moveIt = true;            }        }    }}function gameOver(){    delete this.onEnterFrame;    tScore.text = "You Lose.  Score: " + score;    canMove = false;}function startGame(){    for (var i = aPieceList.length - 1; i >= 0; i--)    {        aPieceList[i].removeMovieClip();        aPieceList.pop();    }    score = 0;    var p = this.attachMovie("piece", "piece" + aPieceList.length, aPieceList.length);    aPieceList.push(p);    p._x = 10 * unit;    p._y = 10 * unit;    var food = this.attachMovie("food", "food", -1);    var c = 0;    moveFood();    var startingLength = 3;    for (var i = 1; i < startingLength; i++)    {        addPiece();    }    this.onEnterFrame = function()    {        canMove = true;        tScore.text = score;        for (var i = aPieceList.length - 1; i > 0; i--)        {            aPieceList[i]._x = aPieceList[i - 1]._x;            aPieceList[i]._y = aPieceList[i - 1]._y;        }        if (dir == 0)        {            aPieceList[0]._y -= unit;        }        else if (dir == 1)        {            aPieceList[0]._x -= unit;        }        else if (dir == 2)        {            aPieceList[0]._y += unit;        }        else if (dir == 3)        {            aPieceList[0]._x += unit;        }        if (aPieceList[0]._y / unit == 20)        {            aPieceList[0]._y = 0;        }        else if (aPieceList[0]._y / unit == -1)        {            aPieceList[0]._y = 19 * unit;        }        else if (aPieceList[0]._x / unit == -1)        {            aPieceList[0]._x = 19 * unit;        }        else if (aPieceList[0]._x / unit == 20)        {            aPieceList[0]._x = 0;        }        if (aPieceList[0]._x == food._x && aPieceList[0]._y == food._y)        {            score += 10 * aPieceList.length / 2;            moveFood();            addPiece();        }        for (var i = 1; i < aPieceList.length; i++)        {            if (aPieceList[0]._x == aPieceList[i]._x && aPieceList[0]._y == aPieceList[i]._y)            {                gameOver();            }        }    };}

View Replies !    View Related
Save Game/load Game
How do you get the browser to remember all the variables and what point you're in on the timeline when you press "Save Game," and how do you get it to reload those variables when you press "Load Game." Is this some extremely complicated process?

View Replies !    View Related
How To Save A Game And Load A Game?
I don't know the codes that can make a game can be saved and be loaded. I have been trying out some codes but they doesn't work. So, can anyone help me please? Im using Flash MX 2004 and Im doing a standalone game.
So, how to make it? Can teach me step by step? Please??

View Replies !    View Related
Card Game (turn-based) - Lobby Room And Game Room, Maintain State
Hi all, I´m new in this forum, since now i appreciate for any help.

I´m developing a turn-based card game in Flash 8 (multiplayer), using the concepts of lobby and room. In this case when the user login de game, he always see the lobby, where he can choice the games, then the user selects a game in a dataGrid and enter the game.

Inside the game (that resides in another frame in my .fla), there is a button that when clicked brings de users to the main lobby ( gotoAndStop(“lobby”) ) so that the user can visualize the lobby with the game running in background with the others users.
The problem is when the user return to the game ( gotoAndStop(“game”) ), the images, cards, players name and chat history text disappear, all the game object disappear, remaining only the original graphics (movie clips) to the game room.
In fact, I need a solution to maintain the state of the game when the user decide to visualize the lobby (with the game running) and after return to the game.

Thanks for any help.

Regards,

Luiz Filipe (CURURU)

Os: Sorry for my bad english -

View Replies !    View Related
Game Control Panel --> How2make Object Appear In Control Once Discovered In Game
Hey all you flashies,
here's a problem to scramble the flash nerves. I'm creating a game for my Major project and I want to have a control panel at the bottom. The aim of the game in brief, is to collect 6 pieces of fruit (just an example). These 6 pieces of fruit will be found in different order depending on which route the player takes in the game. What I want to happen is each time the player finds a fruit, I want it to appear in the control panel. How do I go about doing this? Can anyone help? Much appreciated! If anyone has an example to something similar to this it would be much appreciated if I could see it! thanks!

View Replies !    View Related
My Game....matching Game.
this my example for my game that i have create,can anyone help me and what really wrong with my game,coz the picture not appear went i execute this file.......really need help on this

View Replies !    View Related
[F8] Tips On This Game?(my First Game)
I'm making this here game where you walk around a shop, check out the games and movies etc... in the aisles and if you want to buy one, a form gets sent to me. Also there's a TV room with some videos and arcade room with flash games. I did this cause i'm selling my games and movies etc... and i thought this would be useful.

So any tips about how to improve it? what more to add?

View Replies !    View Related
Game Help(project Game)
Ok I make a simple game but I need more people in my game project take me contact in e-mail.Now I show what people I need.First I need good actionscripts people.I need only good actionscripts people ty and goodbye.

View Replies !    View Related
I Want To Find A Job, Who Could Help Me?
I am in china, and I want to work for a USA company's chinese office.

where should I to find it?

View Replies !    View Related
Can Someone Tell Me Where I Can Find...
Can Someone tell me where I can find a site with a promo box(s) on it? you do know what that is right? plz I need to know asap. thank you all, and merry christmas!

Tony

View Replies !    View Related
Find The VAR
I'm looking for the way to..

var max = #

what would be the actionscripting command?

thanks.

d.

View Replies !    View Related
Trying To Find Tut [ HELP ]
Awright troops i need some help here. I haave an idea and I have been stumped @ the first block

I saw a tut some months back, it was to do with collsion dection. The tut used a COLLISION DECTION MAP. It looked like somthing below.

xxxxxxxxxxxxxxxxxxxxx
xxxoxxooooxxxxxxxxxxx
xxxoxxxxxoooooxxxxxxx
xxxooooooxxxxoxxxxxxx
xxxxxxxxoxxxxoxooooox
xxxxxxxxooooxoxoxxxox
xxxxxxxxxoxxxoooxxxox
xxxxxxxxxoxxxxxxxxxox
xxxxxxxxxooooooooooox

With x being the border and o being the only area available , this is somthing that i want to setup. Does anyone recognise this tut?

Cheers

View Replies !    View Related
Cant Find The Bug :
I created a preloader with a percentage display. The dynamic text "loadingdisplay" displays the percentage loaded.

I cant find a little bug in this code though. I was tracing the loadingdisplay-variable to find out why it is always showing 67% - from 0 bytes loaded to all loaded.

Can anyone check the code for me plz?
_____________________________________

if (_framesloaded>=_totalframes) {
gotoAndPlay("Scene 1", 1);
} else {
loadingdisplay = "";
loadingdisplay = Math.round(_framesloaded*100/_totalframes)+"%";
trace(loadingdisplay);
gotoAndPlay(_currentframe-1);
}

_____________________________________

View Replies !    View Related
I Really Need This....where Can I Find It?
Hello,

i am working on a flash web site and i arrived to the conclusion that i need a funtion which i can use this way:

MC.fall();

fall would be a function to simulate the falling of a MC with gravity and bouncing. Does anyone has such function?

Another question:
can i put an enterFrame inside an if statement?

thanks,
Miguel

View Replies !    View Related
Cant Find It.....
Hey guys,

i need some kind of help here...

i want to create a menu, for a site im working on, that was posted as a tutorial here at flashkit (i thought)...

ive put an description in the image ive attached to this thread...

the explanation *when you choose for option 3 it slides to the right, next to option 4, and then the image (for option 3) appears...

if someone could reach me a hand here, or know where to find that tutorial, i would be very helped...

any help would help me,

thnx

View Replies !    View Related
Can't Find
there was a fla movie with a computer that opened with a red button, then opened the screen with an apple..it had a search engine and everything..I can't find it here and wondered if anyone knew the fla or author ?
maryann_mancini@yahoo.com

View Replies !    View Related
Someone Knows Where To Find This
Hello..I have a client who is dead set on having a banner on her site that has the effect of water when the mouse is moved across the banner(not ripple effect). I know I have seen a tutorial somewhere on how to do this but for the life of me I can't remember where. Can anyone point me in the right direction?

View Replies !    View Related
CAN't Find It...
grrrrrrrrrrrr..

i made a new movi , 100 * 100 and want to make a picture-move from the outside of my document.. but everytime i test the movie the size changed - and the "outside-world" can be seen also..

how do i stop this??

i have searched the board - but didn't find anything-

paraf

View Replies !    View Related
Im Sorry But I Cant Find?
can anyone give me the path or link of animation master and Light weaver...

i just want the trial or demo anything...


thanx

View Replies !    View Related
Please - How To Find If NaN?
I'm trying to check for a textfields value, if it's NaN or not.
Nothing works - please help me somebody!

Code:
var tallet = parseInt(text_txt.text);
trace(tallet);

if(tallet!= NaN){
trace("Not NaN!");
}

View Replies !    View Related
Could Someone Please Tell Me Where To Find
the program that allows you to take out movie and sound clips from swf files? I had it awhile back, and i lost it when i reinstalled. I've seen some mind-boggling tricks in flash lately, and I would like to see how they were done.

thanks in advance, and have a nice day! =D

View Replies !    View Related
Where Can I Find ?
Hey does any one know where I can find a very simpleTutorial with pictures as giudes on

How to make a preloader Using "Frames" instead of "Bytes"

View Replies !    View Related
How Do I Find A Certain SFX?
OK, i dont know how you would explain this. Lets see if i can. Ok you know the sfx on the 'hero' shows, where when there is a transition, it fades to neon colors, and the logo zooms in and zooms out. Ugh, its like diddly-diddly-diddly-didly-duh.
Kind of a bouce, cartoonish loop.
I think this was on the original batman show. I dont know.
If anyone understrands what i mean, please send a sfx, or point me in the right direction, or tell me how i should go about finding it.

SHeesh, i am crazy

Thx
-nanascalala

View Replies !    View Related
Do You Know Where I Can Find...
I'm looking for tutorials on making RPG's...can anyone point me in the correct direction? Thank you!

View Replies !    View Related
Can't Find Something
Hi

Does anybody know where i can download free video's which explain the features of flash MX 2004, about some of the effects and things like that. also the actionscript.

Thanks

View Replies !    View Related
Please Help To Find A Bug
Hi all,

Thanks for reading this.

I have the following problem:

On a site, I have a main.swf .
Inside that, on level 1, another SWF is loaded, let's call it child.swf.
The child.swf has in it:
several movieclips, containing graphics, some are on stage from authoring time ( I put them there manually), some are put there by attachMovie.
several textfields, mostly dynamic text.
a button, which reacts on the mouse and with a keylistener on the "v" and on the "V".

All works well, but sometimes, ( and I can't find what triggers it, it seems to happen randomly, and only once in a while meaning I can play the swf 20 times without anything going wrong) something goes wrong.
What I can see from the screendump sent to me is:
- All the dynamic textfields from child.swf and main.swf are still there, visible and functional (holding there values)
- All the movieclips and all the static textfields from child.swf containing the graphics are gone,
- besides that child.swf still works properly (but offcourse you can hardly see what you are doing), so the actionscript still works
- main.swf is still fully functional, still has all the textfields (which are all dynamic) and graphics visible.

This happens on more then 1 pc, so I take it it has nothing to do with the OS or pc. One of those pc's has the latest flashplayer installed. All swf's are made with FlashMX2004.

This only seems to happen with this one child.swf, with all the other child.swf's this hasn't happened, yet.

Any idea's ? Really, anything ??

Thanks!!

PM

View Replies !    View Related
Can't Find Something, PLEASE HeLP
I am using Flash MX and am trying to find: the Fill panel so that I can do a text effect... PLEASE PLEASE PLEASE help!

View Replies !    View Related
Can't Find The...
Fill Panel.

Flash MX.

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved