ActionScript 2.0 :: Ultra Simple Load Flv Content Not Working?
Jun 23, 2009
I've looked everywhere and keep getting the same answer. I have a standard flv player component with the instance name of 'movies'. i have a button, that when clicked i want it to load a certain flv into said player... so... ive got behind the button (for example..)
on (release){
_root.movies.contentPath = "http://www.mywebsite.com/mymovie.flv";
}
it compiles, i run my flash and my flv player doesnt play my content.. why?? the url is 100% correct as if i put it in manually, it works fine.
View 5 Replies
Similar Posts:
May 4, 2011
where i can find a very simple flash photo veiwer script....I would like something very similar to what used to come built in with DreamWeaver CS3.i dont really want anything that has thumbnails or links etc... just something that very simple fades from one image to another etc...
View 2 Replies
Oct 27, 2009
I have to make an ultra quickstart on this framework, since I have to dive into an existing project ASAP.
View 5 Replies
Aug 15, 2009
I'm have made some buttons (movie clip) and when I click on it, I want a file (home.swf) to load in a loader (mx.contents.loader) and I want the other buttons to do the same, all load into the same loader. I have no Idea how to do that. The way I have it set up now, the home.swf will load over the entire screen and that is not what I want. I just want the content to load into the loader and have its content change once I click on the other buttons. Here is a copy and past of that I have at the moment, I'm using Flash 8 to do it all.
[Code]...
View 1 Replies
Mar 30, 2010
I've successfully implemented the scrollbar from this great tutorial for some banners, but when I get to my 300x250 banner, the content gets cut off and disappears at a certain point while scrolling. This is the tutorial: [URL]. I altered the pieces for two different sizes without needing to alter any code, but this size is suddenly giving me problems. My FLA is attached.
View 3 Replies
Dec 13, 2010
The website has 5 main-menu items called : Home / Speellijst / Van toen tot nu / media / contact / . a preview of the project can be visited here : [URL]
So when someone clicks "Van toen tot nu" (= an item about her past theatre plays), it displays a new menu that holds chronological buttons. Once someone cliks one of those, an extra element should show that displays info.
So in the element holding all the buttons on frame one AS says:
robbieknop.addEventListener(MouseEvent.CLICK,robtx t);
function robtxt(event:MouseEvent):void
{
root.toenclip.gotoAndPlay(2);
}
EXTA INFO:
* the 1st button has the instance name : 'robbieknop'
* a clip that holds the info on each frame seperatly has the name : 'toenclip'
* 'toenclip' has an empty 1st frame, the 2nd holds the info that should display while pushing the instance 'robbieknop'
* 'toenclip' is present on stage when 'van Toen tot nu' has been loaded, it is invisible (empty frame)
So far I can't get it to work, I don't get any error messages and everything else displays 'according to plan'
View 9 Replies
May 9, 2009
how to make a simple flash 500x300 with a dynamic content from certain URL
View 3 Replies
Jul 7, 2011
I am trying to read a XML file and display its content in a simple list component or at the console. The problem is that the event listener is triggered in an infinite loop.
The code:
var myXML:XML;
var myLoader:URLLoader = new URLLoader();
myLoader.addEventListener(Event.COMPLETE, processXML);
[Code].....
View 1 Replies
Sep 20, 2010
I worked through Kirupa's "Simple Custom Scrollbar" tutorial and successfully adjusted it to fit some of my content. Then I put it in a movieclip. I was hoping I could just go into each new instance of that movie clip, put in new content and be good to go. Unfortunately, when I edit the content inside my movie clip it edits the content of all the scrollbars in my timeline.
I tried renaming the instance "contentMain" to "contentMain2" in a second movie clip, that I also gave a unique instance name to, and adjusting the actions to match, but that still ended up renaming it in the other the scrollbars in my timeline as well as adjusting it in the actions of all the scrollbars.
View 2 Replies
Aug 13, 2010
I'm trying to create a simple banner ad where the mouse hovers over the button and a panel shows up over some content of the site.[URL]I have two different .swfs: the container, which is the button and a loaded swf that has the animation that comes up when the button is clicked. The button is only 183 x 40px where as the loaded swf is 183 x 160px.When the loader swf is loaded, it takes the dimensions of the button.
Is there a way to have the loader swf be its original dimensions, so when the mouse hovers over the button, the loader swf covers some of the content on the Web site?Also, how can I change the MouseEvent to load the SWF when the mouse is only over the button and not clicking?
The simple code I have so far:
stop();
var myLoader:Loader = new Loader();
open_btn.addEventListener(MouseEvent.CLICK, loadBanner);
[code]....
View 1 Replies
Sep 21, 2009
I have got a simple button in the first frame of my flash file, but its not wokring. Here is the code I am trying.
Code:
Btn.addEventListener (MouseEvent.CLICK, myFunction);
function myFunction (e:MouseEvent):void {
trace("working");
}
It gives this error: "The class or interface 'MouseEvent' could not be loaded"
View 3 Replies
Nov 4, 2009
I am somewhat new to Flash CS4 andt am having a problem making simple buttons in Flash CS4 on a Macintosh: I have made a few buttons with a graphic and can go into them and successfully create the Up, Over and Down stages of the graphic. Then when I create a new box for the hit state (which is larger than the graphic and I have deleted the graphic itself from the hit state) it doesn't want to appear correctly when I test the movie. When I test the movie, the hit state is correct everywhere around the graphic (to the bounds of my hit state box), but is not active where the graphic is.
When I go under the Control menu, down to Enable Simple Buttons, the hit zone looks great right in my Flash file, but when I preview it or publish it and look it on different browsers (PC and Mac), I don't get my pointer right over the actual graphic, but get it everywhere around the graphic to the boundaries of my hit box. Why can't I get the actual graphic to be a hot spot in this situation? I have tried leaving the graphic in the hit timeline, and tried putting both the larger box and the graphic in the hit timeline, and still can't get them to respond correctly with the pointer in the browser window.
View 2 Replies
Jul 1, 2011
So I'm trying to learn to create a public class, and this is what is in my class file:
class com.RCN.Menu.Menu{
public var title:String;
public var menuItems:Array;
[code]....
and in a seperate SWF I use the code:
import com.RCN.Menu.Menu;
var Accountability:Menu = createMenu("hello",[a,b,c,d]);
trace(Accountability);
yet Accountability traces as undefined?
View 1 Replies
Feb 21, 2012
I am attempting to create one function to respond to multiple button clicks. I have a simple if statement in my onBtnClick function that does not work. Just need the button that is in that variable to go to frame 1. Trace statements are working inside the statement so I the if statement runs correctly?
[Code]...
View 3 Replies
Aug 27, 2003
This is plain and simple, why is it not working? BUTTON
[Code]...
View 7 Replies
Oct 7, 2009
I just can't figure out why a simple movieclip is not performing as expected.
Here's what happened:
In my MAIN SCREEN, I placed a a movieclip and named it "mainnav_mc" and on my ACTIONS layer, I placed a script on the frame that will eventually play the movie "mainnav_mc". This is the script: mainnav_mc.gotoAndPlay("show");The clip is suppose to fade-in but it seems that MOTION TWEEN is not working. I tried to create a test MC and still it's not working.
View 14 Replies
Jan 31, 2010
i can not seem to get a button working with simple gotoAndStop frame . its setup like _root > EMC_photos > photos_thumbs_ani now in photos_thumbs_ani i have several photo pages all setup every 100 frames with labels page 1, page 2 etc my button is within photos_thumb_ani as a movieclip with code inside this.onRelease = function(){ _root.EMC_photos.photos_thumb_ani.gotoAndStop("pag e2");} I have tried different variations to no sucess
View 2 Replies
Apr 14, 2010
I've got a really simple script that on a button click, changes the alpha of a set of mc's from 0 to 100, then on second click changes back to 0. The first click works fine but for some reason the second click isn't working. The button needs to stay "on" as well so I've got the buttons in a mc with named frames "on" and "off". Here's the code:
Code:
Actionscript Code:
ltBlueButton_mc.ltBlueOff_btn.onRelease = function(){
[code].....
View 3 Replies
Sep 21, 2010
I am fairly new to Flash and I am creating a simple Flash login programme in Flash. If I type in the correct password or even if I type in the wrong password it always goes to frame 3 which is "Login Failed! Username or password was wrong". I have attached .fla file. Note I created in Macromedia Flash 8.
View 8 Replies
Aug 11, 2009
I'm having a bit of trouble getting a button in a hoover over drop down menu to link to another scene in the .swf movie. I just doing a basic drop down menu (example here: [URL] with a couple of buttons with in a movie clip, the movie clip being the "button" someone hoovers over. The buttons however are not going to the corrisponding scene I have them set up to. What's strange is that if I set in the buttons action panel to go to an url instead of a scene, in the .swf movie the button works when I click it...it wants to go the specificed url. Nothing happens when it's set to go to a scene.
View 5 Replies
Jul 27, 2010
I am creating a very simple mask using motion tweening. I created some text on a layer and made it a masked layer. Then I created a mask layer which consists of a circle that will span across the text. When I play the movie the circle does not show up at all in the frames the mask layer spans (it's purple on a black background) and the circle does not move across the text like I told it to with the motion tweening. I don't know why it's not working. For some reason the circle isn't showing on the stage at all and it's not moving across the text. I don't know if I have it set up wrong on the timeline or what. Here's the steps I followed to create the mask:
1.insert a new layer in which I named it mask and click frame 1 on this layer
2. select the oval tools on the tools panel and set the stroke to none
3. set the fill color to purple
4. draw a circle and click the selection tool and drag a marquee around the circle to select it.
5. click insert on the menu bar, click motion tween then click ok in dialog box about converting it to a symbol to be tweened
6. click the last frame in the mask layer and drag the circle to the end of the line of text
7.click mask on the timeline to select the mask layer, click modify on the menu bar, point to timeline then click layer properties
8. verify the show check box is selected in the name section, click the lock check box to select it, click the mask option button in he type section, then click ok.
9. play the movie in which the circle object covers the text on the masked layer as it moves across the stage.
View 1 Replies
Jul 14, 2011
I've tried over 4 tutorials to make my movieclip link to a URL. It's just not working for some reason...
Here is my code.
ondemand.addEventListener(MouseEvent.CLICK,goThere);
function goThere(e:MouseEvent){
var request:URLRequest = new URLRequest("www.money.net");
[Code]....
This should work!! There are no compilation errors...
No mouse cursor change on hover... just like nothing is there.
View 7 Replies
Sep 8, 2009
I'm modifying an mp3 player by flabell, and try to get some buttons to work. However, I can't seem to get the getURL to work, even though it works in other parts of the script. This is my code:
mc.rate1.onRelease = function() {
trace(this.ID);
getURL("[URL]","_blank");
};
The trace goes through fine. Here is the code that works:
Code:
private function downloadRelease(mc : MovieClip) : Void {
var title : String = mc._name;
var index : Number = Number(title.substring(title.lastIndexOf("n")+1,title.length));
getURL(songsSource[index], Main.getInstance().mcAlbums.linksTarget);
}
I'm on a mac with firefox.
View 3 Replies
Apr 14, 2010
I've got a really simple script that on a button click, changes the alpha of a set of mc's from 0 to 100, then on second click changes back to 0. The first click works fine but for some reason the second click isn't working. The button needs to stay "on" as well so I've got the buttons in a mc with named frames "on" and "off". Here's the code:
Code:
ltBlueButton_mc.ltBlueOff_btn.onRelease = function(){
contentMain.page1_mc.Pg1LtBlue_mc._alpha = 100;
contentMain.page2_mc.Pg2LtBlue_mc._alpha = 100;
[Code].....
View 4 Replies
Dec 23, 2010
I have programmatically created a simple button with a text field on top in a separate class extending a movie clip. The problem I am having is that the overState does not seem to be working and I don't know why. I have even tried removing the text field in hopes that would work, but it does not. The GameIntroduction class is called by another class which is the main class.
Here is my code for the class that calls the buttons:
ActionScript Code:
package {
import flash.display.*;
import flash.events.*;
public class GameIntroduction extends MovieClip {
private var introText:String = "";
[Code] .....
View 2 Replies
Jan 6, 2006
I'm using Flash Pro 8 and I'm attempting to incorporate events into some of my classes and I'm having nothing but problems. After looking at lots of examples, this all seems okay, but doesn't work. First is the class code and secondly is the code on the timeline.
ActionScript Code:
import mx.events.EventDispatcher;
class iaicu.mycampus.ClassSchedule {[code].....
Keep in mind that these classes are more elaborate, so events are intended to be more useful.
View 7 Replies
Mar 21, 2006
i've tried searching the forums and fighting with this way of fading the movie clip in and out. The movie clip has an instance name of "box", my brother also can't figure it out.
Code:
var fadeChecker:Boolean = true;
function flicker():Void{
if(box._alpha >= 100){[code].....
View 5 Replies
Apr 19, 2006
I have a movie clip called mainClip. Within it is another movie clip called subClip. I am moving the mainClip along the y axis; when it reaches a certain point, then the subClip moves along the x axis.
Here's the basic code:
Code:
myButton.onRelease = function() {
onEnterFrame = function () {
mainClip._y += 10;
[Code].....
The problem is, the mainClip moves just fine, but the subClip won't move at all. why the second script won't work?
View 3 Replies
Mar 8, 2007
I have a simple invisible button over to animations, based on thisThe button is telling onRollover to play frame name, thus playing the animation. and on onRollout it plays another thread.However, once all that is finished it doesn't work properly. Its like the first time you use it, as you roll over works fine and as you roll out fine. However, when you roll over again nothing happens until you come out and it gets all muddled.
Code:
on(rollOver){
gotoAndPlay("blurOver");
[code]....
View 11 Replies
Jan 15, 2012
i have attached an .fla file to show you what i am trying to achieve, i have a line (acting as a playhead) scrolling accross the screen, i am then wanting it to output to the window when it collides with each of the coloured squares, i have used similar things before but it is not working in this instance
View 5 Replies