ActionScript 2.0 :: Make A Movieclip('MC') Invisible When There Is No Jpg To Load
Jun 19, 2005
I am loading jpg's, and I want to make a Movieclip('MC') invisible when there is no jpg to load (because it just is not there). How can I detect if there is no jpg, and then make the MC invisible? I think I should use onData, but I can't make it work.
[AS]
function laadNail3(foto) {
var my_lv:LoadVars = new LoadVars();
my_lv.onData = function(src:String) {
[Code]....
View 1 Replies
Similar Posts:
Aug 23, 2005
This is the third thread I've written for my current project (1st was answered perfectly, 2nd failed [but I still figured it out anyways]) but I'm not sure if there is a solution to this problem. I can't really explain my problem, so once again I've included a helpful animation to show you what I mean. Bear in mind that the pale-blue box represents the movie clip's borders, and those borders are usually changed to include the animation (instead of the borders moving with the animation, the borders get bigger).
For the animation problem, I've already got a solution: create an invisible movie clip that has the exact size and shape of the animated movie clip and make it follow the movie clip as it animates, and make the hitTest check the invisible movie clip instead of the animated one. As for the rotation problem, well, I don't know how to fix it. Is there a way to change that?
View 1 Replies
Aug 3, 2009
Is there any ways to set a movie clip(item2) invisible but set another movie clip which located inside item2 visible?
View 1 Replies
Mar 5, 2010
I am using Flash Professional CS4. I made 2 buttons (2 rectangles,each turned into a symbol of type button). I now want when I click 1 button that the second becomes invisible. Is there a way to do so?
View 2 Replies
Mar 22, 2011
After a few years of using Flash I am creating my first project in AS3 and am running into some problems which are quite common involving targeting movieclips and controlling them. Basically I have a fla which has an MC on the timeline with an instance name of INFO_MC. Now i want this MC to be invisible when the swf starts and I have managed this by using the following code: Actionscript Code: INFO_MC.visible = false;
This is fine. However I get stuck when I try to make INFO_MC visible when I click a button in a loaded swf. How would I target INFO_MC from a button inside a loaded swf. Do I need to add an event to the button and then have a listener on the root timeline which would turn INFO_MC visible when it hears that the button has been clicked?
View 6 Replies
Feb 27, 2010
Ive got my dancing fruit sorted, however when I save the file as an animated gif and put it in my application the gif has the stage background. If it wasnt animated I could edit the back ground in photo shop, but I dont seem to be able to with the animated file. Is there anyway I can just have my dancing fruit with out the stage?
View 3 Replies
May 6, 2010
I'm sure this is something easy that I'm missing, but I can't figure it out. How do I make a button invisible? I need it to be invisible through frame 43 of my movie. I have tried changing the alpha to 0, but it's not letting me change that, except in the edit button mode which changes it for the entire duration and not just through frame 43.
View 1 Replies
Oct 9, 2007
how to make an invisible rectangle on stage that could be clicked for example
View 0 Replies
Sep 10, 2009
I have a home page, with 5 swf's that are called into a container on the main. Now when I click on the home button on i need for the embedded swf thats up to become invisible not unload because i need the information to .
View 9 Replies
Jun 30, 2009
i have three layers on frame 1 of a swf.in all the three layers i have a different movie clips. my question is that is it possible to show only one movie clip when the swf loads initially ..? i mean when the swf loads initially , i need to hide tow movie clips and show only one..?
View 4 Replies
Nov 23, 2006
I want to make 5 out of 10 movieclips invisible.
I know this works for each movie :
item1._visible = false;
item2._visible = false;
etc
But whats the correct syntax to do it in the loop. This seems to clear all 10 movieclips.
Code:
for (var y = 0; y<5; y++) {
["item"+(y)]_visible = false;
}
View 3 Replies
Feb 11, 2010
I'm running my head against a wall here and I'm not sure how to tackle this problem. Background I'm making some sort of movie player with subtitles overlayed on it. I'm using the root timeline for my movie timeline because this greatly increases development speed. The subtitles are created with the texttool, and I make them dynamic textboxes because I need to reference them in AS3. I cannot wrap them into a movieclip because they need to be in sync with the root timeline
The user should be able to enable or disable (effectively showing or hiding) the subtitles. The way I did this is by adding an event listener that listens to Event.Enter_Frame on the root timeline and a global boolean to indicate whether subs should be shown. In the enter frame event listener I search for the textfield by root.getChildByName (the name is the same each time) and show or hide the textfield accordingly.
[Code]...
View 1 Replies
Mar 21, 2010
I want a movie clip to be visible for 3 seconds then invisible then visible again after 3 seconds.
View 4 Replies
May 5, 2010
I have a component called "liveTEXT" that I purchased that allows for the client to edit certain text sections to be edited by them on the front end of the site. Right there in the site. The problem I am having is that if I have this liveTEXT on say frame 100, and I go to frame 101, the text is still their overlayed over the content of that page. The text is called with this actionscript in frame 1:
[Code]....
View 9 Replies
Feb 16, 2009
This is for a website with seven frames (one page per frame)
I can load the gallery .swf in background but I only want it to show up on frame 7 (gallery button). Then if the user goes anywhere else (eg. home button - frame 1) the loaded gallery .swf disappears.
I can load it and make it invisible, and can make it visible on frame 7 but then it's visible when you navigate anywhere else.
This is the load code on entering frame 1:
stop();
//make gallery invisible in this frame
stage.addEventListener(Event.ENTER_FRAME, invisible);
function invisible (event:Event):void
[Code].....
View 1 Replies
Mar 1, 2007
I have several movieclips placed on the timeline that I want to be invisible and not run until the user clicks a button. The movieclips are linked to a class I set up:
Code:
class Hidestop extends MovieClip {
function onLoad() {
[Code]....
The problem is that some, but not all, movieclips show briefly when they load before becoming invisible. I can get around this by starting each movieclip with a blank frame, but there must be a better way.
View 11 Replies
Feb 10, 2009
I know this sounds stupid, but I've worked like all the time with Flash 2004 and Flash MX. Now I got CS3, and I want to do the following. I made a MP3 player, but I want to make a 'play' icon visible when the music plays and the 'pause' icon visible when it's paused. Therefor the 'play' icon needs to be invisible,
[Code...
View 2 Replies
Apr 27, 2009
How can I make the Scrollbar on my datagrid invisible?
dg.verticalScrollBar.visible = false; Does not work
Also how do I scroll to a specific Index on my datagrid?
View 2 Replies
Jul 28, 2010
I have a map of states state when a particular state is clicked on, the fla centers on and zooms to that state. When you click on a state a unique ID is pulled from an xml. Using this ID, I can then call all the counties that are part of this state through the county's xml which is also loaded on my stage.or example if I click on Arizona, it zooms and I get a trace of all the instance names of the counties within Arizona.
//call all instance names of Arizona counties
cldcnfips=(cntXml.Records.Record.(STATE_FIPS==cldstfips).afips.children());
trace(cldcnfips);
[code]......
View 7 Replies
Aug 31, 2011
Have a number of images that need to be made visible and removed. Is there a way to do so rather then a list like this?
x18.visible=true;
x19.visible=true;
x20.visible=true;[code].....
View 3 Replies
Sep 1, 2011
I'm using Adobe FLEX 4.5.1 for Mobile.I have a List that displays some images:
<s:List id="imageList" initialize="init()" verticalScrollPolicy="off" itemRenderer="skins.CustomIconItemRenderer" width="100" height="32" verticalCenter="0" horizontalCenter="0">
[code]......
View 1 Replies
Oct 23, 2009
I have a file where everything is on frame one, and I have a nav bar. I want there to be a couple of buttons showing up below the main nav bar when one nav button is clicked, then disappearing when any of the other buttons are clicked.
View 1 Replies
Sep 30, 2010
I am trying to write a program in which 2 random pictures appear on the screen, and when you click on a specific one of the 2, the other disappears for 250 ms, and then the whole thing starts over with 2 new random pics. I have everything working the way I want EXCEPT for the vanishish-for-250-ms part.Specifically, the program is supposed to display 1 picture from 1 group and 1 from a 2nd group, and when you click on the pic from group 1, the group 2 pic is supposed to vanish for 250 ms. Each group has 16 pictures, so the code as it stands now basically randomly picks whether the group 1 pic will appear in movie clip #1 or #2 (faces1_mov and faces2_mov), randomly pics a group 1 pic, displays it in the movieclip it randomly chose, and then puts a random group 2 pic in the remaining movieclip, so the program has to know which clip has the group 2 pic in it and make it disappear when the other clip is clicked.Here is my code:
ActionScript Code:
import flash.display.MovieClip;
import flash.utils.Timer;
[code]....
View 1 Replies
Mar 4, 2011
I Want to load an external .swf in a movieclip which is my container "contenedor_somos" when i click on a button. What i want to do next is to make that .swf to dissappear or unload or whatever when i click another button.
View 3 Replies
May 5, 2011
I have a flash and want to make it only visible when loading 100%. In frame 1 I write stage.visible = fault; or this.visible=fault;
it doesn't work ! the flash still display !
View 7 Replies
Oct 7, 2008
Does any one know how to make a movieclip invisible so I can use it as an invisible button?
View 3 Replies
Jun 23, 2010
I am adding a swf to my website with a streaming flv player and I would like to make the buffer mc invisible until the invisible button covering the video player is moused over. I would like the net stream to begin when the page loads, but for the video to begin when the player is moused-over, and then pause when moused-off, right now the buffer is showing on page load and the animation is really distracting.
This is the code I am working with:
var nc:NetConnection = new NetConnection();
nc.connect("rtmp://rtmphost.com/banner/");
var ns:NetStream = new NetStream(nc);
[Code].....
View 1 Replies
Oct 11, 2010
If there an object is placed on the stage named square and with the document class Main an object was added to square with addchild,if I wanted the square to not be visible but still be the parent while the new object added to square was made visible, how would you accomplish that?
My Trials: It seems if you set the parent to false visibility and then try to set the child visibility to true it disregards that request because the parent visibility overrides it, so the entire movieclip object remains completely invisible.It seems you can make a child become invisible while the parent is visible, but I want to do the opposite.
View 6 Replies
Jul 1, 2011
For my newspaper i am creating each page has a next button and a previous button. I have assigned the previous button on one page to attach the movie of the page previous to it and then tested my movie. However when i click the previous button the movieclip does load but loads behind the starting moveiclip. So what i want to do is when the previous button is cliked, that page (movieclip) with the previous button on its dissappears and the previous page loads.
View 21 Replies
Dec 9, 2009
I've been building a website for a friend: WEMI. The thing is I'm using a script I bought from Activeden.net which is awesome and works great for displaying external webpage's within you flash site. However, there are a few issues. If you visit the link above (WEMI) and navigate to either "Till salu" or "Frmedlade hem" you'll notice that the popup is not positioned in the middle. Also, the popup only goes away if you interact with it, such as scrolling down or something like that. You can't just click on another button, say "Kontakta oss" and continue navigate. I just won't go away.
how to deal with my issues: "You can call setInvisible(); through the popup reference (in the example called p) and to center it you can add a resize event listener to the stage and in the callback function set the x and y of the popup" Since my knowledge in AS3 i limited
View 0 Replies