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




Replicating Flash, Am Stuck :(



Hey,

I seen this flash thing. And i want to learn how the computer gets brought into it. Take a look here http://www.clipitsolutions.co.uk/flash/flashmovie.swf .. As soon as it starts, the computer comes in with like a cirle being tweened over it. But i dont understand how to do this?

If anyone could help, would be most greatful. I really wana learn this technique but its fryin my brain lol

Thanks,
Paul



FlashKit > Flash Help > Flash Newbies
Posted on: 09-28-2006, 07:42 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Replicating Website + Flash
Okay. Here is my predicament. My Father's company (Natural Herbal Prodicts) is paying some people a large sum of money to design a website. The design that they are stuck with is mediocre and not very functional and I could do a much better job, and would like to do so, except for this obstable. They are making a replicating website, that would be plugged into the already existing database system. Let me explain...


The original domain name will be www.entreneteam.com
Say I ordered, then a site would automatically be created after the order at the url
www.entreneteam.com/eric.html
Now say I give my card to someone with my url on it and they will get the same frontpage as anybody else, but when they order, they will be put under me in the distributor line so that their orders benefit me.
So these frontpages would be replicated like a tree and tied into the distributor database. Now, he already has a programmer that can take care of the database part, and tying the database into it, but I would still personally have to do the replicating webbsite part of it myself.

Now I have no idea how to do that, and will gladly research, but is this possible to do in Flash MX or in Flash MX and Cold Fusion, so that I could include the funtionability of a replicating website, with a good flash design?
I would really be helping my father out of a situation if I could do so.
Thanks for your time.

Replicating Website + Flash
Okay. Here is my predicament. My Father's company (Natural Herbal Prodicts) is paying some people a large sum of money to design a website. The design that they are stuck with is mediocre and not very functional and I could do a much better job, and would like to do so, except for this obstable. They are making a replicating website, that would be plugged into the already existing database system. Let me explain...


The original domain name will be www.entreneteam.com
Say I ordered, then a site would automatically be created after the order at the url
www.entreneteam.com/eric.html
Now say I give my card to someone with my url on it and they will get the same frontpage as anybody else, but when they order, they will be put under me in the distributor line so that their orders benefit me.
So these frontpages would be replicated like a tree and tied into the distributor database. Now, he already has a programmer that can take care of the database part, and tying the database into it, but I would still personally have to do the replicating webbsite part of it myself.

Now I have no idea how to do that, and will gladly research, but is this possible to do in Flash MX or in Flash MX and Cold Fusion, so that I could include the funtionability of a replicating website, with a good flash design?
I would really be helping my father out of a situation if I could do so.
Thanks for your time.

Replicating OnDragOver In Flash 5
Hi every1. First post, wondering if you can help me.

The deal is I've got an MC that I am dragging around my scene and I need other MC's to be highlighted as I drag over them, i.e. the mouse is still down. Buttons don't work, onClipEvent only runs once whilst mouseDown (so I can't do a continuous position check) and the only thing I can think of working is the onDragOver and onDragOut events in MX but I am using flash 5?

Any feedback welcome. Can't help feeling like am being very stupid, am sure this is possible, but can't for the life of me think how.

Cheers,
Sir.

Replicating Photoshop Text Tool Antialiasing Settings In Flash 8?
Does anyone have any custom antialiasing settings to match up with the 4 settings: smooth, sharp, crisp and strong?

Thanks

Load Jpegs In MC Stuck Stuck Stuck
ok i'm sure this is in another thread if someone wants to point me in the right direction i'd appreciate it.

question is.

i have a button that will load a jpeg into a mc. did that.

how do i get the jpeg to center and resize to my mc? mc is 300 x 480......

the site is for an art porfolio and this button/action will be repeated throughout the site

new to FLASH MX & actionscripting and it's driving me over the edge..................


[EDIT/CyanBlue]
Moved to the Flash MX ActionScript forum
Please state what your working environment is and
please post in the right forum
[/EDIT]

Replicating An Effect
say there's one particular "effect" i want to use on several different symbols, what's the best way to go about reproducing it? for example, let's say i find a particular way of affecting color and size with lots of tweens that makes a really nice "shine" effect, and want to use the same settings on 30 or 40 different text and/or image links - how should i go about it?

tyia

Help In Replicating Menu
Hi,
I am working on a website and want to integrate a Flash menu, with the same type layout as the one used here (http://www.islandrecords.com/thekillers/site/home.las). I'd like a menu list where you get sub-menu items when you roll over the buttons. I'm just getting into learning Flash, and could use some help. I've got my main image and my buttons created on seperate layers. But I don't know how I should put the sub-menu items in, or how to get them to appear when you roll over the buttons. Any assistance in how to properly set this up is much appreciated. Thanks in advance. - Eric

Replicating An Applet
Hi,
I saw this applet that basically had heaps of points arrange in columns and rows, that when u clicked and held the left mouse button down they would move towards the mouse, and move away if the right button was clicked.

so the question is how do i make this code 4 making the points arrange on stage simpler I am sure there is a better way.


Code:
a = 0;
j = 1;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 1+i);
a = a+60;
b = 60;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 2;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 20+i);
a = a+60;
b = 120;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 3;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 40+i);
a = a+60;
b = 180;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 4;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 60+i);
a = a+60;
b = 240;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 5;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 80+i);
a = a+60;
b = 300;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 6;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 100+i);
a = a+60;
b = 360;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 7;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 120+i);
a = a+60;
b = 420;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 8;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 140+i);
a = a+60;
b = 480;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 9;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 160+i);
a = a+60;
b = 540;
_root[peete]._x = a;
_root[peete]._y = b;
}
a = 0;
j = 10;
for (i=1; i<11; i++) {
peete = [i, j];
_root.attachMovie("point", peete, 180+i);
a = a+60;
b = 600;
_root[peete]._x = a;
_root[peete]._y = b;
}
also i am using a mouse down clip event to make the points move to the mouse how do i make this happen for the whole time the mouse is down not just the click?

Help Replicating Effect
Hi all,
just wondering if anyone could give any help... I am trying to copy the effect on this page.


www.bbc.co.uk/radio1

when you hover over a picture, info pops up from the bottom.

Any clues?

Many thanks :-)

Self Replicating Program
Can anyone use AS3 (or AS2 I suppose) to write a script that can reproduce itself? Successful program should export code (into a TF or the output panel) that can be copied into a new flash file and run to repeat the same output indefinitely.

I've seen this posed for other languages but I'm not sure how to tackle it in AS3...yet.

Replicating A Pattern
This time round i need to get the pattern drawn on the drawing board to be repeated on another area of the stage.I need it to be repeated 4x4 tile. Any idea??

Replicating A Pattern
This time round i need to get the pattern drawn on the drawing board to be repeated on another area of the stage.I need it to be repeated 4x4 tile. Any idea??

Replicating MM Search Input Box
Hi Guys,

I have tried this - only have flash 5

Here is the fla - I have it working except when I roll on and off the textbox it fades in an out.


I only want it to fade when I click on it and click off it.


onClipEvent (load) {
this._alpha = 100;
alpha = no;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (alpha == no)) {
this._alpha -= 13;
// this._alpha++ // very slow
// this._alpha*= 10 //a bit faster
alpha = yes;
} else if (alpha == yes) {
this._alpha += 13;
}
}
onClipEvent (load) {
}

http://www.actionscript.org/forums/a...=&postid=50155

Cheers,
SuzyQ

[CS3] Efficient Way Of Replicating MovieClips?
On my main timeline I have two dynamic text boxes and an input box that represent a math problem. I wanted there to be three problems on the screen at a time. Since I don't know much about classes and making packages I just copied and pasted the problem twice so that I have three instances of each text box. Next I basically just tripled my lines of code, one block for each of the three problems.

I'm assuming the proper way to handle something like that is to make the problem a MovieClip and then make a class for it. However, when I attempted to do that I got errors [possible undefined function] because code that still remained on the Main Timeline was referencing functions that had been moved from the Timeline into the mcProblem class. Could I change the code on the Timeline so that I won't be getting these referencing errors? If not, could you please provide some detailed information about what I should do regarding classes? Currently I am not using a document class.

If anyone understands what I'm trying to do, please guide me in the right direction. This is my first attempt at a solo project (for fun) and while I can achieve the desired swf sloppily I prefer to learn to do it the clean and efficient way.

Replicating Files On A Desktop In AS
Can i replicate files and create folders on a users desktop through actionscript?

Im creating a template builder that will have to replicate my swf's, write a variable to a html page where my flash is embeded, write a xml file, and create a folder on a users desktop with all the files above?

Is this possible in as or as3? Do I need to write my application in VB or flex instead?

Replicating HTML Forms
I am trying to put a HTML form into flash that has hidden fields. How can I put these in flash? Do I just set a variable value under the submit button function? Thanks!

Replicating Pages Turning
I'd like to replicate the turning of pages of a book, to show different information. I would either like (A) when you click on the lower right corner the page flips, flowing across the screen as if turning in real life or (b) *favorite* that when the lower right corner is dragged towards the left side, the page turns to the next. is this even possible? any help would be greatly appreciated (ps kinda new but my confidence and understanding is growing quickly)

Indications On Replicating Effect
Hello. I would like some indications on how to replicate the transition effect between the images on this site: link (the transition effect with the squares). Please offer some ideas on how to do that effect. As many indications as possible are welcomed. Thanks.

Replicating Pages Turning
I'd like to replicate the turning of pages of a book, to show different information. I would either like (A) when you click on the lower right corner the page flips, flowing across the screen as if turning in real life or (b) *favorite* that when the lower right corner is dragged towards the left side, the page turns to the next. is this even possible? any help would be greatly appreciated (ps kinda new but my confidence and understanding is growing quickly)

Replicating Left And Right Mouse Clicks
Was wondering whether anyone knows if it is possible to replicate a left and right mouse click in flash.

Need to distinguish between whether the user has right clicked their mouse or left clicked....also any ideas on replicating a double click?

Cheers....

Replicating The Menu On ERAIN Homepage.
The header bar of the Electric Rain webpage has a very nice effect when you rollover the buttons. I am just wondering if anyone knows how to re-create this effect. Also how to make the little pop-up bubble when rolled over the logo.

http://www.erain.com

Replicating This Effect With Bitmapfilter (Effects)
Hey there all, I'm just trying to replicate this effect

http://www.reactiondynamics.com/sd2.swf

using flash. So far, using Senoculars blurred trails example on his website, I've got this: blurtrail2.fla

Only, it doesn't look right and I'm not sure how I can get it looking better. For instance, how can I remove the spacing that appears as dots spin, and also, how do I elongate the trail, and make the blur falloff ? If it can't be done in flash, what program can I do it in?

Any help appreciated

Help Needed On Styling And Replicating Text Field
As a new AS3 coder I'm at a little bit of a loss on the most efficient way to replicate a styled text field.

I would like to use the following styled text info and load some text from an array. Do I need to create all this styling for every instance of the text in the array or can I create several new instances of the field in my function?

Thank you in advance for your help.


ActionScript Code:
var headlines:TextField = new TextField();var headline:TextFormat = new TextFormat();headline.size = 20;headline.font = new HelvBlack().fontName;headlines.alpha = 0;headlines.setTextFormat(headline);headlines.embedFonts = true;headlines.autoSize = TextFieldAutoSize.LEFT;

Can A Flash Pro Help Me Please I Am Stuck
Okay, say I have a button that once rolled over scales up slightly. When you roll off the button, I don't want it to just flick back to being small - I want it to scale with a tween. Does anyone want to give me a pointer?

I'd appreciate any help!

Stuck With Mc. Please Help [flash MX]
hello!
i'm very knew at as...
i got the result i want doing it "my way" (see attached .zip,
contain the .fla and used font), but i would like to make it
using as.
-in the middle menu, 1 and 2 change page
- when click one project (here i reduced it to brasil, viviendas
and lista), the button change to orange, the background get darker in
the middle menu and clearer on the right with a white fade effect
and appears the text
-then, if you click 1 or 2, the text on the right stays and just the
middle menu change.
- if you click another project, the actived botton get orange and
the text on the right change

i've been trying for few days, making tutorials, looking forums,
etc... no way to figure it out!

can someone help please?

Stuck In Flash MX
So I have been creating my flash website through Flash MX 2004, yes I know its old but I just dont want to update. I can still do almost everything the new stuff can, but my problem is I added a layer to some of my areas like major headings in the website, and now it has a black layer over it and its impossible to remove, i can hide it but it still is there after the movie has been exported. I can post a image if anyone needs it.

Help We Flash :( Stuck
need help we a flash movie could some one help its just some pictures that i want to appear after another then some text at the end that dropps down but each letter on its own im really stuck

Flash Nav Getting Stuck
I have put together a flash navigation for a website and it has roll on and roll out actions.

If you are very slow with the mouse and don't get to excited with the site the nav works and looks great.

When you roll over each button quickly the animation gets stuck and doesn't do the roll out animation correctly.

Just wondering if there is a way to perfect this navigation bar. Thanks

http://www.moneycounterusa.com/design1edit/

http://www.moneycounterusa.com/design1edit/nav4.fla

Flash PHP I'm Stuck
So I'm just trying to create a simple, very simple Flash PHP integration. Actually I'm doing the tutorial from the macromedia website. Here is the Flash code:

ActionScript Code:
stop();
//PHP Stuff
myVar = new LoadVars();
myVar.onLoad = function(success) {
    returnvals = "returned from php:";
    if (success) {
        for(i in this){
            returnvals += i + " = " + this[i] + "
";
        }
    }
    trace(returnvals);
};
myVar.load("showEventsByWeek.php");
//

Here is the PHP Code:

PHP Code:



<?php
$lastName = "Anderson";
$phone = "301-424-5555";
echo "lastName=".$lastName."&phone=".$phone;
?>




And I keep getting a very long trace statement of strings: basically the whole PHP file:

Code:
returned from php:phone = ".$phone;
?>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns = "http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<title>Untitled Document</title>
</head>
<body>

<?php

$lastName = "Anderson";

$phone = "301-424-5555";

echo "lastName=".$lastName."
onLoad = [type Function]
This should be pretty easy, is there something simple I'm missing?

Stuck With Flash
Hello.
Im very new to falsh, having used it a few months ago at college i thought i would have a go at using it home to design a website.
I have set up my pages with tweens, and buttons, but i can remember the basic code for the action script to allow the buttons to take me to another scene.
Any help would be greatly appreciated.

Stuck... Flash + ASP Search... I Appreciate Any Help...
I have a problem with using ASP-Access Database-Flash...

I have to read around 400-500 records which each of them have 6-7 different variables. And I have to make a search within that database and get the results into Flash and use all the results seperatly to be able to control a video gallery...

Actually I managed to send the search data from Flash and get the results from Access Database to ASP and then to Flash and it works perfectly unless the results does not pass the amount 39. When I search something which has 40 results, still I can get the results to Flash but to make "another" search causes an error in flash...

I had post the details to FlashKit at:

http://board.flashkit.com/board/show...hreadid=322398

and some users tried to help me but none of them even could get close to the issue...

I am really stuck in this issue more than one week and still could not get any clue...

If you need the fla, mdb or asp files to understand what is wrong, you can download it from

http://www.gagaku.org/works/Search.zip

Thank you for your time.

Using Links In Flash-please Help We Are Stuck
We are doing a multimedia cv in flash that needs to become a web page- we are very new to flash-can anyone tell us how we can do links to each of the pages please

Flash Bits Stuck At 32?
Using bit shifts (<<, |=, etc) am I stuck with a 32bit max value? The reason I'm asking is I'd like to use bitboards which will need 64.

Checkboxes In Flash MX.. I Got Stuck :(
Howdy

I have a problem regarding the checkbox component in flash MX. The dilemma is that I have two sections on my main timeline. One section is the library section and the other section is feedback form which contains some text field and checkboxes.

I want to give the user a option to check the files in library section while browsing it and if we comes to the feedback form where all the checkboxes are already places should be selected if he already checked them before in the library section.

How would I accomplish this task via actionscripting.

I would really appreciate your help.

Thanks

PHP + Flash + MYSQl = Stuck
how can o make a flash and php and mysql gustbook and shoutbox. i tried so many tutorials but i filed can anyone help me out.

Stuck With Flash Effect..
heya everyone, (excuse my english I'm still learning) my friend's got this cd with tons of games website with flash banners, I saw one and there was this effect that caught my eye and I wanted to recreate it for something else but I have no idea how to since I'm a newbie, so if any of you know of a tutorial that explains how to do it or if any of you know how to do it I'd really appriciate your help thanks ..

http://img509.imageshack.us/my.php?i...aguar711sr.swf

Please click on the link and it will load the swf, I wanted to know how to make that kinda exploding effect with the picture at the end it gets all bright and blurry with a bit of noise and then comes into view. It looks really cool. so anyway thanks for the help in advance

[F8] Stuck On A Flash Form
Hello everyone. It's my first post.

Anyway, I've been working on a form (using flash 8) and I have been having a lot of trouble getting the radio buttons to display not to mention find a script that will work correctly. I think I actually got the text fields part of the script working but I need help!

Heres the .Fla file. I took out the old radio buttons I had and put text where they would be because the old button's coding was a mess.

Any help would be appreciated. Thx.

[F8] Stuck With Flash Game
Hi this is a follow on from my previous thread as I feel I don't explain myslef very well. Apologies.

I am currently creating a penalty shoot out game in Macromedia Flash 8,where the user can press button 1,2,3,4,5 or 6 and then a random number will calculate whether it is a goal or a miss, which will then show a movie clip corresponding to the outcome of this. It is a game where you have to score as many out of 20 as possible.

At the moment I have 5 layers on my stage, all 1 frame long:
- ActionScript (Layer which contains my actionscript code)
- ScoreBoard (This layer contains the movie clip scoreboard).
- MoiveClips, This layer contains the 12 movie clips which show separate animations of goals and misses.
- Welcome (This layer currently contains nothing)
- Background - (This layer contains a background image)

I have the following movie clips:
scoreboard - (a simple scoreboard which shows how many pens scored, how many pens taken)
goal1 - (an animation of a goal for when the gamer presses 1)
goal2 - (an animation of a goal for when the gamer presses 2)
goal3 - (an animation of a goal for when the gamer presses 3)
goal4 - (an animation of a goal for when the gamer presses 4)
goal5 - (an animation of a goal for when the gamer presses 5)
goal6 - (an animation of a goal for when the gamer presses 6)
miss1 - (an animation of a miss for when the gamer presses 1)
miss2 - (an animation of a miss for when the gamer presses 2)
miss3 - (an animation of a miss for when the gamer presses 3)
miss4 - (an animation of a miss for when the gamer presses 4)
miss5 - (an animation of a miss for when the gamer presses 5)
miss6 - (an animation of a miss for when the gamer presses 6)

Here is my actionscript


Code:
var penScore, penRemainCnt, penTakenCnt;
penScore = 0; // Number of Penalties Scored
penRemainCnt = 20; // Number of Penalties Remaining
penTakenCnt = 0; // Number of Penalties Taken

//If the button 1 on the keyboard is pressed
if (key.isDown(97)){
var ranNum = Math.ceil(Math.random()*10)
if (ranNum<=7){
_root.goal1.play();
}else{
_root.miss1.play();
}
}


I have put the 12 movie clips of goals and misses onto the movieclips layer and have also given all of these movieclips instance names.

My problem is when I go to 'test movie' ....

What actually happens
Movie Clip miss6 just plays once and then nothing happens. miss6 was the final movie clip I added to the MovieClips layer out of all 12 goals and misses movie clips.

What I want to happen
The stage is shown with nothing happening, e.g. just the background and the scoreboard showing. When the user presses the button 1, it does the random number calculation and then plays a movie clip accordingly.

Please help.

Thanks,

Dan

Stuck With My Flash Game
Hi, I am currently creating a penalty shoot out game in Macromedia Flash 8,where the user can press button 1,2,3,4,5 or 6 and then a random number will calculate whether it is a goal or a miss, which will then show a movie clip corresponding to the outcome of this. It is a game where you have to score as many out of 20 as possible.

At the moment I have 5 layers on my stage, all 1 frame long:
- ActionScript (Layer which contains my actionscript code)
- ScoreBoard (This layer contains the movie clip scoreboard).
- MoiveClips, This layer contains the 12 movie clips which show separate animations of goals and misses.
- Welcome (This layer currently contains nothing)
- Background - (This layer contains a background image)

I have the following movie clips:
scoreboard - (a simple scoreboard which shows how many pens scored, how many pens taken)
goal1 - (an animation of a goal for when the gamer presses 1)
goal2 - (an animation of a goal for when the gamer presses 2)
goal3 - (an animation of a goal for when the gamer presses 3)
goal4 - (an animation of a goal for when the gamer presses 4)
goal5 - (an animation of a goal for when the gamer presses 5)
goal6 - (an animation of a goal for when the gamer presses 6)
miss1 - (an animation of a miss for when the gamer presses 1)
miss2 - (an animation of a miss for when the gamer presses 2)
miss3 - (an animation of a miss for when the gamer presses 3)
miss4 - (an animation of a miss for when the gamer presses 4)
miss5 - (an animation of a miss for when the gamer presses 5)
miss6 - (an animation of a miss for when the gamer presses 6)

Here is my actionscript


Code:
var penScore, penRemainCnt, penTakenCnt;
penScore = 0; // Number of Penalties Scored
penRemainCnt = 20; // Number of Penalties Remaining
penTakenCnt = 0; // Number of Penalties Taken

//If the button 1 on the keyboard is pressed
if (key.isDown(97)){
var ranNum = Math.ceil(Math.random()*10)
if (ranNum<=7){
_root.goal1.play();
}else{
_root.miss1.play();
}
}
I have put the 12 movie clips of goals and misses onto the movieclips layer and have also given all of these movieclips instance names.

My problem is when I go to 'test movie' ....

What actually happens
Movie Clip miss6 just plays once and then nothing happens. miss6 was the final movie clip I added to the MovieClips layer out of all 12 goals and misses movie clips.

What I want to happen
The stage is shown with nothing happening, e.g. just the background and the scoreboard showing. When the user presses the button 1, it does the random number calculation and then plays a movie clip accordingly.

Please help.

Thanks,

Dan

Kinda New To Flash And Stuck
Basically, I made a tab menu. On one of the tabs where you can select an Avatar, I have self made radio buttons (didn't know how to put actual radio buttons in) to select which Avatar you'd like. I've made it so you can choose up to three avatars to appear for different things, but the problem is when I click one of the buttons it selects that button, but then when I click another for a different avatar the previous one doesn't stay selected. Anyone got any ideas what I can do to fix this?

New To Flash And Stuck On A Animation
Just recently i have had interest in making flash animations. I have only been tinkering around with it for the passed 2 days and have made a basic animation. I have started a new animation and i am now stuck. I am trying to get a symbol to start outside the white box and move through the white box then leaving it again so basically if you were to press play the symbol would enter from the right and move through untill it disappeard on through the left side. Its hard to explain what im trying to accomplish because im new to this. *The Problem* I would select the symbol and then select about 40 frames and select insert keyframe. Then i would move the symbol across the white box from the right and dissapear into the left side and out of the white box. After that i would set the tween to motion. For some odd reason when it would not move and would move in one frame from one side to another. Im confused because i am able to make objects move just in the white box but when i try to make them move from outside the white box to inside the white box it would not work. I need some help and advice. Please and thank you.
Cameron Lang

Why Is My Flash Getting Stuck On Loading
Hi there,

have just put my new website live last week and everything was going swell until I started getting reports that the flash in on eof my pages would keep sticking! I have tried a few different things but no joy - the computers here are all a really buggy version of IE6 but can someone look at the page and see if there is anything obvious that might be causing it...

http://www.parkdeanholidays.co.uk/browse-parks.htm

Cheers

Lex

Stuck With Flash Movies..
So I start a new project for my company, And the programmer who worked before me left me an incomplete website. Now all the menus on the website are in flash.

My managers want me to change some things in the menu, I dont know a thing about flash. Is there anyway I can decompile his flash movies, and make small changes to the menu headers??

Help I am stuck. Thanks everyone.

Stuck In Flash Can Any1 Help Please.....?
Hi im new to the forum, ive just started to use flash, instead of fireworks, got the mx 2004 version,

I try to make a text scroll bar, so i followed this book i got, got the text on the stage, typed in my instance (which can be called anything??) went to components looked for scroll bar, and there aint one called scroll bar..?? can any1 help..?

Thanks alot

Fryaldo

Stuck On Images In Flash
Hi all,

This might be a very stupid question but does anyone know why pictures that I import into Flash and from there edit with Fireworks look so crap around the edges. I have a coloured background and can see all the white edges from the imported picture. So I decided to edit the picture with fireworks. In fireworks I chose to work on the original .jpg and got rit of all the white edges. (well, so I thought) and clicked on done. The picture was taken back to flash but :-( there where the white edges again???
I am stuck on this for a while and am desperate for a good tip or suggestion.

(The picture I use has got an alpha tranparancy)

Thanx in advance!

Flash File Stuck?
I created a simple flash file with four photos. All low enough resolution,
small file size. Made sure I downloaded the latest plug-in, did a check both
in flash and dreaweaver and the animation worked perfectly.

For some reason after uploading to the web - the file only cycles one of the
photos. I tried everything including re doing the entire animation - still
does not work correctly.

Any ideas what could be causing this bizarre problem?
The url is
http://www.designworksltd.com

Thomas Design Works

I'm Stuck, Probably Simple...but Stuck
alright i'm making an entire site in flash.

i have my main timeline that i have label on, that i'm trying to get my button to go to.

here's the deal:

main timeline -> movielcip -> movieclip (button inside this clip)

on the button inside this movieclip i have all my actionscripting (rollover, rollover and on release)

now on release i have: gotoAndPlay("_level0", "news");

news is my frame label on my main timeline, also frame 101.

but when i click on this button it does nothing, just sits there. hmmm.....

thanks.

Flash Inside Director (well Stuck)
hi y'a;l

I have been experimenting with flash inside director and have noticed some strange stuff.

I am trying to load(VariableNum which just istn't working at all - so i just did a wee test and put in the code getURL - all this is in the flash -

then I put the swf into director and neither the getURL or load(variable works at all.

--to start with I thought it was due to the looping while loading variables was not really looping at all - then i tried the getURL code and basically nothing happened - which 2 b honest is ma prob..

I would really like to see this sorted as I really don't know much about lingo and if i can't deal with this in Flash will have a lot of lingo work in front of me -

basically I am wondering if anyone can help me

--plz

mucho obligatero

beezer

Can't Edit Flash Fla/stuck At Loader
Hi

I am editing a flash fla but I am stuck at the loader 2 frame scene. I need to edit the rest of the flash template but I can't find the more of the frames. It says it has only scene1 with the drop down button.

can anyone tell how can I edit the remaining template because the fla is quite large 2.5MB where as the current scene is very small.

Thanks.

Copyright © 2005-08 www.BigResource.com, All rights reserved