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








Holy Crap. This Is Frustrating.


Hello all!
I am about ready to pull (what's left) of my hair out.
I have a button that uses loadmovie. The movie i want to load is a MC with a QuickTime embedded inside.
So:

on the button I give the path to the MC where I want it to load:
on (release) {
loadMovie("aviationQT.swf", "_root.container.services.subContainer");
}

and when i click the button, instead of loading the aviationQT.swf
IT STARTS THE WHOLE SCENE OVER AGAIN!

AAAAAAAAARRRRRRRGGGHHHHHHH!!!!

what am I missing here?
any input is great! Thank you in advance for your time!

If anyone wants to see firsthand, here's the link:

http://www.demonstratives.com/303_flash/main.html
(click on services, then aviation)

I apologize for posting the link in the help forum.




FlashKit > Flash Help > Flash MX
Posted on: 04-01-2003, 03:54 PM


View Complete Forum Thread with Replies

Sponsored Links:

Holy Crap
ok, i saw this movie a while ago, and ever since i saw it, i wanted to learn how to make it, and i kinda did. but it wasent good news, i was told the only way to animate things in flash it frame by frame. that would take a lifetime to do, look at this movie i was trying to duplicate....

http://www.xiaoxiaomovie.com

i know its in japanese or something, but click the 3rd box, movie 3 and look at it

is there any way to do that not frame by frame, cuz that would take years

View Replies !    View Related
Holy Crap
holy crap!!! (as title reads).. i'm tryin to make a VERY simple flash web site, yet i keep finding myself running into the same problem:

LINKING PAGES in FLASH IS SOOO HARD AND TIME CONSUMING! I have to make a friggin copy of the original swf, deal with the over-sensitive bugs that always appear (SYMBOLS!!! DIE!!!), make changes to both when i make changes to teh first, then i keep running into continuous actionscript! Why is Flash so complicated for such small things? Please someone give me advice.. I was somewhat familiar with Flash 5, but MX does it so much harder and complex! Am I doing something wrong? Anyone please got some TUTORIAL SITES that I can go to and learn various things? My project is not going anywhere I've been working on it for the past 6 hours.

I'm contemplating using swish.. but I really think I should learn Flash.. I feel like Macromedia has turned EVERY aspect of Flash into a 12 hour long task. Does this get any simpler or am I normal in feeling I have to go the EXTREME LONG WAY in everything?

View Replies !    View Related
Holy Crap My Toolbar Is Gonne1111111
oh no i dunno how this happened but my toolbar with all the brushes and paintbuckets and erasers ect just dissapeared how do i get them back!?

View Replies !    View Related
Holy Crap Why Isnt It Working
when i click on my .fla s it says cannot find. and when i click the icon for the program(flash mx 2004) it doesnt do anything. i am wigging out. please help.

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

View Replies !    View Related
Help Xml Arrays Crap Junk Crap
got a problem i've been working on for a while. cant seem to get anything to work.
my xml:

Code:
<body>
<nav id="corp">
<client name="ALA">
<section url="test1.html" image="images/1.jpg">info</section>
<section url="test2.html" image="images/2.jpg">info</section>
</client>
<client name="AISC">
<section url="test1.html" image="images/1.jpg">info</section>
<section url="test2.html" image="images/2.jpg">info</section>
</client>
</nav>
</body>
so, i generate some buttons for the client nodes. then, i have a function
that generates more buttons if the main buttons are pressed.

Code:
function clientGen() {
for (var i = 0; i<client_xml.childNodes.length; i++) {
_root.blankMC.attachMovie("client", "client"+i, i);
client = _root.blankMC["client"+i]
client._x = 272 + client._width*i;
client._y = 256;
client.param_txt = i;
client.name_txt = client_xml.childNodes[i].attributes.name;
client._alpha = 0;
j = 0;
client.onEnterFrame = fadeIn;
client.onRelease = function() {
trace(client_xml.childNodes[0].childNodes);
for (var i = 0; i<client_xml.childNodes[0].childNodes.length; i++) {
_root.mc_buttons.attachMovie("button", "button"+i, i);...
see. it's messed up. i need to be able to change that 0 to whatever 'i' is. 0 works and takes me to the right spot, but i need that to be 1,2,3 etc for the rest of the main buttons.

View Replies !    View Related
Holy Cow
hey guys,
need some help as usual. Im trying to get a series of buttons to alpha out of no where in order yet i have no clue how to do this ... any clues about the script for the alpha and how to make them follow each other.. once one finishes the next will appear then the next and soo on ... thanks...
Peter

www.southwestern.edu/~hubnerp

View Replies !    View Related
Holy
any one know how to play internet radio stations in a flash movie.... is there any way to do it??????

View Replies !    View Related
FOR THE LOVE OF... All That Is Holy Pls Help Me...
Ok i posted here before on how to make a guy move with the keyboard, and be able to not walk over water or buildings. i GOT it to work to a certain extent thanks to the help of one of the executive members here, however its bug city the way we tested it, heres what happend below...

[swf width="600" height="390" background="#000000"]http://www.newgrounds.com/portal/uploads/12000/12553_Introduction_temp_.swf[/swf]
CRONO CONTROLLS: UP, DOWN, LEFT, RIGHT MANGUS CONTROLLS: HOME, END, PAGEDOWN, DELETE

the LOGO will serve as a testing house... notice how when u walk up to it you stop but yet you get stuck when u try to pull away... how can this little bug be fixed?

heres what code i have on crono at the moment...


Code:
onClipEvent (load) {
moveSpeed = 4;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
this._x += moveSpeed;
} else if (Key.isDown(Key.LEFT)) {
this._x -= moveSpeed;
}
if (Key.isDown(Key.DOWN)) {
this._y += moveSpeed;
} else if (Key.isDown(Key.UP)) {
this._y -= moveSpeed;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.mc2)) {
movespeed = "0";
}
}
mc2 = movie clip house...

-Xclint
[Edited by lwf.-.Xen0 on 09-26-2001 at 06:14 PM]

View Replies !    View Related
Why In The High Holy.... Please Help
I call the following main timeline function from a frame inside map_mc which is on the main timeline. On the same frame as the call to this function are my three buttons, button11_mc, button12_mc etc... On the main timeline i also have an array of frame labels defined (diningBarsArray)

function setupDiningBars() {
var i;
for (i=0; i<3; i++) {
diningBarsButton = i+11;
map_mc["button"+diningBarsButton+"_mc"].onRelease = function() {
map_mc.gotoAndPlay(diningBarsArray[i]);
};
}
}

I've written many for loops like this that work just fine, as long as the buttons they are defining the onRelease event for are also on the main timeline, but must it be this way? I can't get this to work for buttons that are nestled inside a movieclip! What happens is, all the buttons gotoAndPlay whatever the last loop tells it to

Thankyou kindly

View Replies !    View Related
The Holy Grail Of Pop-Ups.
Can anyone tell me if there is one frickin' chromeless pop-up code out there that will work on all major browsers?


ARGGGGGG!!!!!!!



Thank You,
Mike

View Replies !    View Related
Holy Script
Hey all,

I am working to make a Class that predict the further..

I only got here:

Class Nostradamus
{
function Nostradamus(){

trace(this)
}

}


any help?

View Replies !    View Related
Holy Cow This Is A Sweet Technique
Does anyone know how to do this naviagtion technique. The links drop down smoothly. How is that done?

http://www.valentinassecret.com/main/main_low.html

View Replies !    View Related
Holy Newbie Question
http://www.wrecked.nu/

I'm working on a site where I want the portfolio to open in a window like the url listed above. I'm positive this is insanely easy, so if you could point me to a tutorial, I would be grateful!

View Replies !    View Related
Holy Cache Batman
Hi,

I have a problem and would want to know if anyone has a solution. A .swf i have on a page links to an .xml file for some data but it seems that IE and i assume Netscape are keeping the original xml document in the cache and so my updated files never get refrenced. It seems like this would be a common problem at one point in time. Any help even just a link to the same question elsewhere on the forums would be great.

Thanks

Marcus Wilson
//DrSchollz

View Replies !    View Related
Pause - The Holy Grail?
HELP,
I'm looking for the Holy Grail.

I have a fla that contains smaller MC's and audio files. Different MC's and audio files appear within the main timeline at various intervals.

My question is how do I control all these MC's and audio files with one pause and play button that resides on the main timeline?

Any help most appreciated.

Thanks

LEE

View Replies !    View Related
HOLY COW WHATS WRONG WITH MY Swf?
So I am making a game, and it works perfectly when I preview it in flash mx.

When I publish it and run it in a web browser, it slows down in performance. I do not know the exact Frames Per Second it is decreasing, but I can tell it does.

In flash mx the game is set at 60fps. Any idea why the performance decreases? Even when I publish it at low quality it looks like poo but it runs slowly in a few animations, and in an area where your score gets added up really quickly.

Like if you have 1000 points it adds like 2 at a time to make it look like your score is scrolling up like 2,4,6,8,10.........

Any ideas

View Replies !    View Related
The Holy Error #1009:
I have been just starting to jump into creating packages (actually the whole jump to AS3). I have to say I would be entertaining to watch. I have a package for a general movieclip button to gotoAndPlay an "up", "over", "out",. First things first I don't know if this is common practice or if there is a better way? Im always open.

My code is attached and the error I receive when I compile is

"TypeError: Error #1009: Cannot access a property or method of a null object reference.
at Button/frame1()"

Help would be most appreciated!
Thanks,
Kevin







Attach Code

package
{
import flash.display.MovieClip;
import flash.events.MouseEvent;


public class Button extends MovieClip
{
public function Button()
{
this.buttonMode = true;
this.addEventListener(MouseEvent.MOUSE_UP, buttonUp);
this.addEventListener(MouseEvent.MOUSE_OVER, buttonOver);
this.addEventListener(MouseEvent.MOUSE_OUT, buttonOut);

}
private function buttonUp(event:MouseEvent):void
{
this.gotoAndPlay("up");
}

private function buttonOver(event:MouseEvent):void
{
this.gotoAndPlay("over");
}

private function buttonOut(event:MouseEvent):void
{
this.gotoAndPlay("out");
}

}
}

View Replies !    View Related
For The Love Of All That Is Holy IE Cant Find .swf
Hey guys im about to lose my ever fragile mind if i cant get this thing to work.
Basically i have a flash web page with 2 movie clips inside and a button that goes something like this:

on (rollOver) {gotoAndPlay("over");
}
on (rollOut) {gotoAndPlay("out");
}
on (release) {
_root.mainmovie.boardcontent.loadMovie("board_mayh emfish.swf");
_root.mainmovie.closeswf.gotoAndPlay(2);
_parent._parent.boardmov._visible = false;
}

not too complicated as i have a blank movie clip called boardcontent that loads and external swf board_mayhemfish.swf now this works perfectly in flash when i test it but the moment i upload it the board_mayhemfish.swf cant be found. Now one would assume thats because i dont have the right path so ive tried directly putting where it resides which was:

_root.mainmovie.boardcontent.loadMovie(http://www.explicitmedia.com/clients...mayhemfish.swf);

now if i click on that direct link i just put in it takes me to the SWF fine but for some reason the flash file cant find it or doesnt load it. Anyway im out of ideas and any fresh ones would be great.

Thanks,
Chris

View Replies !    View Related
Holy Mother Of My Sanity
This is driving me absolutely crazy! I can't figure this out for the life of me!

I know it's a simple solution, but I can't find it to save my life! I'm going crazy here... I've been trying to solve it for hours!

Anyways, I have a very very very simple animation and I want to create a "shine" effect in the middle (frame 484) between the growing and the shrinking. So I created a mask and a shine gradient and the mask is supposed to mask the gradient to make it shine, but it doesn't work! I've tried many many things and can't seem to get it to work.

It works fine if I paint a new mask, but that's not the right shape. I don't understand why this one isn't working. I've tried breaking the symbols apart, but that doesn't work either. I've tried changing the line thickness... I've tried changing the line type... Nothing!

anyone, someone! Please. I don't understand why it's not working!

View Replies !    View Related
For The Love Of All That Is Holy IE Cant Find .swf
Hey guys im about to lose my ever fragile mind if i cant get this thing to work.
Basically i have a flash web page with 2 movie clips inside and a button that goes something like this:

on (rollOver) {gotoAndPlay("over");
}
on (rollOut) {gotoAndPlay("out");
}
on (release) {
_root.mainmovie.boardcontent.loadMovie("board_mayh emfish.swf");
_root.mainmovie.closeswf.gotoAndPlay(2);
_parent._parent.boardmov._visible = false;
}

not too complicated as i have a blank movie clip called boardcontent that loads and external swf board_mayhemfish.swf now this works perfectly in flash when i test it but the moment i upload it the board_mayhemfish.swf cant be found. Now one would assume thats because i dont have the right path so ive tried directly putting where it resides which was:

_root.mainmovie.boardcontent.loadMovie(http://www.explicitmedia.com/clients...mayhemfish.swf);

now if i click on that direct link i just put in it takes me to the SWF fine but for some reason the flash file cant find it or doesnt load it. Anyway im out of ideas and any fresh ones would be great.

Thanks,
Chris

View Replies !    View Related
Psychos, Gurus > Holy Grail Within
Well there will be the Holy grail (in flash terms) If you can tell me how to customise the Right-Click Menu.

I have heard of disabling the right-click menu. This is no good - I still want to be able to zoom in + out, change settings, print etc. Just disable play, back, forward, rewind....

It is not neccessary - but would really top off my project professionally

View Replies !    View Related
Holy Fadeing Text Batman
Hello all,

Just a simple question.... Can text be faded from left to right, or up to down etc. in flash MX???


Thanks

Andrew

View Replies !    View Related
Holy S**t Unexpected File Format On My FLA?
HELP HELP HELP!

I have no idea what happened, but I just tried to open an FLA I've been working on for a client, and I get a "Unexpected File Format" pop up. Just what the hell happened?

I'm using MX Studio Pro. Does anybody know how to fix this, maybe hex edit??? I put in a ton of hours on this thing, and now it's absolutely ruined...

View Replies !    View Related
Holy Projector File, Batman...
Hi friends.

Ok.....

I need to prepare a projector version of a website for a client, which she wants delivered on a CD-rom. The orginal site has a master.swf file referencing dozens of other .swf movies and preloaders. I really, really don't want to have to burn her a cd with a folder with one projector file and a huge list of other random .swf files all in the same folder, and I also really, really, really don't want to have to go in and build the site again, all self-contained in one single movie. Can I:

a) put all the files except the main projector file in a folder called data, then somehow tell the projector file to reference that sub-foler,

--==OR==--

b) can I somehow publish the whole kit-n-kaboodle as one single consolidated projector file?


Thanks so much for your time,

Meeg

View Replies !    View Related
[F8] Holy Invisible Feilds, Batman
Okay, this one's tricky.

I'm making what is essentially a presentation SWF that pulls data from an XML.

it's got some quirky animation here and there but ultimately it revolves around 6 symbols (or rather 6 instances of 1 symbol) each with a different name, and each with a field within it.

The field is set to trace a variable (local to the symbol) and the outside stage sets that variable (via instance.variable_name) from data provided to it from the XML.

Here's the tricky part. The field never displays the data. At first I thought it might not be getting it (I am using a sort of complicated method for putting the data there) but when I trace instance.field.text it outputs the correct data. I also thought it might have something to do with that layer not drawing properly (perhaps the nearby masking layer was affecting it) so I tried drawing a simple box on top of the field (same layer) and it drew just fine.

It's probably something to do with the actual symbol not updating it's draw or something complicated like that, if you have any idea how to get by this it'd be awesome = thanks

EDIT: I guess it's also worth pointing out that I've tried putting in initial text by hand (sans-action script) and it didn't show up either. I then went so far as to make ANOTHER dynamic text field, give it no trace, and just initial text, it didn't show up either... static, however, did show up

View Replies !    View Related
[MX Or 8]Holy Mackerel .flv Crashing Browser HELP
Wow. wow. wow.

Just found a major boo boo with my fla. when I went live with it. The swf. is of a little drive in movie theater that plays 3 different films as .flv's. It seems to work great, movies load in, play, you can stop them, start other movies playing in the middle, leave anytime you want. Perfect!

Until...

You leave the movie theater, and try to come back. [i.e. load and unload the drive-in.swf]

As soon as you come back and try to play a .flv, firefox says " If you wish Flash Player to contiue this scrip your computer may become unresponsive. Do you wish to abort this scrip? YES NO" if you choose yes, the time line starts playing over and over and over, kinda funny-- in a sickening way. If you choose No, it really does lock up...

Here is the link online: http://www.chewycafe.com/phaseII/
you can skip the intro with the link in the lower right and then choose "movies" at the prompt. start playing any movie, then go back to chewyville and then choose "movies" again at the promp and try to play another movie or the same one... careful, it will shut you down...

I will link the .fla in MX here in a second

I have scoured this board and the net for "unload .flv" but that does not seem to be the answer...

Ideas? Suggestions? THANKS!!!!!

View Replies !    View Related
Holy Cow... Full Browser Problem
ok im pretty sure, it's not supposed to look like this.

when I publish from flash, its great... but when I drop it in a browser.. this is what I get...

URL REMOVED ::: for now.


wow! What in the.....??

can anyone help?

View Replies !    View Related
Function Engine. My Personal Holy Grail
For those of you who are into actionscript as pure science

Here is gen one of my holy grail functionEngine.

This is the deal. I built a function engine that stores the function to execute, and the associated data. The problem is, I don't know what you are putting into the engine, it may be a BC.. it might not. So I have to give you a way to call your own destructor. If you want to call removeMovieClip then go ahead. Lets look at the code example:

_root.attachMovie("FunctionEngine","FOO", 600); (fudge 600.. fix later)

FOO.attachEngine();
FOO.AddEngineFunction("_root.hello","Ian",false,"_ root.Goodbye");
FOO.AddEngineFunction("_root.hello","Fred",false," _root.Goodbye");
FOO.StartEngine();
stop();



I stated earlier that I needed an engine.. so in the FLA u will see that bc. Here I attach the FunctionEngine to _root, and YOU specify that engines name (keep in mind you may want to run several engines at once). You do this with the line:

root.attachMovie("FunctionEngine","FOO", 600);

We know that attachMovie actually creates and instance of your library movie. In this case.. we call it FOO. (note that the engine mc on frame 1 is a stop())

next, I call the MC.prototype .attachEngine(). What we are doing is creating an array to store the function/data/engine-structure. We also need an index to point to the function we are currently executing.

Looking at the next line:
FOO.AddEngineFunction("_root.hello","Ian",false,"_ root.Goodbye");

Here we want to add a function to our list that we called "hello" and pass it the string "Ian". The next parameter false says, do not call a custom destructor. (If it were true, I would execute your destructor)

Last but not least, I call FOO.StartEngine(); which sets the engine in motion. The function will continue to execute as long as their are functions to execute.

Now, what's really gonna bake your noodle later on, is when you realize that if your function returns true.. then I know a condition which you have defined has been met. If it's false I assume you are not done yet and stay parked on your function and continue to execute it until you return me true

For instance, your function counts frames and you don't return true until say 50 frames has passed (like a pause function maybe?).

Anway... here it is for decipherin. I have tried to keep it clean.. but you the engine fans have to tell me what you think.

http://www.nebulouscore.com/examples/funcengine.fla

Peace!!!!!!


ps. This is HOT off the press so I expect some revisions... but I am always open to discussion... unless of course you piss me off .lol.

View Replies !    View Related
Oh Crap
i need a little help on something. i have a darts game, and im having trouble with the ammo. so i have a background picture and all that good stuff, and then i have a layer for the target. the target moves, for example it gets bigger and smaller with a tween. at the end of the last frame of the tween, i have a gotoandplay to go to the start of the tween. it loops till the player hits the target or runs out of ammo. now i have a layer for the ammo, which is dynamic text and blah blah blah, and on the first frame of the tween i have the action
ammo="3"
when the player throws the dart, the ammo goes down 1. but heres the problem:
if i shoot and miss, the ammo goes to 2. but then once the tween is over, (the tween is less than a second)the ammo goes back to 3. how do i get it to stay where it was at? thanks.

View Replies !    View Related
Crap For Crap - Help
Okay, quick question for the enlightened.

I am making a sig for our gaming forums, and I wanted to know how to do the following:

- Make Sig in Flash.
- Import Music into Sig
- On cursour rollover, music will play and when cursor moves off sig, music will stop.

A most hearty thank you will be given to the person who can help me out with this.

Danke!

View Replies !    View Related
Why Does My FLV Look Like Crap...
I'm completely boggled, stumped, distraught, over this problem I'm having with my FLV playback.
Let me explain...
This image is of my FLV looking very nice all by itself in a .swf file...


Here is what that same swf containing the FLV file looks like when called up by another .swf within the site itself....


Does anyone have any idea why this would happen?

View Replies !    View Related
OMG This Is Crap
http://www.freewebs.com/h2ostudio/ISA/Indexa.html

A couple days ago everything was running so smooth.

Today I visited my site again and everything was so slow. I mean the background and stuff doesnt run as smooth and fast as I planned. I already included a preloader but this doesnt seem to work.

What is wrong? Does this happen on you guys' computer too? Could this be an actionscript error?

View Replies !    View Related
Why Does My FLV Look Like Crap...
I'm completely boggled, stumped, distraught, over this problem I'm having with my FLV playback.
Let me explain...
This image is of my FLV looking very nice all by itself in a .swf file...


Here is what that same swf containing the FLV file looks like when called up by another .swf within the site itself....


Does anyone have any idea why this would happen?

View Replies !    View Related
Need Some More Help - Level Crap... =)
ok...here's my dilema...i grabbed one of the source files off here for a navigational menu...and i am playing with it trying to understand the actionscript and stuff...but anyhoo...what i am trying to do..is on a rollover...i am trying to get it to show a movie that is not visible...and have it also be a button...what the error im getting is that the target cannot be found...base="level0" or whatever...and i dont know if its possible...but can you figure out what levels things are on? here's the script code if it helps any...

On (Roll Over)
Set Variable: "/:menu" = 3
Go to and Play (menu_action, 1)
Begin Tell Target ("/menu_positioning/custpres")
Go to and Play (1)
End Tell Target
Set Property ("/menu_positioning/custpres", Visibility) = 1
End On
On (Roll Out)
Set Property ("/menu_positioning/custpres", Visibility) = 0
Go to and Stop (menu_positioning, "standby")
End On
On (Release)
Get URL ("whatever.htm", window="central")
End On

then at the beginning of the scene i have loading the setproperty as visible = 0... so any help would be greatly appreciated...

View Replies !    View Related
Preloader Crap
I have a simple preloader on my site http://www.moopooshoo.tk/. It uses the if frame is loaded tag. I have it set to check if
the last frame, frame # 40 is loaded, then to goto start
and play. It works, but after the load screen has dissapeared, and my movie is starting, some of my pictures havent appeared on my picture page, and at the bottom, it still says opening http://www.moopooshoo.tk. what am i doing wrong??!?!?!?!?

View Replies !    View Related
Components..they Look Crap
how can i jazz them up so they look like the rest of my site, i'm most concerned about how to change the text colour and font so that is what i really want to know

hope someone can help, thanks..

View Replies !    View Related
Crap Code
At the moment i am getting by witha make-shift counter that when the playhead reaches fram 24, (with the frame rate set at 24) add 1 to the count......therefore when the count reaches 8, it will loadin a new swf shuffeled from an array....pretty dirty code!

I used it as a make-do till i found some neater code.

View Replies !    View Related
My Text Looks Like Crap
hey folks.

ok, i've got a company logo and some contact information in my flash document, both rather small in size. i tried creating jpegs in photoplop and importing them and placing them on the proper layer, etc, but they just don't look sharp--especially when the player window is resized (this is a projector, not a web site). so i decided to re-do the logo in flash and re-do the text for the contact info in flash too (go vector!!). the font is avante garde, 12pt and smaller. it looks aliased and crappy and blocky. perhaps i don't have the font installed correctly on my computer? is avante garde one of those fonts that flash doesn't like to display nice'n'smoothly? can flash just not display really small font sizes clearly? i know it's hard to comment without seeing a sample--so i will try to fashion one and post it here ASAP, but in the meantime, any insights would be greaty appreciated. thanks.

--andy

View Replies !    View Related
AHH Crap I Forgot
I need help making an object pulse .. i cant figure out.. anyone out there please help ...
thanks
Peter Hubner

View Replies !    View Related
Mp3 Sounds Like Crap
hey,

is there some special way to import your mp3's into a flash movie so they dont sound all garbled, and crappy?? should it be in .wav format when i put it in or what am i doing wrong?? it seems everyones else music is nice and crisp, like on designer sites. what am i doing wrong. im also making the sound play on event if that matters.

-jake

View Replies !    View Related
My Website Is Crap
Hi,

I am the webmaster for Safe Rides . Our site sucks. Enough said. Can anyone help me out, or have a better flash intro I can use? I am very new to flash stuff and have been using Microsoft Frontpage Well thanks, email me. David83731@aol.com

Dave

View Replies !    View Related
Button/mc/crap
Hi
ive got a problem in my movie i have a few button /Smart clip and i have defined appropriate parameters for them such as frame label and name but when i try to put gotoandplay (framelabel) its names not important, it doesnt go and the button/smartclips hit area becomes larger.
do i have to define another parameter in the SC such on release play(frame) or something.

it all works fine untill i have to click or
can i put this directly attached to the SC
on (rollOver) {
_root.gotoAndPlay(frameLabel);
}

on (release) {
_root.gotoAndPlay(frameLabel);
}



If you can help would be nice
sorry if this makes no sense .

View Replies !    View Related
I'm Crap At Flash. Help Me. Please. I Beg Of You.
Right, okay... I dunno why I want to know this, but if I were to draw a simple dot in the flash, what steps would I have to take to be able to make it move in the direction of the keyboard arrow which is pressed. I'm guessing it's gonna be a movie clip inside a button with loads of weird actions? How is it done?
Cheers.

By the way, summats I made that you can view for being such a nice viewer of my problem

http://blindsound.free-host.com/Stick.html

View Replies !    View Related
Bitmap CRAP
So I have built a virtual golf course tour, and I built a frame for it using a *.png, and even though I turn Image compression off, it is still chopping the frame. Please take a look, http://www.qozmiq.com/flashkit.html# and notice the black frame the has a inner curve to it. As this was a *.png, the inside of the frame was transparent, thus making it a frame. The inner curve of such, on the left near the navagation, is getting butchered. When I look at it in Flash, the curve is perfect. I turn off Compression, it still appears. I made the frame an graphic symbol, and a movie clip, still producting the jagged inner edge...Any ideas? I appreciate any time anyone can give to this...

View Replies !    View Related
>_< Loadmovie Crap
ok so i know little to nothing in actionscripting (gotoandplay ^_^ )

anyways Im making a website with a interactive menu, lets say when you click the Fun button(this is inside a movie), I want it to play a little animation and when it gets to a certain frame I want it to load another swf file which would take you to the fun page.... get it? no ? me either ¬_¬ heh...anyways....is that possible? cause i cant figure it out. plz help thanks....

View Replies !    View Related
Dynamic Crap.
Ok. I have posted 15 thousand times, but still have not come to a conclusion.
I have a website in flash. I have MySQL db. I want to have form, that submits data using PHP, to the DB and is opened in an XML file and read by flash.

I know i'm annoying.

-Aaron

View Replies !    View Related
My Font Looks Crap...
Oke, I'm not a designer. I have a textfield on stage using the Arial font. The font is embedded as a bitmap font. When I publish the swf, the font has all weird spacings (for example the the spacing between the two m's in the first word). See example attached.

Is there just something wrong the Arial font or an I missing something?

Thanks in advance!

View Replies !    View Related
Why Is FLV Video Crap?`
I am forced to use Flash because of client stipulations. I used Sorenson Sueeze to compress a QT animation codec movie. The result is appalling. On the assumption that I am doing something wrong, what is the procedure to obtain Flash video (.flv file) which is the same quality as QuickTime?

I can't attach an image to demonstrate this, but see the FLV file and note the (lousy) title text at:

http://www.djfilms.ca/Bruno/NoisyHeli.html

Any assistance gratefully received.

View Replies !    View Related
Flash Looks Like Crap
I republished the swf as stated to me in another section and it looked like crap. The file looks like a layer is missing or something, I started from scratch(as in how it was origianlly in the template). Any quick tips on how to edit flash templates? Edit as far as changint the text on buttons and in the "logo panel" area.
[Started another topic because it's more of a design question now]

View Replies !    View Related
PNG Files Look Like Crap?
Hey, i have been working on flash for awhile, but i just started using png files with alpha channels, and everytime i publish them in a flash file they get a jagged pixel looking effect if viewed on particular machines, the site i am working on is not near done but check (www.troyblank.com) and look at the orange, my tube monitor with 256mb graphic card makes it look smooth without any jaggedness, the plasma screen with a close to identical 256mb card at work makes it look slightly jagged, i have no idea what is the cause of this, has anyone else experienced this?

View Replies !    View Related
Crap.. Stuck Again...
I kinda did it...

www.chriskalani.com/yes

That is a test... but it is dumb how it like, disappears... then loads.
GAY!

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