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








Huge Problem


I finally got my logo complete and I was trying to load it into FrontPage. I followed all the directions but couldn't get it to load up. I noticed the tutorial said to be using a htm. page so I changed index.html to index.htm and tried loading the advanced html again. It finally showed up in my source code and then I previewed it in browser, which saves the page. The movie didn't load plus it screwed up the alignment to my top border. So to try and fix the problem I went back and deleted the movie out of the source codeing and previewed the page again, which saved it again. It loaded the exact same way as if I had never deleted it but I deleted the entire code!! Could someone please tell me how to delete the movie out of FrontPage and how to load it right??




FlashKit > Flash Help > Flash MX
Posted on: 08-28-2002, 03:23 AM


View Complete Forum Thread with Replies

Sponsored Links:

Zooming Vector Images To Huge Huge Sizes
Hi guys,
Im working on an intro project that requires me to scale a part of a (vector) image fullscreen. For example, there is a scene of a person on a couch (full body pose), so the eye is really small. The next scene/image is a speck on that person's eye.

My solution so far is to use tweens. I have an image at a hundred percent and scale it to as much as 100000%(yes, i do it manually, hope we had a bigger stage than 2880x2880 px). To get rid of useless processing overhead, i converted the entire tween to key frames and cropped of all parts that fall offstage.

BTW, this presentation runs at fullscreen (800x600). My question now is there a way to zoom into something using tweens that would emulate the www.sofake.com effect? wherein the zooming starts slow, then runs constant, then finally slows down at the end? a combination of easing ins and outs on a single zoom sequence with 3 or 4 keyframes? any help would be much appreciated. thanks.

sorry no file to display, private stuff for company.

Niong

View Replies !    View Related
Huge File = Huge Mess
I'm very new and suck at this. I realize my first problem is my file is too big (500k +)! I can't compress the wav file I'm using anymore! It's now a 364k .mp3 file.

That being said. My Flash movie plays fine and in sync within the Flash toolkit, but on the web or even while previewing the web page while it's still local is horrible. It's out of sync, loops over itself. It starts to lag badly and misses symbols. Just a mess. Any help would be appreciated.

If you need, I can send you the url, I don't really want a lot of traffic

View Replies !    View Related
HUGE HUGE Problem
I have a program that runs in cycles, every 10 seconds it executes a set of code.

However, for some reason, with a large dataset, the onEnterFrame handler stops executing after 20 iterations.


Code:
SOM.prototype.onEnterFrame = function() {
// Check to see the last time data was gathered
trace(getTimer() - this.starttime);
if (this.initialized) {


if ((getTimer() - this.starttime) > 10000)
{
trace("timer" + getTimer());
trace("call continue");
this.continueSOM();
this.starttime = getTimer();
updateAfterEvent();
}
}
else { trace("uninitialized"); }
// If time elapsed, get more!
// Run the "continue" and broadcast new data
}


This is REALLY a bad problem because I have an exhibit tomorrow. When I load this program with a smaller dataset, it runs fine.

If its necessary, I can post the code.

If anyone can help I'd be really appreciative. I'm running Flash MX on OSX, haven't tried it on a PC yet.

Ethan

View Replies !    View Related
IS THIS A HUGE BUG IN MX Or What?
Hi folks,

can anyone help me figure this one out? I've tried to figure this one out for 3 weeks now and I've come to the conlusion that there's a HUGE bug in Flash MX. please tell me if I'm wrong (I hope I am)

On the first frame of scene 2 of my main timeline I've got the following code:

_root.onEnterFrame = function() {

if (!mvplaying && (mvscrn._currentframe > 1) &&
(mvscrn._currentframe < mvscrn._totalframes)) {
//if the playhead is between the first
//and last frames of the MC we know its playing
mvplaying = true;
}

// script to advance to nextframe if video is done
else if (mvplaying && (mvscrn._currentframe ==
mvscrn._totalframes)) {
// video has finished playing;
trace(mvplaying);
mvplaying=false;

// -- code snipped -- //

}
};

Basically this code checks if the MC mvscrn has stopped playing and if yes takes some action.
Notice in the second if statement the condition is (mvplaying && ... ) The condition should only pass and the block should only execute if mvplaying is _true_, as well as the second part of the condition. _BUT_ the first time this function is called (in the following frame - frame 2 of scene 2) the condition passes even though mvplaying is _false_!!!!! I know this cause I'm tracing mvplaying in the block and it says "false"!!!! (mvplaying is initialized to false on the first frame of the movie, many frames before this function is first called).
This does not happen when the function is called when the movie enters a frame subsequently.
How can this be!!!!!

Please tell me I'm doing something wrong and this is not a bug... or that somewhere in the documentation it says that event handlers are unstable the first time they execute.
Thanks.

View Replies !    View Related
How Do I Get Rid Of This Huge Gap ?
Hi!
I've Been Working On My Flash Animation
For Some Time Now,
But Recently I've Noticed This Huge
Gap Space Around My Animation!
What Do I do To Get Rid Of This Space !?

To Check Out What I Mean,
Click Here:
http://www.geocities.com/ramiko2k/ecotb_color.swf

NOTE:If For Some Stupid Reason,
This Flash Animation Page Does'nt
Show Up Here, Then Please Email Me!
I'll Give You the Link MySelf!!

Ramiko2k
Ramiko@AOL.Com

4:22
Feb.28,2003

View Replies !    View Related
HUGE Thanks To All
I would just like to thank everyone who takes the time to respond to peoples' questions/problems. This forum has been an invaluabe resource in learning how to program and use flash. Every time I have a problem, within 10 minutes there is at least 1 answer, its amazing. I don't know if we often enough thank everyone else for just taking few moments to answer each other's questions. So, thanks for making this forum a great and friendly place to learn about flash.

View Replies !    View Related
Any Help Here Would Be A HUGE HELP
Hi everyone,

I've searched high and low on how to do this but to NO avail.

I'm loading external pics into flash for a friend of mine, and I'm using this code. Here's my problem: with this, every time I click on the next picture, the first one disappears and the screen goes blank until the second pic is loaded.

Is there any way around this?? I've heard of a "listener" function...but I don't know how to incorporate that into this?

imgbtn1.onRelease = function() {
infoField._visible = true;
startLoading("picture1.jpg");
};
imgbtn2.onRelease = function() {
infoField._visible = true;
startLoading("picture2.jpg");
};
imgbtn3.onRelease = function() {
infoField._visible = true;
startLoading("picture3.jpg");
};
function startLoading(whichImage) {
loadMovie(whichImage, "imageLoader");
_root.onEnterFrame = function() {
infoLoaded = imageLoader.getBytesLoaded();
infoTotal = imageLoader.getBytesTotal();
percentage = Math.floor(infoLoaded/infoTotal*100);
infoField.text = percentage+"%";
if (percentage>=100) {
delete this.onEnterFrame;
infoField._visible = false;
}
};
}

ANy direction would be great help!

View Replies !    View Related
Need Huge Help
I need some help with adding these 2 things to plasma screens that i did for my job. please email me if you can help!


1. Make the .exe automatically go to full screen playback mode when launched instead of opening inside a flash window and then manually selecting playback full screen. That way if a Rep on show site accidentally stops the program, they don’t have to do anything but double click on the .exe and the file will launch full screen.

2. To exit the program please remove escape and add <cntrl> <shft> <Q>. Again, if someone bumps the keyboard, we don’t want the flash to exit.

View Replies !    View Related
Huge FLA
Is there anyway flash can detect from the library elements that are not used in the scene and delete them automatically or I have to do manually??

View Replies !    View Related
Huge FLA
Is there anyway flash can detect from the library elements that are not used in the scene and delete them automatically or I have to do manually??

View Replies !    View Related
Huge I.E. Bug?
Hello,

I have noticed that with IE 5 and up there seems to be a problem loading parts of a flash document that are not initially in the screen. For example, if you are at a resolution, say 1024x768, and looking at my website (http://www.vitalimpact.org/indexdetect.php) sometimes the area of the flash document that stretches below the screen area is cut off. Has anyone else experienced this? Possible remedy?

View Replies !    View Related
Huge Question
I'm trying to figure out how to display the same thing on the stage twice. I have created a flash movie that will displayed on three screens at once. I have set the stage up, but my menu that will be displayed on the third screen needs to display on the stage in another place at the same time. Actually a duplicate of the menu and buttons. Can someone please help me out. I am running out of time.

In need to display what happens on the menu in two places at once.

thank you.
-rasheid

View Replies !    View Related
Huge Amonuts Of SFX?
any1 know where i can find alot of SFX? I'm doing a presentation and I need some fast. like dino roars, spanish sayings, kinda like cartoon SFX.

View Replies !    View Related
A Huge File
i have a movie that is huge...because of a sound i imported. is there anyway i can have the sound not take up as much space?

View Replies !    View Related
First Frame Is Huge
I've benn having this problem lately. It's a strange one. The first frame of my flash movie, I can see this upon testing the movie, is huge in size. Now this happens even if the content on the first frame is small. FOr example, I have about 10kb worth of content on my first frame, but when I test the movie it shows I have 64kb on that very same frame. Does anyone have any ideas?
Thanks.


Eugene

View Replies !    View Related
Huge First Frame
While testing my movie, I came across a first frame of 100 kb. This is a little too much to load a website, so I put some things on the second frame and set up a preloader. But even now the first frame is still 60kb and it remains so even if there is nothing on the first frame ...
Is this normal?

View Replies !    View Related
Big/Huge Sites....?
Hey,

I just saw a post about someones site is about 900+kb... and some dude called him crazy, cause his site is only 400kb...

Well mine is already 400+kb and I have yet to add any content into it, and I intend to have a lot of content... like lots...
I have seen big flash sites before, mainly used for movies, stories done in flash.. and they seemed to load fine, took a while longer, but loaded fine.

How smart is this, my site is only 800x600, intended to load up in a chromeless window.

I know you can make the content area as a html page, and just load it that way to save size, and just do the navigation/banner in flash... but I wanted to do it this way.. Probably make a low abndwith version that way with the html one.... anyways, is it worth it?

Ian

View Replies !    View Related
Huge Favor
If I were to give someone text, would they make me a scrollpane. I have been working and researching on scrolling for weeks. I cant do it! All I want is the text in a box and the vertical scrollbar! Please.
Thanks.

View Replies !    View Related
Huge Favor
If I were to give someone text, would they make me a scrollpane. I have been working and researching on scrolling for weeks. I cant do it! All I want is the text in a box and the vertical scrollbar! Or you could just post a tect scrollbar and tell me how to add the text to it if thats easier.
Please.
Thanks.

View Replies !    View Related
Movie Is Huge
My flash intro is huge but I am new and dont know how to optimize it. I tested the scene and debuged it but I dont know how to make those frames smaller that say they are too big. My movie takes about six minutes to load on 56K..How much can I get it down to.

If you want to see it the URL is www.ineptclothing.com

Thanks

View Replies !    View Related
Help HUGE Swf Files
I need advice. My .swf files are huge. I'm using 11 photos in .png format. Each photo fades in-then out over a 2sec period. 24 frames per second, no sound. Please post if you need more info. Many thanks to whoever can help.

mike

View Replies !    View Related
Huge First Frame
I can't figure out why my first frame is so large. there is nothing there. i left the first two blank so that i can use a preloader but since the 75% of the file is in the first frame a preloader is out of the option. Can anyone help me? I am using a lot of differnt clip in the same movie but only 10 pictures. and the total file size is 228Kb. Please help this is for a new job.

View Replies !    View Related
HUGE: Web Design. How To?
I was looking at a website - HUGE - and one of their website deisgns they have done really attracted me and even though its a still shot, it looks like the same sort of idea as I am looking to learn how to do. A copy of the screen shot is below:

http://www.geocities.com/coffeecupdesign/huge.jpg

and this is the website

http://www.normandyventures.com/html/index.html

I dont like the smashed look of the menu but i like the way you roll over and the sub categorys come up and then goes green over the individual ones. Can anyone help me out as to how I can create something that looks like that? In details?

I know its been done in flash but im not very experienced with flash - i can only create simple movies.

View Replies !    View Related
Huge File
Okay I have a question...Why is my Fla file like 44megs big? Because when I publish the file it ends up being 140kb aprox. The numbers just don't really add together.

View Replies !    View Related
Huge Swf File
I have on my hard drive a TV commercial in the .swf format that I got off the internet. But it is huge in size... 35 mb. Similar commericals I've seen are around 2 to 3 mb's. I tried converting it to a .avi file and it went from 35 mb to 85 mb... accccccccck! It plays fine in either format but why it is so large. I don't see anything different about it from the other commericals. Does anybody know a way to convert this to reasonable file size without a major loss in quality.

Thanks,

Wendell

View Replies !    View Related
Huge .FLA File
Okay why is my .fla file about 44 megs? Because that is HUGE. And I have about 600 frames in there. But yah. I doubt that's that much :-/ So..Yah I've tried to compress etc. NOTHIN WORKS WTF? HELP ME!!!!!!!

View Replies !    View Related
Huge Collage. Help?
I have to create a huge collage with about two-hundred images. The images will animate themselves onto the screen, starting big and getting small untill the whole screen is covered with these images.

I'm dreading doing each animation by hand. Does anyone know of a tool that can help me or a script that might accomplish this?

Thanks!

View Replies !    View Related
Since When Is Text So HUGE?
I've done a simple interface to load some values from a database in some dynamic text fields; it is a kind of news viewer to display date, title and body of max 4 news. works like a charm btw. the problem is, the .swf is gigantic! Man, it's a white movie of 400 x 300 px with some dyn tex boxes and it's about 350 kb!!!! Is it normal that dyn fields weight so much or I'm doin something VERY wrong in the exportation of the movie?!

View Replies !    View Related
Center Huge .swf
Hi all,
How do make an HTML file that makes my 1600x1200 pixels flash document always be centered, even when not everything is on the screen? I mean that it would bleed for all the borders equally, instead of aligning up and left.
Thank you!
Amir.

View Replies !    View Related
HeLP My Site Is Too Huge :(
My website is finally finished. And I tried to make the images as small as possible, but the problem is there are so many of them and my site is huge.

I can remeber the excat size but its about 15720 mg

Love The Void

I dont know a lot about how big sizes of websites should be.. but I do know it takes most people about 2 and a half minutes to get into my site.


I have no idea about how I would go about making it smaller or how to fix the problem.. could someone give me some advice or point me in the direction of some good tutorials?

Mnay thanks

View Replies !    View Related
Hi, HUGE Noob Here.
Hello, my names Teddy. and i've been toying around with flash 5 after ive recently purchased it. and i've tried to follow some tutorials on Game creation stuff like that. but i dont understand NONE of it.

I was wonderng how do you make your character have a 'stance position' while idle then once you press 'right' or 'left' he walks right and left using the animation i drew for it. i just dont know how to assign cetain MC's with Keys... so Anyway i can get some help??

View Replies !    View Related
Huge Fla File
Hi,

I wonder if anyone can help. I've created a number of flash files which include FLV video clips. Some of the clips are much longer and bigger in file size than others, but I have one Flash file who's video clip is very short and small in file size but the actual .fla file is huge (about 160mb) - much bigger than the ones with larger video clips in.

I've checked that there isn't anything else in the library which might be making the file bigger, so I can't work out why it is!

Any ideas of what else I can try??

Thanks very much
Rachel

View Replies !    View Related
Centering A Huge Swf
I have a very wide swf that I created -- it is 2880px wide.

When it's opened in a brower, I want the browser to center the SWF - how do i do that?
I tried this:
import flash.display.BitmapData;

bk._x = Stage.width / 2;

but it didnt work.

Please help!
thanks

View Replies !    View Related
XML Huge Problem
Please help... I loaded a xml normally (xml=new XML(); xml.load(location) and then said (trace(xml.toString()) and it worked just fine.. then i decided to add another childnode in my xml document.. done.. and when i tested the movie in flash again.. it did not work.. why?? it showed exactly the same string as before..

View Replies !    View Related
OMG Huge Problem Plz Help
Ok guys...i have my swf & 30 images in one folder and when i insert flash movie into frontpage and test it ..the pictures won't load ..it doesn't work at all.


anyone?

thank you.

View Replies !    View Related
Huge Images - How Do They Do That?
I'm making a fullscreen flash portfolio. The thing is: I want to load my images in the full width of the screen, kinda like www.sksantos.com does. How do they do that? With the ability to resize your window - and the images following and so on. The text does not seem to resize either.

Please forgive my terrible english. I'll be grateful for any answer.

peace. fro

View Replies !    View Related
Huge Problem...
http://www.eterna-soft.com/

There's my site. As you can see, I have a nice little sliding button at the top. The problem is that when you click the sliding button, it "clicks" into place, instead of sliding over to where it's trying to go. Each of my main pages are separated by scenes...there's a scene for each tab. Does anyone know how I could make my button wait a second after being clicked on before heading to the next scene? Is there an idle function or something?
eg:

on(press)
{
idle(2 seconds);
gotoAndStop("next scene", 1);
}

I just need the button to wait a second before continuing to the next scene, so that the button can finish sliding itself over to where it's supposed to go. Having the button snapping into place the way it is now looks really....you know....bad. > <

Someone help? Please? X3
Thanks guys.

View Replies !    View Related
XML Huge Problem
Please help... I loaded a xml normally (xml=new XML(); xml.load(location) and then said (trace(xml.toString()) and it worked just fine.. then i decided to add another childnode in my xml document.. done.. and when i tested the movie in flash again.. it did not work.. why?? it showed exactly the same string as before..

View Replies !    View Related
Imported Avi HUGE
I want to import a lot of my company's AVI video's into Flash and use that on our website. The problem I am running into it the load time. Even the pre-loader I am using takes forever. The video is about 5-10 minutes long and is around 3175 frames. I have tried playing with the settings while importing them with no luck. Any suggestions, Ideas on how to get these to load faster and still play correctly with good quality?

Thanks,

View Replies !    View Related
Huge Files
How do you people go about working with long files that dont fit your stage?

View Replies !    View Related
Huge LoadClip BUG...
Last edited by RealVedgie : 2005-02-03 at 13:42.
























Hi I found a huge MovieClipLoader bug... I'm posting it here so you can test it and see if it's doing the same thing as me...

Click here to download the zip file...
*Changed the link, it didn't work...

Remove the comments to activate the 4 lines of code and you'll see that Flash will crash. It will crash if you test it by pressing CTRL+ENTER or by publishing it and viewing it through INTERNET EXPLORER LOCALLY.

CTRL+ENTER: It works with 3 or less loadClips.
IE LOCALLY: It only works with 2 or less loadClips.

If we remove every functions on the movieClipLoader object, it seems to work everytime (well I tested to 8 loadClips...)

Viewing it on the web or locally using FIREFOX works without any problem.

That's really weird... Please test this and if it is indeed a bug then somebody could send it to Macromedia.

Thanks.

View Replies !    View Related
Having Huge Trouble With This Script^
on (release, keyPress "<Enter>") {
if (username eq "") {
gotoAndPlay ("Opening", 2);
} else {
gotoAndStop ("House", 1);
}
}
Ok basicly I want my button to test a text feild and if that text feild (username) does not have something in it then I say go to frame 2 (on frame 2 I have a message that says you need to enter your name). Then it says if they do have something in it proceed to the next scene. BUT IT DOESNT WORK!!! instead it just goes to frame 2 on opening scene on either condition.

Bottom Line: What could I do differently to acheive my goal?

Please Help,
Ryan

View Replies !    View Related
Spliting An HUGE Array?
hello,

I have an array that will have close to 1000 records in it. I want to split that array into the first 20 vars. But every time an user pushs a down button (I have created) it would replace the 20 vars with the next 20 vars in the array.

Any ideas???


Thanks

View Replies !    View Related
Help Me With Huge Sound Problem
Hi,
Can you help!
Heres what I've got and what i want to do.
I have a clip that has a looping event sound object, and i want to load another swf over the top in another level with a new sound at the same time either pausing or setting the volume in the root clip to 0. I need the root sound to be in the parent flick as there is a preloader. The sound in the level over the top is best streamed as it is a song sample. I have tried using:

music1 = new Sound(music);
music1.setVolume(50);

And then setting a new sound object in the overlayed swf, but whatever I try i cant get the original looping sound to play!

This is frustrating!

Thanks for your help in advance,
Cliff

View Replies !    View Related
Help My Flash Site Is Huge
It is taking people forever to get to my site. (As in: it took one computer 45 sec. just to get 10% of the site preloaded!) I already know the problem...

My Flash site is 2MB. I know you're asking how on earth I got a Flash site to be that big. I had to put a quicktime movie in the site (I'm using Flash 5), which I did by importing every frame as individual .jpg's. There are 340 .jpg's just for that part of the site alone. The .fla file is 21 MB and the .swf is 2.1MB how on earth can I get the file size down? Is there a way to compress the site better?

I'm at a loss and don't want people clicking out of our site, just because it takes so long to load!

Please help.

View Replies !    View Related
Huge New Project: All Invited To Help.
I need a few good men... And women.

I'm planning a huge interactive flash chat program.

I want to make it customizable to each host. To where the faces are all the same but the bodies go with the website currently hosting it.

Example: Say, Nike uses the software (No installation required)and each chatter gets to pick their gender, Face, Hair, Colors, shoes, and pants/shorts/skirts/dress. But each shirt would have the hosting websites logo, or whatever Nike wanted in their shirt and/or shirts.

Now, I know that sounds confusing.. but I need some good programers/flashers to help me with the project. By the way: The Project name from here on out will be ::Mobius Chat:: The program will be free to all and I will do the customizing for each site/person that wants it customized. The default shirt will be a Mobius Shirt and will have the logo ((M)) or something as the such on it.

So anyone think they have the guts for this project?

The Project E-Mail is: MobiusTeam@Hotmail.com

View Replies !    View Related
Huge File Size. What Do I Do?
Hey,
Ive got a huge .fla (and .swf) file and i dont know how to make it smaller. ive got some pictures in it. i dont have any .wav or .mp3 or anything so what could i do?

View Replies !    View Related
Need Audio Help--my Movie Is HUGE
My movie is 3.2MB! ACK!

That is about the size of the MP3 I imported and used in it. The movie is designed to be a little music video of sorts. I need to shrink that MP3 down a LOT. Its a song, with verses and choruses and stuff (not a repetitive techno thing) so I cant crop it and loop it. I need to compress it. Is there ANY WAY to compress an MP3 so that my file size is more reasonable, but the audio quality isn't sacrificed too much?

Thanks!

View Replies !    View Related
Can MX Help Me With This Huge Sound File?
I need some help my sound file is too fat. Here is the situtation...

I am doing a large flash demo for work (not a flash developer by trade). The flash consist of 12 scenes with a combine 1 mb file size with background music looping in all scenes with scene specific voice overs sounds. At this time I have background sound of 2.8mb mp3 (I probably can cut it down to another 1.6mb) and voice overs of 2.4mb mp3 ( I can probably cut to 2.2mb).

I have tried all kind of sound compression tools and these sound files wont get any smaller. Is there a way to compress the files further?

My key concerns right now are:

1) with sound files this large how can I make sure that a viewer with a dial-up can view the flash without waiting a 1 hour for it

2) will these large files sounds mess up the syncing of voiceovers to animation in the Flash

I was thinking about preloader (I really don't see a way around it) but is there any other ways of compressing the mp3 files in Flash. If i can get the total file size to 3-4mb I think it may work.

Any suggestions will be Great

View Replies !    View Related
::: Huge Gaps Between Text :::
ok on my site i am calling in a txt file for the latest news part of my site... which you will see at www.popcop.co.uk/home.htm

the txt file is here www.popcop.co.uk/text.txt

Now..... recently there has been these huge gaps appearing between the txt, which you will see, but ive never had this problem before.

What do u think is the problem?

View Replies !    View Related
Loading A Huge Swf File?
Hi all
I am doing series of animation..
intro.swf 3,568 KB
topic1.swf 3,099 KB
topic2.swf 4,599 KB

and so on...

My problem.
When intro.swf is finished it loads topic1.swf on targetclip, everythiing works except it takes forever to load....the presentation should run off the cd-rom.

what I did?
I tried with adding empty keyframes on topic.swf
I build preloader on topic.swf...though it`s running off the cd-rom.

both method failed!
Could someone please reccomend a better solution.

Many thanks and appericiate a lot!
PilotX

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