Buttons Flicker When I Run Flash Catalyst

Hi,
I'm new to this and have been following the Doug Winnie introduction to Flash Catalyst videos.  Up to this point, everything was working fine, but when I run the state at the end of the fourth video, my buttons flash uncontrollably when I drag my cursor over them.  I have made sure that I've updated all patches and am running OSX 10.6.6 on a 2.8GHz MacBookPro with 8 GB Ram.  The problem occurs in Firefox, Chrome and Safari. 
Any help is greatly appreciated.
Thanks,
John

I actually would look at the OVER state of the button. You may not have any graphics in that state, or your graphic's visibility might be off.
Chris Griffith

Similar Messages

  • Unable to run Flash Catalyst

    I work in a college and we are having problems running Flash Catalyst CS5 under student accounts. Staff and Admins can run the programs fine but when students run FC they get the following:
    An error has occurred. See the log file \\socapp02\Application Data\Adobe\Flash Catalyst\configuration\1295616721438.log
    The annoying part is that the path it has saved the log to doesn't exist and I can't find the log on the local station, user area or server!
    There isn't a huge difference between the staff and the student accounts - they are both locked down quite tight. We have added the student user into the staff AD groups but no difference. Other CS5 titles are fine.
    Anybody any ideas on where I can go next?!
    Thanks in advance.
    Simon

    Hi there,
    I'm sorry to hear that you have not been able to run Flash Catalyst. I'd like to ask a couple questions and maybe we can go from there.
    What is the install location of Flash Catalyst?
    Are you using Flash Catalyst CS5 or the preview of Flash Catalyst Panini?
    What is your home directory? (you can take out any personal information, I'd just like to see the path structure)
    What operating system are you using?
    Kind of a wide smattering of questions, but hopefully they can give us some clues.
    -Bear

  • Button flicker when viewed with a Mac

    Hi. I'm seeing a button flickering issue when I view my flash website on a Mac. I tested it on a PC and it looks fine but with a Mac it flickers.
    Here is how I created my buttons.
    I imported an image to the stage, selected it, pressed F8 and converted it into a symbol. I then double clicked it and added an over frame with a different image. In the action script, I put this code in:
    import flash.events.MouseEvent;
    B_Contacts1.addEventListener(MouseEvent.CLICK, ContactsClick1);
    function ContactsClick1(event:MouseEvent):void {
        gotoAndStop(6);
    All this works properly. The link works properly and the rollover effect works fine. The issue comes when the button is clicked though. When testing within flash, if the button is clicked, there's a split second when the mouse off image is shown then it comes back to the rollover image (because the mouse is still lying on top of the button). When testing in a browser on a Mac, the button actually disappears for a split second and comes back to the rollover image (the mouse off image is never shown). When testing on a PC, the button works fine. Does anyone know why this is happening and how to fix it?

    STAR!!! You did it. That got the brain thinking. My player wasn't actually the top layer in the area. The box behind it I had somehow moved in front of it. Why it worked on everything other than a Mac running 10.5.x I don't know, but it's pretty amazing that it did that. Anyway I owe you one. Thanks for the great idea.... my brain had just stopped.
    Very Gratefully,
    Steve

  • Can Adobe Connect run Flash Catalyst documents?

    I want to create a prize catalog tool that employees can browse within Adobe Connect while attending an event meeting. I created a test document with Flash Catalyst just to make sure I could upload to Connect, and it's a good thing i did. When I uploaded the .zip file to my content library inside Central Login, I could click on the content link and it opened in its own window and worked beautifully. However, when I tried to navagate to that file from inside a share pod, it didn't come up on the list of supported documents, and it wouldn't let me load the zip file directly into the share pod from my computer, either. I noticed that the base file for Catalyst creations is main.swf. Connect accepts SWFs and flash files that contain SWFs, but they must also have an index.swf file, and the files that Catalyst generates don't include one. Is there a way to change that, or anything else I could do so that I can use Catalyst to create my app for inside Adobe Connect?
    Thanks in advance for your time and expertise,
    -Pauline

    Well, Connect 8 supports files from Flash Professional and from Adobe Flex. I've not seen any integration with Flash Catalyst. Adobe Connect came from the Macromedia acquisition and so is a Flash app running on top of the Flash Player but we recommend using Adobe Presenter and Flash Professional or Adobe Captivate or Adobe Flex as tools to create content. If I see any mention of Catalyst I'll post but to date I've not seen where we support it.

  • Plot legend flicker when in RUN mode

     Hi all,
    i have written a code in LV to acquire data from 12 sensors and display them. In the waveform chart I tried renaming the legend. When I run the vi, the legend name flickers to module name and channel name. I am attaching a snapshot to give you guys a clear idea.
    The vi is also atttached.
    Any help is appreciated.
    Regards,
    Arihant
    Attachments:
    plot legend issue.png ‏46 KB
    Temp meas using DAQmx.vi ‏39 KB

    I think it's flickering because you placed the code that writes the plot labels inside the while loop, so at each iteration you re-write it, just place all that code before the while loop, so that it executes only once before you get into the loop.
    And also since you're using waveforms, DAQmx automatically includes metadata with your channels, if you want you have to remove those metadata plot by plot.
    You can also optimisze a bit the code to write all the plots' names. See attached VI.
    Hope this helps
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"
    Attachments:
    Temp meas using DAQmx.vi ‏29 KB

  • Why are certain keys disabled when I run Flash Player?

    I am building a resource for my students which allows text entry into a text input text field. When I try to type the answer a number of keys are disabled. I have tried disabling keyboard shortcuts in the Flash editor. I have then tried closing the program and just running it in the stand alone Flash Player. The list of keys that do not work are given below.
    The keys that do not work are 5,6,8,9,0,P,J,K,B, and X. I have not tested other alphanumeric characters.
    the Flash Player version is version 9.
    I am using Adobe Flash 5 at home but save as version 4 for use in school. I am running ActionScript 2. 
      Regards
      teacheRuss

    Kglad
    I am not detecting any keys. My Flash file is the start of a simple quiz. ans1 (in the code below) is a text box instance. The actionscript compares what is typed in with a number of given answers. The trouble is if I make questions that need any of the keyboard keys that do not work then the anser cannot be inputted. Thsiis my problem.
    Code given below:
    Q1.onRelease = function() {//Q1 carries out this function when
                                //the mouse is released Q1 is hte button named and is assigned this script
        trace(ans1.text); //ans1 is the variable name for the data entry box. The trace
                            //method traces ans1 text entered in the output window
        if(ans1.text == "-1" || ans1.text == "minus 1" ||
           ans1.text == "Minus 1" || ans1.text == "Minus one" ||
           ans1.text == "minus one") //checks the data entered into the box where ==
                                     //is equal to and || means OR
             _root.gotoAndStop(3) // if ans1 is equal to any ofthe above the playhead jumps to frame 3
                                   // for the welcome message then closes correct condition
          } else  {                  // else allows the playhead to jump to frame 4 with the
                                    // incorrect answer
             _root.gotoAndStop(4)
          }                        // closes the incorrect condition
    }                            // closes the script

  • Can't find chart.swc components when importing a flash catalyst project into flash builder.

    How do i import chart chart.swc compnents into the flash project?

    When I access the webpage in Chrome, then access the developer tools, I get this error
    Uncaught ReferenceError: swfobject is not defined
    I think this might be the source of your issue.
    Chris

  • How to stop button flicker when you mouse over?

    http://happynick.com/sheflash/main246.html
    After the intro video,
    When you mouse over "the films" button, it flickers once.
    why?
    When when mouse over "the company" and "contact" buttons, it
    does not.

    Sorry, my 20-20 eyes are missing it. Maybe my iMac is rendering things quicker than your laptop.

  • My iMac just shuts down when running flash facebook applications, after I upgraded to Mountain Lion...Any ideas?

    After upgrading to Mountain Lion, quite often, and when I run flash facebook games, PC freezes and restarts... Any ideas??? Had no problems before with previous OS...

    I think I figured out Firefox, I went under Help > Troubleshooting Information > Reset Firefox.
    I only have one account on my computer. Honestly I don't even really know how multiple accounts work. I've never played around with it. I already allowed Java - should I disable it?

  • Flash Catalyst cs5 killing my cpu..

    Hello everyone. I have searched for something on this but cant find anything. I also know that Flash is a CPU hog. But when I load Flash Catalyst cs5 I open a new work project and dont have to do any work but in a matter of minutes of sitting there the cpu usage is up to around 80%. I have tried uninstalling and reinstalling with no fix. If this is a common problem please let me know otherwise im done with Flash Catalyst cs5. BTW my pc is running windows 7 64bit with duel core processor and 4gig. memory. Thank you

    Also using Flash 16 (0.0.296) with Firefox 35.01, although on Win 8.1, and also having freezing up of my FF browser, and extreme CPU usage -none of which happens when I am just browsing text files on the internet or disconnected and simply using an off-line program -it only happens when flash content is added to the equation of my FF browser being connected.
    I am also getting stream error 2032 on many flash sites, or the FP is not loading at all (just a white screen, and though the .swf file shows in page info, there's not even a flash frame on the page). One developer I contacted because I could not access his flash content resolved the stream error I got on his site by making available a different embed code, but that's not a practical solution for every site owner and content developer (because many don't understand that it's a stream problem, or how to fix it).
    There's a lot of problems and questions on the Flash forum from FF users having problems with FP, few seem to have answers, and many are historical issues eg spanning many updates and successive versions of Flash. Just asking if people have tried using another browser doesn't solve these problems for people using FF; it seems to be a FF issue.
    I'd really like to see some resolutions for problems* that FF users consistently have with flash; I'm just about tearing my hair out over it. 
    * crashing, script loading problems, stream errors, flash content not loading....

  • My Macbookpro shuts off after running flash

    Hi Everyone
    My Macbook pro shuts down when I run flash programs...it's not all of the time though. I can get away with some video sites, like YouTube...but when running more intensive .swf's such as games, my macbook pro shuts completely off like a desktop computer losing power. It sounds like a fan on the right side of my computer turns on for half a minute and then the whole thing shuts down. I can use this as a warning to close down all of my programs, which sometimes prevents my computer from shorting.
    I know that flash is a rather memory intensive program, especially on macs. Id assume this is a heatsink problem, but I'm wondering if it's my memory.
    I can't remember when I first started having this problem but it might have been around when I upgraded my ram to two gigabytes.
    my macbook pro is the very original, 1.85 ghz
    I can't remember what ram was in it...it was the stock apple ram, 512 megs.
    I now have
    2 GB 667 MHz ddr2 sdram inside. If you guys don't think ram could do this I will take it to a genius bar.
    thanks!

    I'm gonna have to wait on the hardware test...unfortunately my install disk is packed far far away..but I'll be able to get it eventually.
    The upgrade was a good recomendation, I thought it was going to work...played a game for about 15 minutes, and my computer shut down...
    As far as my computer reaching the a critical heat...it just seems funny to me that this is isolated to only flash.
    I primarily use this computer for work...For a long period of time every day I am running a combination of photoshop, illustrator, dreamweaver, indesign, etc...along with itunes, mail, sometimes quicktime. It's only when flash comes into to play either combined with other programs or just a flash swf running through firefox that my computer shuts off.

  • Flash catalyst cs5.5 not working when i run the project

    when i ran prodjects in flash catalyst cs5 it came up as a webpage that could scroll, now in cs5.5 when i run the prodject it cannot scroll and it doesn't scroll when you export for web servers, help much apreciated.

    Vijetha wrote:
    Hi all,
    The Horizontal & vertical scroll is not visible or not working when i run the form.
    I have set "Show Horizontal Scroll Bar" to "Yes" and  "Show Vertical Scroll Bar" to "Yes" in the WINDOW Property.
    I have  set "Show Horizontal Scroll Bar" to "Yes" and  "Show Vertical Scroll Bar" to "Yes" in the STACKED CANVAS Property .
    But still the Horizontal and Vertical Scroll Bar is not working when i run the Form.
    Help me with this please. How do i make it visible??
    Oracle Forms 6i..
    Thank You.
    hello vijetha,
    window and canvas show scroll bar when it need.
    You should show block property
    and set block scroll bar
    hope this helps..
    Hamid

  • Unable to run project: illegal character in path - Flash Catalyst CS5.5

    Environment is a new install of Windows 7 x64 on a new Dell workstation in an Active Directory environment. Until fall of last year, we used redirected folders for the Application Data folders until issues with Adobe Reader 9.x forced us to abandon that and we reconfigured our network not to use redirected folders. We have not experienced any issues and all programs are using the Application Data folder on the local machines.
    Just installed Adobe Master Collection on a new workstation and all Adobe applications are using the C:\Users\cballew\AppData\Roaming\Adobe folder including Flash Catalyst. However, when I try to Run Project in Catalyst, it created a folder named Application Data using the network path to where we used to store the Application Data folder and is saving its workspace there. No other programs (including Adobe products) are doing this. Any ideads of how to fix it?
    Error message:
    Unable to run project
    Illegal character in path at index 47: file:///////xxxx.corp/home$/cballew/Application Data/Adobe/Flash Catalysts CS5.5/workspace/Project/bin-debug/Maim.html

    This seems to be configured in an ini file located at C:\Program Files (x86)\Adobe\Adobe Flash Catalyst CS5.5\configuration\config.ini
    [email protected]/Application Data/Adobe/Flash Catalyst CS5.5/workspace
    [email protected]/Application Data/Adobe/Flash Catalyst CS5.5
    [email protected]/Application Data/Adobe/Flash Catalyst CS5.5/configuration
    Can anyone tell me where the variable @user.home is defined and whether I can change it or not? I might find that some of the other applications might experience this same issue

  • How to make a fullscreen button for Flash Catalyst?

    Hey everyone.  I really hope someone can help me with this.  How can I make a fullscreen button in Flash Professional that would make my Flash Catalyst project go fullscreen?

    I'm sorry I really don't know Flash Catalyst as much as I'd like to. Designing interfaces is left up to me, no designers at my agency use Catalyst. Though this is the Flash forum so that's as much as I can tell you. I didn't know Catalyst didn't support basic scripts (I thought I read that it did).
    Ultimately, for a very cheap price you can do something like go to http://www.lynda.com/ and buy a membership. Dirt cheap compared to what you get. They offer many courses on all this stuff and I'm sure your answer would lie in one of the (nicely broken up by subject) video training videos.
    Just searching for Catalyst brings up a bunch of courses:
    http://www.lynda.com/search?q=catalyst&x=0&y=0
    edit:
    For instance I watched the essential CS5.5 training and I saw in 2 minutes flat that when you click on a button you should have an "Interactions" panel that lets you do things. If they didn't put fullscreen as an interaction that's another thing but I'm just pointing out it's very easy to learn how to do all sorts of things in video training. If you do not want to purchase a membership there just find a video you think would have the info in it and I'll watch it and let you know if it told me how to do it, and how to do it.

  • Warning when trying to install flash catalyst

    I get this warning when I try to install Falsh Catalyst:
    Support for CPU extension SSE
    This product does not support PowerPC architecture CPU.
    Is my computer too much of a dinosaur or something? It's a G5. Help

    Thanks for the input Arthurlock,
    This is such a bummer. You guys aren't alone in your disappointment. I was extremely excited too. Thank you two for posting. I finally found a relevant post after 5 hrs and change. I couldn't figure out how to resolve this same problem, and I was too stubborn to give in. All I needed was a simple answer, as Arthur stated.
    That said, what are our options? I've been running around in circles trying to figure what my next steps should be? ... Any input is welcome. I really don't want to purchase another computer to be able to use the new adobe software. I guess I didn't realize my computer was turning into such a dinosaur...
    "Sorry Mac Daddy, no more Christmas Flash Catalyst for you... "
    Running on:
    imac 1.6GHz PowerPC G5
    OSX 10.5.8
    Thanks,
    Brandi

Maybe you are looking for

  • How have people fixed cd burning prob in itunes 8.2?

    Hi there Ive read all the posts about CD burning in itunes 8.1 and 8.2. CD's wont burn and itunes just hangs until I force quit. Anyone ayone suggestions? Is there another way to burn a CD with itunes music, like a software download. Tracy

  • CS6 compatibility with older macs (2007-2008), using Mavericks 10.9

    I've heard about compatibility issues with older macs (2007-2008) when trying to run Adobe Creative Suite 6 Master Collection CS6 with Mavericks 10.9. Right now I'm using CS6 on my existing mid-2007, with Mountain Lion, -works great, and I'm worried

  • 802.11: "Preferred networks" vs. "A specific network"

    I've got a new MacBook Pro and it appears that -- at least in my opinion -- has eliminiated one of the key advantages OS X networking has over Win XP. With my G4 PowerBook, I can create a one-to-one relationship between locations and network access p

  • MIRO; Determinatoin of Profit Center

    Hi Guys, Please share your views on this query: While doing MIRO, the system is deriving profit centre from the account assignment ignoring the profit center which is getting entered manually. At the time of PO creation, the material used, does has r

  • Can't download Apps on iTouch

    From left to right, this is what it looks like when I try to download an app. If I press install it just turns blue Its like this on all the apps Anyone know how to fix this? Updating and resetting didn't work. Its been like this since Saturday. Than