Hi - I have to do a piece that has: -- a combo box that contains a choice of 5 amounts of money, then -- a combo box with choice of 3 years appears -- leading...
So, what part of what you are doing doesn't work? Did you want the second combo box on the screen at the same time as the first, or do you want them ...
I have an html page that on load starts to play a flash movie. After the flash movie stops, I would like to re-direct the page automatically to another page....
If you have an animation playing, then on the last frame you want to use a getURL statement to change pages: getURL("new_page.htm", "_self"); _self opens the...
thank you Michael. This is actually a .flv file. I don't have access right now to the original .fla file. Any other way this can be accomplished? Best R.C. ...
I'm answering my own question, but I think I can create my own .fla file since the item is flv file and then input the code. I don't need an original .fla...
I wondered about that. Without the FLA you don't have many options. You would have to create a listener that detects when the FLV is done playing and then do...
No, not at all. If you have the FLV it's not too difficult to create your own FLA that plays the FLV and then detects the end of the movie. You can use the...
thank you Michael. Very much appreciated. I got it to go with creating my own .fla file, importing the flv file and using code I found on the web. Works good....
OK one more question. I have a button in a movieclip which I would like to go to a frame on the main timeline on release. I know it has something to do with...
Actually, it depends upon the type of button you are using. Button components are movieclips, so you need to reference _parent (AS2). Button symbols (the type...
If you are interested in this position apply at https://www.jobscore.com/jobs/marcusronaldi/flexdeveloper/a7596Qrw8r3RsoeJe4aGWH We are looking for a flex...
Hi I have Flash CS4 and would like to come up with a cross-platform-database-desktop-application using SQLite as its database-engine. Can this be done and if...
Hi, If you have the flv you can easily do this in flash. I have done this with the use of cue points ... //these first 5 lines add an Actionscript cuePoint to...
Everybody says you have to import packages to make your scripts work, but I never import any and don't see any problems. Would my applications run faster if I...
hai i need to create an array in flash the concept is " i want to create array for get the information from the user and If the user gives the information to...
Hi, *to create an array is simple:* var myArray:Array = new Array(); *to push elements is:* myArray.push(somethings); // can be object, string, number, ... * ...
Hi, I wonder if anybody has a clue how to solve this problem: As soon as you scroll a Flash movie (once fully loaded and ready to use) out of the visible area...
Absolutely, using AIR. Just do a search for "Flash CS4 AIR". AIR allows you to build local applications using Flash, Flex or even HTML w/ JavaScript. AIR has...
I believe this is a feature of Firefox (and probably other browser that allow for multiple tabs) to keep potentially hundreds of Flash movies that aren't being...
I just discovered that Flash refuses to apply the bold attribute to dynamic text fields. If I make a static text field and make it bold, that renders without...
Hi Great, thanks. I got things wreong. I thought I had to program either in Flash or Flex and with Air, I could make the flash swf-file created convert to...
Yes, I do know how to get dynamic bold text. It works exactly the way the documentation says it does. I'd tell you the answer, but you should really ask a bit...
I am a Flash animator, not a programmer. I love the animation part of Flash and have worked with this software for 11 years, but I do not like ActionScript and...
There is no actionscript required, at least, not in AS2. All you have to do is embed the bold characters you expect to need in your dynamic text. The easiest...
Thanks for the advice, Becky. I only used default fonts which come installed on everybody's PCs. I used AS3's form class to bold the text. It is interesting...
Ah, but do you tell Flash to use "device fonts"? If not, the benefit is lost. Becky Thanks for the advice, Becky. I only used default fonts which come...