Flashing , Wont Play? What The?
Hi, I am having a problem with my site not loading anymore. I'm not sure if this is because of a new flash player or what, but i have used this code for sometime now and have never touched it and it worked fine. Basically i have a mainpage which preloads the navigation buttons(a seperate swf) onto a new level, the preloader bar still works but once its loaded it plays for a couple of frames and stops and flashes?? What is going on? Here is the code i have for the preloader on frame one: total_bytes = _root.getBytesTotal(); loaded_bytes = _root.getBytesLoaded(); percent_done = int((loaded_bytes/total_bytes)*100); percentage = int((loaded_bytes/total_bytes)*100)+"%"; bar.gotoAndStop(percent_done); ifFrameLoaded ("main", 97) { gotoAndPlay("main", 3); } frame two: gotoAndPlay(1);
Please help, this is drivin me crazy
FlashKit > Flash Help > Flash ActionScript
Posted on: 11-02-2003, 12:16 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Flashing CD
Hello Flash Friends,
If you make a CD Rom entirely from Flash. Is it easy to make the CD Cross Platform Compatable?
Thanks.
Flashing Example. Help
ok most know when you bought or have a trial version of flash mx in the samples folder theres one of the sample that i want to use that effect in my picture scroller i made in flash but i dont know to add it to my movies. now the effect i want is in the load_images fla and the .swf. now when you play the swf file and you press enter how it does that effect, now how do i do add effect to my movie. also i want it to constantly blink in and out so can you flash experts point me in the right direction.
New To Flashing... Please Help
Hi,
I'm fairly new to the whole computer website design thing and need some help... I have just got a copy of Swishmax with which I want to start getting into flash design as I think it is fun. Dont know much though!
Where's the best place to go and get help??? I want to be able to make my own cool websites and will need some guidance along the way. Will anyone help me???
Cheers,
Pete
Flashing
Hi,
Theres thsi site which i think is really coolwww.rtuk.co.uk anyway when you go to it and the opening page opens, click anyway to go into the main site anyway long story short. Watch when it loads the top bit where the picture is flashs.
Anyway I was wondering how do get it flash like this. Check it out and see if you know what i mean
Appreciate any help peeps
Cheers
Andy
Flashing Pic
I see some sites with a picture where you click on it there is a flashing effect and links you to somwhere else.
Does anyone know how to create that flash effect?
Flashing
Hi,
there is a website www.rtuk.co.uk and once you get past the opening page the animation flashes (where the cars are ) and i was wondering if anybody can tell me how to do that please.
Take a look and see if know what im talking about.
And also does naybody know how you zoom text out for example start with something small and the bigger so it zooms out so it looks like its coming at you
Cheers Guys 'n' Gals
Andy
Random Flashing
I would like to create a background for my latest project and I think its going to need some actionscripting.
I have a little gadient circular fill that I would like to turn on and off randomly. Maybe even fade in and out using alpha.
Then duplicate this several more times as a background for some text etc.
I could do this by making individual movies, but if I use the same one more than once it will be noticable.
I understand a little actionscripting and am trying to pick it up, are there any tutorials out there that would help a newbie scripter
Steve
Flashing Effect
Here's the score dudes :
I have made a movie where a bright white light rises over the horizon of a planet.
Here what i cannae do!!! :
When the light has stopped rising, i want the movie to have a white flicker then flash and the whole movie fades to white.
Any help would be wicked. Cheers peeps...
Flashing Cursor
Hello,
I am using Flash to create a screen simulation based on a mainframe application. This application has several fields in which the user tabs to a field and enters a number value or a single letter like an X. I am looking for two things.
1. How to get a cursor to flash in the appropriate text box when I tab from text box to text box, and:
2. Error validation. So if they put a 1 when a text field goes they get an error.
Here is my code to tab through the fields. At the bottom is the code I have tried to get my error validation.
on (keyPress "<Tab>") {
if (Selection.getFocus() == "_level0.function") {
Selection.setFocus("_level0.scrname");
} else if (Selection.getFocus() == "_level0.scrname") {
Selection.setFocus("_level0.pv1_married");
} else if (Selection.getFocus() == "_level0.pv1_married") {
Selection.setFocus("_level0.pv1_separated");
} else if (Selection.getFocus() == "_level0.pv1_separated") {
Selection.setFocus("_level0.pv1_veteran");
} else if (Selection.getFocus() == "_level0.pv1_veteran") {
Selection.setFocus("_level0.PV1Solar_yes");
} else if (Selection.getFocus() == "_level0.PV1Solar_yes") {
Selection.setFocus("_level0.PV1Solar_no");
} else if (Selection.getFocus() == "_level0.PV1Solar_no") {
Selection.setFocus("_level0.energy_yes");
} else if (Selection.getFocus() == "_level0.energy_yes") {
Selection.setFocus("_level0.energy_no");
} else if (Selection.getFocus() == "_level0.energy_no") {
Selection.setFocus("_level0.function");
}
}
on (keyPress "<Tab>") {
if ("_level0.pv1_married" == "X") {
setProperty (_level0.error, _visible, true);
}
}
everything following _level0 is a variable for an input box.
Flashing MC On Rollover
For some reason, when I rollover my invisible button (which displays a popup menu), it flashes repeatedly when I'm over certain parts of the button. There is a graphic underneath.
The popup "pops up" and the flashing stops when I rollover the "popped up" panel...but starts again when I move the mouse off the popup...and then stops completely when I roll off the button entirely.
Here's the code for the invisible button:
on (rollOver) {
// --------------------------------------
// show dropDown1 menu
// --------------------------------------
tellTarget ("/dropDown1") {
gotoAndStop("show");
}
// --------------------------------------
// hide dropDown2 menu if drop down 1 is shown
// --------------------------------------
tellTarget ("/dropDown2") {
gotoAndStop("hide");
}
}
and the instance "dropDown1", etc. has 2 frames "show" and "hide" which seem to work fine and resides on the layer above the invisible button.
Appreciate any help, code hints.
Thanks in advance.
Christian
Flashing MC On Rollover
For some reason, when I rollover my invisible button (which displays a popup menu), it flashes repeatedly when I'm over certain parts of the button. There is a graphic underneath.
The popup "pops up" and the flashing stops when I rollover the "popped up" panel...but starts again when I move the mouse off the popup...and then stops completely when I roll off the button entirely.
Here's the code for the invisible button:
on (rollOver) {
// --------------------------------------
// show dropDown1 menu
// --------------------------------------
tellTarget ("/dropDown1") {
gotoAndStop("show");
}
// --------------------------------------
// hide dropDown2 menu if drop down 1 is shown
// --------------------------------------
tellTarget ("/dropDown2") {
gotoAndStop("hide");
}
}
and the instance "dropDown1", etc. has 2 frames "show" and "hide" which seem to work fine and resides on the layer above the invisible button.
Appreciate any help, code hints.
Thanks in advance.
Christian
Flashing MC On Rollover (MX)
For some reason, when I rollover my invisible button (which displays a popup menu), it flashes repeatedly when I'm over certain parts of the button. There is a graphic underneath.
The popup "pops up" and the flashing stops when I rollover the "popped up" panel...but starts again when I move the mouse off the popup...and then stops completely when I roll off the button entirely.
Here's the code for the invisible button:
on (rollOver) {
// --------------------------------------
// show dropDown1 menu
// --------------------------------------
tellTarget ("/dropDown1") {
gotoAndStop("show");
}
// --------------------------------------
// hide dropDown2 menu if drop down 1 is shown
// --------------------------------------
tellTarget ("/dropDown2") {
gotoAndStop("hide");
}
}
and the instance "dropDown1", etc. has 2 frames "show" and "hide" which seem to work fine and resides on the layer above the invisible button.
Appreciate any help, code hints.
Thanks in advance.
Christian
Flashing HTML
I am working on creating a new version of a website for myself... yet i am having some troubles with a certain idea of mine. I want to have my flash over my website, as you would a template a piece of paper. I would like to have my website (HTML part) be a layer in my flash site... (http://lan.faliesonsworld.com/beta/site.html) the black area inside the flash is where my website would be. clicking on a link to the left would just be like clicking the link in a frame.. and would just change the website in that area... not forwarding teh webclient to another site,
but my whole website running in that one place. I do not understand how to do this. I dont know if its even possible.Yet my friend said that you where the people to come to for this, so here I am. =)
-this is purely beta form... the imaages arent done, they still need to be finished cleaning... its going to have a lot of touch ups (browser resizer to movie size script, etc.) just want to get the above working first.
Flashing Button
i need to have a button that flashes, or changes colors while still functional.
i'd imagine amovie clip would do the trick, but i can't add functionality to the movie clip (or am doing it wrong). i'm still a little gray on how you actually get a movie clip to work anyway... any help?
B
Flashing Transition [mx]
i have seen sites where when u change categories the screen in wich the info is displayed kind of flashes brightly during the page transition , also ones where the screen distorts itself in a cartoonish manner during transition , anybody know of any tut's on these things ? also a very basic beginners intro to actionscript
here is an example that incorporates both transitions
example site
thanks for any help
Flashing Title Bar
hey all,
I'm working on some kind of chat program. What I want to do now, is when there is a new message, flash the title bar. (like chat programs often do (msn) ) I don't know if it's even possible, can it be done? and if so, does somebody know how ?
thanks in advance,
Rabon
Flashing ;) Effect And...
Hello,
I am trying to create a flashing effect of a sign or text. I want the sign to shine for a moment but with a slight change of size (bigger). Just like if it was lit like a neon. Should I do it with AS or maybe only with tween. I need a lot of dynamic in this shine
another effect that confuses me is to make a shape brake into small pieces (like glass) and momentarilly put it all togehter. I guess there has to be a simpler way to do it than to slice the shape into small parts, move them apart and create tween, hasn't it?
Will be grateful for any clues
Regards
Flashing Cursor Bug
Hi All
I have a page with 6 textfields created with actionscript.
When I click on the first textfield I get a flashing cursor in all 6 fields. Anyone got any ideas how to fix this?
Thanks
Button Flashing
hi,
i want to make my buttons flash a few times on the mouseover. I'm not sure how to do this with the ' up over down hit ' part. Do i need actionscript? If so, point me in the right direction.
thanks
Flashing And Scenes
Hi everyone
I am new to scenes. I would like to make a site like this, with these fine flashing effects appearing after the scene has loaded. Could someone sketch out how that site works 'cause I ain't got a clue where to start? Is the main manu and the bottom part separated scenses or somethin'? How do I do that flashin' effect?
Link to the site: http://www.mjau-mjau.com/eidesound/index7.html
Help please
Flashing Objects
Hi!
Can someone explain me how to make such a "flashing effect" like on this site:
www.lightmaker.com
Thank you very much!
Mikalux
Any Help About Flashing Advertisements
Hi friend
How Can I make a flashing advertisment , and calling it by HTML, and when it is done, will be closed auotomatically
like the one in MSN when you log out
Flashing Cursor ?
Hello there,
I have a feedback form with 3 input text boxes.
Problem - When i test my movie locally the cursor flashes and everything seems fine. When i upload the page and you click in the text box you can't see the cursor flashing. Any ideas as to how i can sort this one out?
Check it out at - Primative Feedback
Movie Flashing?
I have been working on a project for a site. I finally finished but then realized the pictures were too big in file size. So i resized them in fireworks and exported them as jpegs. THen I go into flash and replace the files and now when i play the movie it is continously flashing. go to www.reitzbaseball.org to see what I mean. Any help is appreciated.
Flashing Button ?
I have three buttons that could be 3 different colors, all could change, depending on what lvl they are set. (I am using ASP and SQL to determine the value of the color.) I wanted to have another table in the db to be the trigger for the flashing.
Button 1 : red, yellow or green
Button 2 : red, yellow or green
Button 3 : red, yellow or green
I want the parent color and another color to flash to notify a change in content on the page.
So if Button 1 was set to Red, it would flash Red and Black. But if the color changed to Yellow it would flash Yellow and Black.
I hope I explained this clearly. I tried SetInterval but it didn't like the multiple intervals
Flashing Windows
does anyone know how to use or what to use to create the flashing windows/browsers when the message is received?
Flashing Problem
I'm new to AS3 and am having trouble with a rollover. I am making a banner of twelve headshots. When you rollover the headshot, a color image and quote come up for the person, populated through XML.
I got everything to work except that when you rollover each person, the color image and quote get loaded and start flashing. Each rollover points to another frame, where I have a variation on this code, which I assume is where the problem is, but I can't figure out where. I assume the code just keeps loading, but I'm not sure why or how to stop it. Any ideas?
Code:
var quote1Req:URLRequest = new URLRequest("FlashBannerXML.xml");
var quote1Loader:URLLoader = new URLLoader();
function quote1Loaded(e:Event):void{
var quote1XML:XML = new XML(e.target.data);
var image_url = quote1XML.person[0].@rollover;
var quote1_loader:Loader = new Loader();
quote1_loader.load(new URLRequest(image_url));
addChild(quote1_loader);
quote1_loader.x=0
quote1_loader.y=0
quote1.text = quote1XML.person[0].quote;
major1.text = quote1XML.person[0].major;
name1.text = quote1XML.person[0].name;
stop();
}
quote1Loader.load(quote1Req);
quote1Loader.addEventListener(Event.COMPLETE, quote1Loaded);
Do You See A Flashing White?
http://www.ergo4me.com/ergonomic-stools.php. Do you see a flashing white when you view this site? Sometime I see it, sometime I don't see it on current Win based version IE 6. I don't see the flashing white on current Netscape or Firefox. Does anyone have any ideas why this is happening?
Flashing Emails
Is it possible to send flash emails to people. Basically I would like to design a flash animation as part of an advertisement for a job of mine and place this on the server and do a mass email sendout, I understand the ways of sending html emails a little, but when I try to incorporate any flash elements I get some active x error message, can anyone give me tips or ideas about the right way of going about this process, and if it is actually possible to do?
cheers in advance
Flashing News
Hi. I want to make a textfield on my webpage were some news continuesly appear. Anybody that can help me with the script or lead me to a tutorial that explain how to do it.....
Flashing Roll Over
Hello there
I have seen in some sites that rollovers flash very fast. I have been trying to create a script for it, but still too slow.
Here is an example of what I mean, when you rollover the flashing of the image is fast
Is there a script for that?
http://spiderman.sonypictures.com/
Flashing Effect
Hi everyone
I am new to scenes. I would like to make a site like this, with these fine flashing effects appearing after the scene has loaded. Could someone sketch out how that site works 'cause I ain't got a clue where to start? Is the main manu and the bottom part separated scenses or somethin'? How do I do that flashin' effect?
Link to the site: http://www.mjau-mjau.com/eidesound/index7.html
Help please
Flashing Buttons?
Can someone please show me how to make buttons like this:
http://www.garlandjeffreys.com/flash/index_f.html
Notice how once you click on a button, it goes to that page, plus the button stays 'on' and sort of flashes as well?
And how do you make it so that once you're on that page, the button actions disables, meaning you cant click on it again while you're on that page so the current page wont reload again?
Hope that made sense....
Please help! Thanks in advance!
Weird Flashing
publish preview and exporting to swf causes the movie to flash uncontrollably. if i stare at it long enough i get a seizure.
any thoughts?
Flashing Text
hi, i wonder if someone can help me
i am new to this, and to flash
all i want to do is create a line of text that flashes red, and use it on the front page of my website which i did in my dreamweaver mx 2004..
can anyone help me
thanks
j
Flashing Emails
Is it possible to send flash emails to people. Basically I would like to design a flash animation as part of an advertisement for a job of mine and place this on the server and do a mass email sendout, I understand the ways of sending html emails a little, but when I try to incorporate any flash elements I get some active x error message, can anyone give me tips or ideas about the right way of going about this process, and if it is actually possible to do?
cheers in advance
Flashing News
Hi. I want to make a textfield on my webpage were some news continuesly appear. Anybody that can help me with the script or lead me to a tutorial that explain how to do it.....
Flashing Roll Over
Hello there
I have seen in some sites that rollovers flash very fast. I have been trying to create a script for it, but still too slow.
Here is an example of what I mean, when you rollover the flashing of the image is fast
Is there a script for that?
http://spiderman.sonypictures.com/
Flashing Effect
Hi everyone
I am new to scenes. I would like to make a site like this, with these fine flashing effects appearing after the scene has loaded. Could someone sketch out how that site works 'cause I ain't got a clue where to start? Is the main manu and the bottom part separated scenses or somethin'? How do I do that flashin' effect?
Link to the site: http://www.mjau-mjau.com/eidesound/index7.html
Help please
Flashing Images...
I'm new to flash mx.
I've seen this effect quite often and think it is very impressive, but can't seem to get it just right. I would appreciate any help.
looking for the "flashing/blinking" effect on images when they load. examples:
http://www.ectovision.com/mainframe.html
Also trying to figure out how they make the text load like they do...a mask maybe?
http://www.squarewave.us/
also trying to figure out how to get the effect of a growing text box that is rounded, zooms in, and sort of bounches into a rectangle...
http://www.axis360.com/html/popup_mainframes.htm
http://www.cruciallimit.com/chapterOne/index.html
Fading Vs Flashing
I'm doing the Fading Text beginner tutorial, but my text blinks as opposed to fading.
ie: on frame 30 it blinks on, then on frame 50 in blinks off.
What am I doing wrong
I'm a total beginner in Flash, so any help appreciated.
Regards, Imad
Flashing Cursor Bug
Hi All
I have a page with 6 textfields created with actionscript.
When I click on the first textfield I get a flashing cursor in all 6 fields. Anyone got any ideas how to fix this?
Thanks
Flashing & Caching
Hello There
Just wanna hear some comments on this. Whenever you update a flash movie and publish it to the web, it takes quite some time for the update to show.
I found some NoCaching html code but that does nothing. The only way I found to battle this, is to rename the flash file, and this gets pretty irritating, especially if you have flash files pointing to other flash files, and you have to rename all the files from the htm file right along to the last little flash file that needed an urgent update.
Is anybody else having problems with this, and if so, how does everybody else handle this?
Thanx guys!
Le Roux
Flashing Graphics
im sure this is pretty easy to do, but can someone tell me how to make graphics flash really quick, like i see on so many sites.
as an example, on the 2a site, when you mouse over stuff like the launch button (featured system) or better yet, the little arrow that flashes when you mouse over a desktop or app skins list boxes.
any help would be greatly appreciated.
gkc
A Follow Up With Flashing...
Hey Tann;
First off, you really nailed this on the head when no one else could... I bow before. Thank you.
I need just a slight addition:
Okay, I made a movie and put my soundtrack in it, starting in frame 1. In frame 2, i loaded movie 1 to level one, and from there my buttons load the rest of the movies to level 1 and everything works great!
Now just get me back to the beginging...
On the page of the last movie, there is a replay button to replay the whole sequence of movies. So I need to trigger my soundtrack movie sitting on level 0 to start again.
I tried this but it didn't work...
on (release) {
loadMovieNum("chpt 7(mirror2)music.swf", 0);
}
(I wasn't sure if i needed to reload the "god" movie since the soundtrack was playing and thus had never left.)
So what do i say to get the replay button to restart the whole show at frame 1 of my soundtrack movie?
Thanks
Hoss
Flashing At End Of Movie
Hi there,
I have made a simple flash animation. I want it too loop, which works as it goes to the end of the timeline and then goes back to the begining, but when it reached the end, the movie 'flashes' before it starts again. Does anyone know how I can stop this from happening?
Flashing Image
Hello everyone,
If you look at http://www.palladiumcapital.com/new/main2.html you will see that the homepage quickly flashes before the homepage page is fully loaded... What in the heck is causing that? I have uploaded the .fla for you to look at - I certainly cannot figure it out. http://www.palladiumcapital.com/new/main.fla
Thank you sincerely!
Jordan
|