Function to change alpha of a movie clip

Hi all, I am having this bit of code not working for me. I want to have a function 'thisAplha'to analyze a mc's alpha stage, and depending on it either appear or disappear it. Basically I am trying to disappear/appear on screen the inv0 mc when you click it.
Actionscripit:
stop(); var mbx = _root.page.MsgBox; var mouseXspace = this._xmouse+20; var mouseYspace = this._ymouse+20; var css = new TextField.StyleSheet(); cssurl = "includes/default.css"; css.load(cssurl); css.onLoad = function(success) {      if (success) {           for (i=0; i<=6; i++) {                this.eval("txt"+i).html = true;                this.eval("txt"+i).multiline = true;                this.eval("txt"+i).wordWrap = true;                this.eval("txt"+i).styleSheet = css;                eval("txt"+i).htmlText = eval("_root.page.data.label"+i);           }      } }; inv0.onRelease = function() {      thisAlpha(inv0);      //inv0._alpha = 100;      mbx.lockCenter(false);      mbx.lockWidth("300");      mbx.setAutoSize();      mbx._x = mouseXspace;      mbx._y = mouseYspace;      mbx.setMsgBoxStyle(_root.page.lessonTwo);      mbx.popup(_root.page.data.text1); }; inv1.onRelease = function() {      inv1._alpha = 100;      mbx.lockCenter(false);      mbx.lockWidth("300");      mbx.setAutoSize();      mbx._x = mouseXspace;      mbx._y = mouseYspace;      mbx.setMsgBoxStyle(_root.page.lessonTwo);      mbx.popup(_root.page.data.text2); }; inv2.onRelease = function() {      inv2._alpha = 100;      mbx.lockCenter(false);      mbx.lockWidth("300");      mbx.setAutoSize();      mbx._x = mouseXspace;      mbx._y = mouseYspace;      mbx.setMsgBoxStyle(_root.page.lessonTwo);      mbx.popup(_root.page.data.text3); }; function thisAlpha(yeah:MovieClip) {      if (this[yeah]._alpha <= 50) {           this[yeah]._alpha = 100;           trace;      }      if (this[yeah]._alpha >= 51) {           this[yeah]._alpha = 0;      } else {           this[yeah]._alpha = 40;      } } 
Thank you all.
Mauricio

code:
stop();
var mbx = _root.page.MsgBox;
var mouseXspace = this._xmouse+20;
var mouseYspace = this._ymouse+20;
var css = new TextField.StyleSheet();
cssurl = "includes/default.css";
css.load(cssurl);
css.onLoad = function(success) {
    if (success) {
        for (i=0; i<=6; i++) {
            this.eval("txt"+i).html = true;
            this.eval("txt"+i).multiline = true;
            this.eval("txt"+i).wordWrap = true;
            this.eval("txt"+i).styleSheet = css;
            eval("txt"+i).htmlText = eval("_root.page.data.label"+i);
inv0.onRelease = function() {
    thisAlpha(inv0);
    //inv0._alpha = 100;
    mbx.lockCenter(false);
    mbx.lockWidth("300");
    mbx.setAutoSize();
    mbx._x = mouseXspace;
    mbx._y = mouseYspace;
    mbx.setMsgBoxStyle(_root.page.lessonTwo);
    mbx.popup(_root.page.data.text1);
inv1.onRelease = function() {
    inv1._alpha = 100;
    mbx.lockCenter(false);
    mbx.lockWidth("300");
    mbx.setAutoSize();
    mbx._x = mouseXspace;
    mbx._y = mouseYspace;
    mbx.setMsgBoxStyle(_root.page.lessonTwo);
    mbx.popup(_root.page.data.text2);
inv2.onRelease = function() {
    inv2._alpha = 100;
    mbx.lockCenter(false);
    mbx.lockWidth("300");
    mbx.setAutoSize();
    mbx._x = mouseXspace;
    mbx._y = mouseYspace;
    mbx.setMsgBoxStyle(_root.page.lessonTwo);
    mbx.popup(_root.page.data.text3);
function thisAlpha(yeah:MovieClip) {
    if (this[yeah]._alpha <= 50) {
        this[yeah]._alpha = 100;
        trace;
    if (this[yeah]._alpha >= 51) {
        this[yeah]._alpha = 0;
    } else {
        this[yeah]._alpha = 40;

Similar Messages

  • Movie clip needs to change alpha of another movie clip

    In frame 3 of my Flash animation, I make a graph animate
    using a mask. At the end of that animation I want a button in frame
    3 whose alpha is set to 0 to become visible so it can be clicked.
    So, within the movie clip of the graph, on the last frame I
    have:
    mc_temp.alpha = 1;
    stop();
    But I get an error stating "Access of an undefined property
    mc_temp"
    The button (set as a movie clip) is named "mc_temp". I don't
    understand why I can't call it directly from the timeline of a
    movie clip.

    because its not on the movieclip's timeline. if your graph
    movieclip is on the same timeline as mc_temp, try:
    MovieClip(this.parent).mc_temp

  • Call actionscript file function from actions panel of a movie clip

    i have a movie clip with an actions layer
    can i call a function from an actionscript file from the actions panel?

    does that actionscript file specify a class or not?
    if not, then use:
    include "yourpath/yourfilename.as"
    on any timeline.
    any function in that as file will be added to the timeline that has the include statement and you reference that function with normal dot syntax from your calling timeline.

  • Trying to change text in a movie clip

    i'm trying to replace text in a dynamic text field within a movie clip, and it seems as if it's treating it like static text. Is there a way around this?
    theBtn1.addEventListener(MouseEvent.CLICK, adjustText1);
    theBtn2.addEventListener(MouseEvent.CLICK, adjustText2);
    function adjustText1(e:MouseEvent):void
        textField1.text = "Foo"; // this works
    function adjustText2(e:MouseEvent):void
        theMC.getChildByName("textField2").text = "Bar"; // this doesn't
    It throws this error:
    1119: Access of possibly undefined property text through a reference with static type flash.display:DisplayObject.

    You don't need to use the "getChildByName" function.
    Try:
    theMC.textField2.text = "Bar";

  • How to change the movie clip a button links to???

    I am working on a website in Flash that had already been
    designed by someone else. There are a number of buttons across the
    website that are linked to the same symbol. Those buttons link to
    movie clips, in the button's actions, that pop up as small windows
    providing more information in regards to the button clicked. The
    problem is that I cannot figure out how to properly change the link
    association between button and movie clip.
    Here is the action script for one of the buttons:
    on (release) {
    _root.scrHEIGHT=100
    _root.scroller.scroller.gotoAndStop(2);
    _root.scroller._x = 100;
    _root.scroller._y = 150.7;
    _root.TM_title = "About Chris Smith";
    _root.READ = 3;
    When I change the number after "root.READ =" it will change
    it to another movie clip but I how do I know what that association
    is based on? For instance if I make a duplicate movie clip how can
    I make the above script link to it? Also, what exactly does that
    last line in the above script mean? When I tested various numbers,
    like 3 and 6, they would link to the same movie clip.
    Please help! This is driving me crazy!
    Thanks!!!

    Hi,
    buttons can be defined with static icon/text, or dynamically via a variable (containing @08\Qtooltip@text for example). You choose the pushbutton type when you define your button using the screen painter. For the dynamic definition, you must tick the "output only" checkbox, enter a global variable name, that you'll fill in your program, preferably using ICON_CREATE function module.
    BR
    Sandra

  • Graphic vs. movie clip

    I'm trying to transition from putting my code in the timeline to putting code in an external ActionScript file. What I'm trying to do is take a graphic from the library and  addChild like I would with a movie clip.  Only the 'Export for ActionScript' box is grayed out.  Does this mean I can't call it from ActionScript?  Should I change it to a movie clip?
    Here's my code:
    package{
        import flash.display.Sprite;
        public class movieStageTest_AS extends Sprite{
            public function movieStageTest_AS(){
                var shipInstance:ship = new ship();
                addChild(shipInstance);

    Graphic symbol is a special static case that has no representation in ActionScript - meaning it cannot by manipulated by code. When you place this symbol on stage - property inspector will not even allow you to give it an instance name.
    I think, historically, because timeline originally was the only place where everything happened the legacy default for any object is MovieClip.
    In short, all these settings are ways to tell compiler what to do with all these variations. Flash IDE workspace dates back to the days when ActionScript did not exist. So, when AS was added - there was supposed to be a way to allow designers to configure compiler via some GUI. When you use other that Flash IDE compilers - you don't have to jump through these hoops.
    For now Flash IDE provides certain advantage that it allows creating vector graphics in the same place and perform basic animations. I think the engine for it is written in other language. I think Adobe is moving away from it. I believe one of the main ideas behind CS suits, from Flash perspective, is to allow creating graphics in more native environments like Illustrator and PhotoShop and export them for ActionScript. Chances are great that in a couple of product generations Flash IDE will be dead. Remember that Flash is originally Macromedia software. Although Macromedia had its own graphics suit after Adobe acquired them it made a great sense to unify product lines. They just cannot abandon their designers/developers base overnight.
    I know it is a bit counterintuitive and, logically, once you created a symbol of a certain type - it seams that you should be able to just use it. But it will not be sufficient if you want this symbol to extend some other classes (mainly custom classes). So Flash IDE has this workaround that says that if I just create a symbol - it will be used at authoring but if I want to add functionality to it and code resides in external classes - I will have to point to somehow indicate it. Basically, you need to say that my intention is to create instances at runtime and the only way one can instantiate anything is to proclaim new SomeObject() - in other words, in order for a symbol to have a clone it must be represented by a class. Thus, in symbol properties it asks you to provide a name of class that you will instnatiate and a class that this class extends.
    I hope I did not confuse you more. It is the way it is.

  • Convert Gaphics into Move Clip

    Here, I am create three files. Box.as for making graphich dimentional box, Drag.as is for dragging movieClip and ShowBox.as is to display draggalbe box. I would like to see box with draggable faclity. But I am getting error followig error.
    Description : 1067:Implicit coercion of a value of type Box to an unrelated type flash.display:MovieClip  on Show Box
    Might be I am getting problem of converting into move clip but I am not sure. Would u mind u you gind me in this problem/
    Box.as
    package {
         import flash.geom.*;
        import flash.display.Shape;
         import flash.display.Sprite;
         public class Box extends Sprite {
              public var box:Shape;
              public var boxWidth:Number;
              public var boxHeight:Number;
              public var boxColor:Number;
              public var boxBorderSize:Number;
              public var boxBorderColor:Number;
              public function Box() {
                   //Assign Value
                   boxHeight=100;
                   boxWidth=100;
                   boxColor=0x000000;
                   boxBorderSize=1;
                   boxBorderColor=0xCCCCCC;
                   box=new Shape();
                   box.graphics.lineStyle(boxBorderSize,boxBorderColor);
                   box.graphics.beginFill(boxColor);
                   box.graphics.drawRect(0,0,boxWidth,boxHeight);
                   this.addChild(box);
    Drag.as
    package{
        import flash.events.*;
        import flash.display.Sprite;
        import flash.display.MovieClip;
        public class Drag extends Sprite
            public var clip:MovieClip;
            function dragBox(myClip:MovieClip)
                    clip=myClip;
                    clip=new MovieClip();
                    clip.addEventListener(MouseEvent.MOUSE_DOWN,startMyDrag);
                    clip.addEventListener(MouseEvent.MOUSE_UP,stopMyDrag);
                    addChild(clip);
                    function startMyDrag(evnt:MouseEvent)
                        clip.startDrag();
                    function stopMyDrag(evnt:MouseEvent)
                        clip.stopDrag();
    ShowBox.as
    package{
         import flash.display.Sprite;
         public class ShowBox extends Sprite
              public var myMask:Box;
              public function ShowBox()
                    myMask=new Box();    
                   myMask.boxHeight=100;
                   myMask.boxWidth=100;
                   myMask.boxColor=0x000000;
                   myMask.boxBorderSize=1;
                   myMask.boxBorderColor=0xCCCCCC;
                   addChild(myMask);
                   var myDrag:Drag=new Drag();
                   myDrag.dragBox(myMask);
                   addChild(myDrag);

    I do not understand. Acutally, I want to drag the box . Thus, I want to make it movie clip throug AS. I have made graphic rectangular but could not convert nto movi clip. Is there any function so that I could change my graphic into movie clip .

  • Loading a pic from a Movie Clip

    I currently have a site that loads pics by rolling over a
    button. I would like to change the buttons to Movie Clips but still
    be able to load the pics.
    In the root of my Flash file I have this action script:
    var myMCL:MovieClipLoader = new MovieClipLoader();
    Then on each button I have this script which loads the pic
    into an empty MovieClip called "container":
    on (rollOver) {
    myMCL.loadClip("images/image01.jpg", "container");
    This script doesn't seem to work when I apply it to a
    MovieClip that I want to fucntion like a button. I need it to be a
    MovieClip because there is other stuff I want the MC to do that a
    button can't do.
    Any ideas?

    I thought that might be the problem but I;m not sure where to
    put "this._parent.container"
    I tried this with no luck:
    on (rollOver) {
    myMCL.loadClip("images/image01.jpg",
    "this._parent.container");

  • Changing movie clip alpha with a button

    Hello all
    I need a freindly nudge in the right direction.
    I need to change the alpha properties of a movie clip with a
    button press, but if the alpha cannot go below 20.
    I have the first part ok but just cannot figure out how to
    limit the alpha change so that it does not go below 20.
    Thanks

    Ok everything works but now there is a new problem.
    if I push the increase button past the alpha == 100 the alpha
    does not change but to decrease it will not change until it gets
    back down to the 100% point.
    Example:
    it takes 4 button presses on decrease to get to 20% alpha and
    4button presses on increase to get back to 100%
    If I press increase 3 more times past 100% then I need to
    press decrease 3 times to get back down to 100% and the 4th
    decrease button will cause an alpha change.

  • Creating functions for movie-clips(serious problem)

    Hello,
    This is I think my third thread on these forums and in my
    previous threads I had always got some help.Well, now I have
    another serious problem, can you help me?
    I am unable to create a function that can control movie
    clips. Let me explain:-
    I have 10 movie clips on the stage and I have assigned them
    that whenever they crash to an object, they will go to a random
    position. Writing this code ten times for each movie clip would be
    very tedious, so, I thought about creating a function, but, it
    doesn't work. Here's the function, can you correct it?
    var object:movieClip;
    function position(object) {
    var testnum1:Number;
    testnum1 = random(290)+36;
    _root.object._y = -77.6;
    _root.object._x = testnum1;
    position(nameofmovieclip)
    PLEASE HELP IS REQUIRED!!!!
    Thanking All,
    Chinmaya

    Thanks for the reply,
    I tried that, it worked!
    But, now, I am encountering a really odd problem. This time
    I'll give you my full code.The problem is, that now when the object
    collides with another one, it changes its position according to the
    code but then after a while, it just passes through the object.
    Here's my code:-
    function position(object) {
    var testnum1:Number;
    testnum1 = random(290)+36;
    object._y = -77.6;
    object._x = testnum1;
    metal.onEnterFrame = function() {
    _root.metal._y += speednum;
    if (_root.metal.hitTest(_root.testline)) {
    position(_root.metal);
    speednum = random(6)+1;
    Can you help me out again,
    Thanks,
    Chinmaya
    P.S. I have tried to use the function like this:
    position(metal), but it doesn't work. And yes, I have already
    defines speednum somewhere before, so that isn't the
    problem.

  • RemoveChild for movie clip that was added in another function?

    Hello everyone.  I have 3 different functions for my preloader.  I have an Event.OPEN, ProgressEvent.PROGRESS, and an Event.COMPLETE.  In the event.OPEN function, I create a new variable that is data typed to the class name of my preloader that I set in it's property dialogue box.  This is just a simple circle animation.  Below is my code for it:
    function addPreloader(event:Event):void
        var myPreloader:mcPreloader = new mcPreloader();
        myPreloader.x = stage.stageWidth / 2;
        myPreloader.y = stage.stageHeight / 2;
        myPreloader.width = 75;
        myPreloader.height = 75;
        addChild(myPreloader);
    My ProgressEvent.PROGRESS function looks like so:
    function preloadImages(event:ProgressEvent):void
        var percent:Number = Math.round(event.bytesLoaded / event.bytesTotal * 100);
        percent_txt.text = percent + "%";
    and my Event.COMPLETE function looks like so:
    function imageLoaded(event:Event):void
        var myLoadedImage:Loader = Loader(event.target.loader);
        addChild(myLoadedImage);
        new Tween(myLoadedImage, "alpha", Strong.easeIn, 0, 1, 0.5, true);
        event.target.loader.removeEventListener(Event.OPEN, addPreloader);
        event.target.loader.removeEventListener(ProgressEvent.PROGRESS, preloadImages);
        event.target.loader.removeEventListener(Event.COMPLETE, imageLoaded);
    The only problem is that when it's done loading, I'd like to remove the myPreloader from the stage.  Since it is declared in the Event.OPEN function, I can't communicate with it via my Event.COMPLETE function.  How can I successfully remove it from the stage after it's done loading?  Thanks!
    Jesse

    Duh, thanks Kglad.  It's been a long week ;).
    Jesse
    Date: Thu, 9 Jun 2011 13:47:57 -0600
    From: [email protected]
    To: [email protected]
    Subject: removeChild for movie clip that was added in another function?
    var myPreloader:mcPreloader
    function addPreloader(event:Event):void
       myPreloader = new mcPreloader();
        myPreloader.x = stage.stageWidth / 2;
        myPreloader.y = stage.stageHeight / 2;
        myPreloader.width = 75;
        myPreloader.height = 75;
        addChild(myPreloader);
    My ProgressEvent.PROGRESS function looks like so:
    function preloadImages(event:ProgressEvent):void
        var percent:Number = Math.round(event.bytesLoaded / event.bytesTotal * 100);
        percent_txt.text = percent + "%";
    and my Event.COMPLETE function looks like so:
    function imageLoaded(event:Event):void
    removeChild(myPreloader);
    myPreloader=null;
        var myLoadedImage:Loader = Loader(event.target.loader);
        addChild(myLoadedImage);
        new Tween(myLoadedImage, "alpha", Strong.easeIn, 0, 1, 0.5, true);
        event.target.loader.removeEventListener(Event.OPEN, addPreloader);
        event.target.loader.removeEventListener(ProgressEvent.PROGRESS, preloadImages);
        event.target.loader.removeEventListener(Event.COMPLETE, imageLoaded);
    >

  • Help with some movie clips and an function...

    Hi all..
    I`m having trouble with an function used to animate two movie
    clips....
    I want to use the function like this " fSwitch("movie1",
    "movie2"); "
    I`ve checked to see if I had typoes but I don`t and the
    scripting looks good to me...
    In spite of this fact , when I test the code or movie i get
    this erros :
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 32:
    There is no property with the name '_x'.
    sItem2._x = 10;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 33:
    There is no property with the name '_y'.
    sItem2._y = 10;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 34:
    There is no property with the name '_xscale'.
    sItem2._xscale = 10;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 35:
    There is no property with the name '_yscale'.
    sItem2._yscale = 10;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 36:
    There is no property with the name '_alpha'.
    sItem2._alpha = 0;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 37:
    There is no property with the name '_y'.
    while(sItem2._y <= Stage.height/2 -1) {
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 38:
    There is no property with the name '_alpha'.
    if(sItem2._alpha <= 97) {
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 39:
    There is no property with the name '_alpha'.
    sItem2._alpha += 3;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 40:
    There is no property with the name '_alpha'.
    sItem1._alpha -= 3;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 42:
    There is no property with the name '_x'.
    sItem2._x +=2;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 43:
    There is no property with the name '_y'.
    sItem2._y +=1;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 44:
    There is no property with the name '_x'.
    sItem1._x +=2;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 45:
    There is no property with the name '_y'.
    sItem1._y +=1;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 48:
    There is no property with the name '_y'.
    if(sItem2._y >=98) {
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 50:
    There is no property with the name '_xscale'.
    sItem2._xscale +=1;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 51:
    There is no property with the name '_yscale'.
    sItem2._yscale +=1;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 53:
    There is no property with the name '_xscale'.
    if(sItem2._xscale >= 100) {
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 58:
    There is no property with the name '_xscale'.
    sItem1._xscale -=1;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 59:
    There is no property with the name '_yscale'.
    sItem1._yscale -=1;
    **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 61:
    There is no property with the name '_xscale'.
    if(sItem1._xscale <=10) {
    Total ActionScript Errors: 20 Reported Errors: 20
    Please help me out :-<
    The code :

    sItem2 is a string and strings don't have _x etc properties.
    "movie1" should be a movieclip, not a string when passed to
    fSwitch() and fSwtich parameter typing should be changed. or
    convert "movie1" into a movieclip in fSwitch()
    to remedy the issue with sItem2, use a reference to your
    movieclip created by attachMovie().
    for example:

  • Time line change with Movie Clip!

    Help, I want a movie clip to interact with another to change the scene.
    this is my code on the "Door":
    onClipEvent(enterframe) {
         if (_root.char.hitTest(this)) {
              _root.gotoAndStop("Game2", 1);
    Game2 is my next scene name.
    but it is not working!
    Why is that!
    the other movie clip's instance is "char":

    Take the code off of the object and place it in the main timeline, modifying it as shown...
    this.onEnterFrame = function(){
         if (char.hitTest(Door)) {   // replace "Door" with the instance name you gave it
               delete this.onEnterFrame;
               gotoAndStop("Game2", 1);

  • AE How to Change the color of a movie clip?

    I have a movie clip of a White Show Avalanche. How can I change the color from White to another earthly color. I would like to post 2 images, one still of the white avalanche and one still image of the color or look I am after. Can you post or attach images to this thread? If so how?
    I am not just trying to change the Hue/Saturation.

    To elaborate on Ko's post: In RGB space, White is presented by full values of 1 (or 255, if you like that better) for Red, Green and Blue. Since there's no differential between the individual components, there's nothing to shift the Hue. Hence you will have to find alternate ways of recoloring your stuff.
    A simplistic way would e.g. be using effects such as Tint, Tritone or Colorama based on the Luminance. A more elaborate way would be cutting up the whole thing in multiple pieces (debris, shadows, waves, edges) and color correct each part individually. In any case you will very likely have to work with multiple instances of your layer and apply some masking here and there.
    Mylenium

  • How to remove a function on the main timeline within a movie clip

    How do you remove a function that is coded on a frame in the main timeline from within a movie clip?  I tried this, but no dice:
    infoGraphicDisparity.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene);
    function fl_ClickToGoToScene(event:MouseEvent):void
        parent.removeEventListener (Event.ENTER_FRAME, parent["enterFrameHandler"]);
        MovieClip(this.root).gotoAndPlay("disparity");
    this is the event I am trying to remove:
    stage.addEventListener(Event.ENTER_FRAME, enterFrameHandler);
    any help would be appreciated as always.
    Thanks!

    from any frame (that executes after enterFrameHandler is defined) in any display object in the display list
    stage.removeEventListener(Event.ENTER_FRAME, MovieClip(root).enterFrameHandler);

Maybe you are looking for

  • Purpose of  Configuration utility and shared services????

    What is the configuration utility ? what is the purpose of this. what is the shared services and purpose. Plese do not say " interview questions, please refer docs" . Please i need a brief just for some idea. Regards Eshwar

  • Mac Pro will not start up. Firmware or graphics problem?

    A really weird thing happened to my MacPro 1,1. It has been working fine for the last 5 years until today when I was running Parallels and suddenly the screen got those thin, horizontal, wavy, purple lines all over the place and cursor turned into a

  • Photo Gallery Porgram

    Hi everyone, hope you are all well. I am hoping someone here will be able to help me with a problem I am having with a photo gallery program I am trying to create. I am using Macromedia Director MX 2004. So basically what I am trying to create is a p

  • White square for .swf file in dreamweaver site

    Hi Apologies if this is a very basic question. I have built a dreamweaver site and embedded a .swf file (a slideshow of photos created in flash) into the page. When I view the page online, the .swf file takes a few seconds to load, and while it is lo

  • Where are the help files?, Where are the help files?

    Where are the help files for iPhoto? When I am in any part of iPhoto and click on "Help," I get a blank page.