Button problems on website in flash 8

I just started using flash, but I am getting a bit better. I
purchased a template through monster and have slowly picked up on
flash. Here is my problem and forgive if I use incorrect
terminology or seem ignorant...
I have a page on my site that has 4 buttons on each
side...movie clip over a button...looks like a bar with a small
arrow movie clip on the end. I am sure you know what I mean. When
you roll the mouse pointer over the page it obviously is supposed
go through its actions and alert user there is a link. If I put my
code on the movie clip, you have to move the mouse over the arrow
to show the link. If I put my code on the button layer, it causes
all 8 of the buttons to have the same action/link and if I change
one it changes all.
What am I doing wrong? I can't seem to figure it out. Here is
the code...
on (rollOver) {
if (_root.link<>15) {
gotoAndPlay("s1");
on (releaseOutside, rollOut) {
if (_root.link<>15) {
gotoAndPlay("s2");
on (release) {
if (_root.link<>15) {
if (_root.link == 7) {
_root.bl.gotoAndPlay("bl2");
_root.lns.gotoAndPlay("ln2");
_parent["item"+_root.link].gotoAndPlay("s4");
_root.link = 15;
k = 1;
_root.pages.gotoAndStop(_root.link);
gotoAndPlay("s2");

That is a CSS issue on your machine.  The solution can be found here (3 posts below yours): http://community.skype.com/t5/Windows-desktop-client/Cannot-sign-after-update-weird-screen/m-p/4034115/highlight/true#M353524 

Similar Messages

  • Flash link(button) problem via xml link (Flash popup error)

    hi...
    I'm getting a problem when i run a swf file from HTML/Outside(i mean to say from folder) and click on the button (button calling xml file which has link in it), i get a adobe flash popup error/msg. As shown below....
    my codes are as follows
    XML CODE:
    <?xml version="1.0" encoding="utf-8"?>
    <tree>
    <link>
    <port>http://www.marcomanie.com</port>
    <news>http://www.asdfmanie.com</news>
    <gallery>http://www.wesdmanie.com</gallery>
    </link>
    </tree>
    My flash codes are as follows
    LOADING AS
    function loadXML(loaded) {
    if (loaded) {
    _root.port = this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue;
    _root.news = this.firstChild.childNodes[0].childNodes[2].firstChild.nodeValue;
    _root.gallery = this.firstChild.childNodes[0].childNodes[3].firstChild.nodeValue;
    port.text = _root.port;
    news.text = _root.news;
    gallery.text = _root.gallery;
    } else {
      trace("file not loaded!");
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("linker.xml");
    BUTTON AS
    on (release) {
    getURL(_root.port, "_self");
    Pls let me know what i have to do, to get away with that error
    im very much new to these kind of errors, any fast help will be appreciated.
    thank u
    sunder

    fix your security settings to trust that swf:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.htm l

  • My 14.1 firefox , websites with flash contain or videos don't work & youtube give me a message "an error occurred please try again later"?

    '''Hi,
    my 14.1 firefox , websites with flash contain-like game website - or videos don't work & youtube after I press the play button give me a message say "an error occurred please try again later", I 've tried to reload the flash again but nothing seems to work out?
    Thank u..'''
    ''Duplicate post, continue here - [https://support.mozilla.org/en-US/questions/934607]''

    Can you open up your Real Player and tell me what version you have? I think Real Player 15.0.6 is supposed to fix this problem. There was a conflict between Real Player and Flash this whole summer that broke Flash videos. Real Player released a update that might help in your case.
    If that doesn't help, I think a addon might be to blame here. So do this:
    <br> '''Firefox button <img src=https://support.mozilla.org/media/uploads/images/2012-03-27-09-22-48-1204f1.png> > Help > Troubleshooting Information'''
    <br> (or '''Tools > Help > Troubleshooting Information''')
    Then click the "Copy all to clipboard" button then paste it here. It will tell us what addons you have installed and I can see which one might be causing problems.

  • A few questions on making animated buttons for a website Nav

    Hello, I have a few questions on creating some animated buttons for a nav.
    There are 2 actions I want to trigger on moue over.
    If I want to use a static (PNG) image that I created in Photoshop for the actual button, can I use that? I want to smoothly slide button down on mouse-over and slide back up on mouse off. If I push part of the button off the "canvas" (sorry, this is coming from a Photoshop guy) will it disappear in the final animation? Another way to put that is, if I put an animated element off the white area, will it no longer show up in the movie (.swf) when it's published?
    For the second part; you can see a bit of what I want to do if you look at this website's top Nav: http://www.photoshopsupport.com/index.html
    I need the "light" above the button and it's going to be on another colored <div> so I can't set one solid BG color for my flash document. But I want to achieve the effect of the "bar" lighting up above the button and the actual button sliding down upon moue over.
    Any help you can provide would be greatly appreciated.

    Hi,
    Regarding this button problem mentionned by kglad, it is easily overcome with a little trick.
    I call this the undesired "jumpy button". Your button starts to hesitate down-back-down-back quickly, like it's a bug, and then it settles.
    What you could do is create a simple sprite or movieclip containing only a simple shape, whatever the color, put it on top of your button's graphic, change this sprite/movieclip's alpha to 0, then add your mouse events on this invisible "target" instead of your graphic. So, when you mouse over, you have the graphic move, not the invisible "target".
    Sometimes, for this invisible target, you will be using a movieclip, not a sprite, so you can easily add your own properties on it.
    Example:
    var graphicBtn:Sprite; // your png
    var targetBtn:MovieClip; // your invisible target, created with code or not
    targetBtn.graphics.beginFill(0x000000);
    targetBtn.graphics.drawRect(0, 0, graphicBtn.width, graphicBtn.height);
    targetBtn.alpha = 0;
    targetBtn.mygraphic = graphicBtn;
    targetBtn.addEventListener(MouseEvent.MOUSE_OVER, onOver);
    targetBtn.addEventListener(MouseEvent.MOUSE_OUT, onOut);
    addChild(graphicBtn);
    addChild(targetBtn);
    function onOver(event:MouseEvent):void
         TweenLite.to(event.target.mygraphic, 0.25, {y:40, ease:Back.easeOut});
    function onOut(event:MouseEvent):void
         TweenLite.to(event.target.mygraphic, 0.25, {y:0, ease:Cubic.easeOut});
    So you see, you can have only one function (well, 1 for over, 1 for out) used for all your buttons. You can add as many properties you need on your movieclip to make that one-function flexible.
    Here I used GreenSock's tweening engine, but use the one you prefer (Here, I am moving the graphicBtn in y for 0.25 second).
    Design Cyboïde
    Création de sites web

  • **URGENT** Scene button problem!

    Why my 'maps' and 'video' buttons do not play the movie? I use this code:
    on(release){gotoAndPlay("play");}
    I have labelled "play" in other scene, but it does not play the movie!
    I have tried this code:
    on(release){gotoAndPlay("Scene 36", "play");}
    Still, it does not work as well! I got deadline this week, so I need your help ASAP!
    I got other button problems on every scene! It's frustrating!
    Please download my flash file to look at my flash product!
    http://www.4shared.com/file/24177440...6d/Maps_1.html

    Nope it doesn't work , I got my deadline this week and if you got a spare time, would you please download my flash and check and repair it please! Only two buttons need refitting and nothing else! I asked my teachers, they tried their best and couldn't find what the problem is. I looked through other forum website, I tried the solutions and it doesn't work! I am really behind as there are many failure in my project! This is my first flash creation.

  • Simple button problem

    I am having a real problem creating a simple button - I have
    created a Flash file using Action script 2, and when I create a
    simple button - text with a rectangle as a background, (see
    http://www.elkhavenestate.com),
    and the over state is behaving in a bizarre fashion. This is my
    first time using CS3, so is there a new control that I'm
    missing?

    I take it that it's the Home button. It appears to have a
    selectable text field or something in it, which is causing the
    problem. Either change that to a static text field or set its
    selectable property to false. The other two buttons appear to be
    fine, so maybe you can just duplicate one of them and turn it into
    the Home button.
    If I picked the wrong button, let me know.

  • Konqueror browser for Linux has an useful CPU limitation feature for websites using Flash content. Can you add such a feature in Firefox?

    I have recently found that Konqueror browser for Linux can help user to limit cpu usage while visiting a website using flash technology by changing settings in the Flash section and adjusting the slider from VERY HIGH settings to HIGH and MEDIUM and so on. It actually works, and it does not have a direct impact on the general performance for flash player but it may generate some conflicts if other extensions such as add-blocker or click-to-flash are enabled also.
    Maybe you can add a similar setting in Firefox in the browser option section or just as an useful addon or extension.

    Sorry for being late with my reply. I've just tested that addon that you mentioned in your post ( https://addons.mozilla.org/en-US/fire.../system-monitor/ ) , it looks like a system monitor and nothing more than that.
    As for the memory tip ( about:memory ) I agree that it can be extremely useful for users that have less than 1 gb memory installed on their system. I know very little about computers but I can tell your tip for optimizing memory usage in firefox has merits.
    Me, I have another problem with cpu overload in Firefox, Internet Explorer, Opera and most of the browsers with flash support enabled. Each and every time time I visit a page that features all sort of adds and gadgets based on flash technology, and each time I try to watch a video online my cpu goes all the way up to 100% and stays there until i finally decide to close the browser.
    I am running winxp and also linux on a Dell Optiplex GX260 machine with 2000 MHz cpu, 1024 Mib ram and 128 Mib video card, it is not the best computer in the world but still 2000 MHz should be enough for a limited and uneventful web experience.
    It is not as much an issue with the web browser, any browser, the whole problem is caused by funny people claiming to be deeply involved with web development, and promoting flash technology for ages instead of choosing other alternatives, more user friendly. All I am saying is that flash ruined the entire web experience making people to believe that they actually need dual-core cpu and coreduo and deepfreeze cpu and so on which is only partially true.
    I always get better results for cpu usage when watching online videos that use media player as default player and not flash player, and my cpu stays below 70% usage which is not much but still it is not 100% usage.
    Konqueror offered me a nice surprise, and I was able to limit cpu usage once I moved that slider from Very High setttings for flash player to Medium settings. I got something between 80-90% cpu usage as a result, and I was very pleased to finally see a working solution to my problem at least for linux if not for windows.
    The only other browser that I can use for windows only, which handles both flash player and cpu usage well is Kmeleon browser which is a long forgotten project but does offer nice features once you find some plugins that it needs to make it come to life again.

  • Problem playing an imported flash template in dreamweaver cs5

    hi,i just downloaded a flash template from flashmo.com and imported it to dreamweaver cs5 through Insert > media > SWF and it loaded. but the problem is, when i click the live view or play the file in the properties,nothing shows up.except some texts "loading XML data..."
    all the flash templates i have downloaded face this prob. i have no idea where is the mistake.
    what could be the problem?any help,plz.

    From their website:
    " Adobe Flash (version 8 or higher) is required to edit the
    FLA file.
    - Use the source codes at your own risk after downloading and
    flashmo.com is
    not responsible for any bugs or errors caused by
    ActionScripts."
    Do you own Flash? Are you familliar with action scripts? If
    not, then you
    probably want to start with a plain html template and learn
    how to code html
    and CSS. Flash sites look nice but they are not friendly for
    Search Engines
    or users who don't have flash player installed on their
    system.
    Here are some on-line tutorials to help you get started with
    html and CSS
    code:
    www.w3schools.com (free)
    www.Lynda.com (pay videos)
    Adobe help - "Getting Started"
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "jdbcmcbride" <[email protected]> wrote in
    message
    news:ftr2vf$i4q$[email protected]..
    > I am a first-time user of DreamWeaver and am currently
    learning how to
    build a
    > website with the Adobe HTML article that they have.
    However, I found a
    flash
    > template that I downloaded as it is exactly what I want
    to use for my
    website.
    > My problem is, I don't know how to make it work.
    >
    > The template is located at
    http://www.flashmo.com/home
    and it is the one
    on
    > page 5 called "037 Wooden". If anyone can tell me what
    to do to get this
    to be
    > my website, I would really appreciate it.
    >

  • Masking Buttons problem...

    Hello All...
    I am trying to create a website using Flash CS3. I want to
    have my navigation appear with a mask when seen on the site. I
    created the buttons in a movie clip and each button is an actual
    button. When I place a mask over the buttons and then preview it in
    the SWF the mask works but my action 3.0 code does not work with
    the mask.
    This is the code I have used for each of the buttons in the
    movie clip:
    nav_mc.home_btn.addEventListener(MouseEvent.CLICK, gotoHome);
    function gotoHome(event:MouseEvent):void {
    this.gotoAndStop("Home");
    Any suggestions out there?
    Thanks in advance!
    ~Stephen

    sorry friends for bottering u but i am still not getting it
    .I think i understood the basic as but when i try myself it doesn't
    come out.i am sending this .fla file .Please go through it and tell
    where i am getting wrong.
    http://www.hostmyfile.co.uk/?code=bda86442c819993c1cfc3afbac96bd3f

  • Websites with flash content are causing tremendous CPU usage!!

    Greetings!
    I finally installed the long-awaited version 4 of firefox, and I am really disappointed. In addition to slight sluggishness now and again, it turns out that websites with Flash content (even those sites with a little flash advertising banner) are causing my CPU usage to really go up.
    It's slowing down my machine, making my CPU fans spin loudly, and making for a disappointing web browsing experience.
    I have disabled all add-ons, and done the usual. Even tried installing Chrome for the first time ever!
    The problem is definitely Flash + Firefox 4.
    I have created a brand new profile, but no dice. Wondering if anyone else experiences a high CPU load on pages with flash...

    Adobe Flash Player has also been crashing periodically on 2 of my computers, I'm still running XP, one of them a powerful HTPC, Dell Optiplex 755 SFF over a new Cable Internet Connection. Buffering, Lagging, crashing when streaming video for Catchup TV (Freeview) via Firefox Adobe Flash Player Add-On, does not happen on Youtube though. Lagging & Crashing does NOT occur AT ALL in Google Chrome, but I hate that browser.
    Have tried the usual disabling Flash Hardware Acceleration + Protected Mode, setting storage to Unlimited, disabling FF Ad Blockers + Hardware Acceleration, cleaning Caches, updating program versions, everything bar reinstalling programs. It's not happening in Chrome, why in Firefox?

  • My phone won't power up, and buttons at bottom of screen flashing on / off

    My phone was low on charge and shut off on it's own.  I did let it charge up for a while, I did not turn it on.  Then later tried to power on, but it did not respond.  Tried holding in the power button to power it on repeatedly to no avail.  Re-plugged into the charger, and the bottom buttons began to flash on about every 4 seconds.  Tried unplugging, and removing the battery, re-inserting battery.  got No response when attempted to power up, but figured battery may have been too low.  Plugged in - flashing. unplugged, removed battery and then replugged in - started flashing again....  screen remains off, only the 4 'buttons' at the bottom are flashing (white)
    Anyone have this problem before?  I will try to leave it plugged in, thinking maybe when charge is brought back up, perhaps it will work???.... but it concerns me that it continues to flash...
    Any suggestions?
    Thanks
    Judy

        Ahh! Let's ensure your device completes the power up, Judy521. How long were you allowing the device to charge? Is the device able to power up in Safe Mode? http://vz.to/19woIwa
    YosefT_VZW
    Follow us on Twitter @VZWSupport

  • Making website in flash professional 8.

    Is there any tutorial in flash professional 8 help for making a complete good looking website (scrolling content with menu buttons)
    like this:
    http://www.flash-game-design.com/flash-tutorials/advancedWebsite.html
    the tutorial steps in the above mentioned link not correct completely i mean after follwoing all the step i was unable to creat same one.
    (drop down menu not appearing)
    if you know same kind of tutorial or .fla file on another website, please inform me.
    thanks in advance.

    I've only seen 1 tutorial about making flash web sites and it uses flash 8 AS2 it's all actionscript but a very good tutorial
    http://www.lynda.com/home/DisplayCourse.aspx?lpk2=202

  • Naming Buttons - Problem with using Captivate 7 Buttons to Open URL or File

    After spending too much time troubleshooting a button problem, I discovered the importance of naming each item in a Captivate project.
    For some reason I have yet to figure out, publishing to SWF from Captivate causes buttons to function arbitrarily. In my case, I had eight buttons pointing to external URLs, three that worked and five that didn't. All of the buttons pointed to the same external website, only to different PDFs hosted on that site. Each button was named with the default "Button_X" convention as set by Captivate. After trying lots of different settings adjustments, On Enter and On Exit actions, and Play/Pause timings, I did what I should've done from the beginning; changed the names of the buttons.
    Why this worked? I don't know. I've seen hints on other discussions as to SWFs not working well when there are a lot of unnamed or default-named items. If there's some logic to this I would be happy to know it, but for a default setting to cause such a bizarre problem is beyond my comprehension. I could understand if I had named the buttons incorrectly, but I didn't do anything to them; I left them with the names created by default.
    Hopefully this helps someone else resolve a similar issue and, if anything, encourages everyone to follow best practices and use a clear file naming conventions for all projects.

    Hi there
    Perhaps the link below will help?
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Please Help button problem drives me mad

    hi
    I need help I am making a web site for a friend who has a
    small company. I am trying to create an intro from which the user
    can chose his language. I ve made 4 buttons which when i test the
    movie by pressing ctrl + enter works fine they leed to the desiered
    page the problem comes when i upload it and embed it in my html
    page they don't work at all the only button working is the mute
    button.
    I am using flash cs3 you can download the fla file from this
    link
    http://files-upload.com/files/655393/index.fla.
    you can see the page i am talking about at
    site

    thank you for your reply but i solved the problem I needed to
    type _root infront of the getURL code.

  • Torch Help! Screen not turing on but buttons and red light is flashing

    Hi,
    My torch has had the problem of screen functioning, it is just a black screen but buttons light up and led flashes red.
    Thanks

    I have tried this, blackberry works find but nothing id displayed on screen, just blackness. red light blinks and buttons are lighted up a if it is on.

Maybe you are looking for

  • DB 10g 10.2 -- JDev Studio and Forms/Reps 6i ?

    Hi guys, Just installed DB10.2 and JDev Studio (10.3) on my Dell Inspiron 6000. A few things Im hoping you can clear up for me as this is the first time Ive installed any Jdev components. 1. Can I install Forms/Reps 6i on top of all this without any

  • A Report who finds WBE in set with a massive sort criteria

    Hi, I'm looking for a Report who finds WBE in sets  (Groups) with a massive sort criteria because KJH3 has only a "one by one" sorting criteria. Thanks Giovanna

  • How can i fix error massges on my airport utilitus

    i have some error masseges on my airport express like IP address\static\pope account name and password and service name

  • JPopupMenu bug 4245587

    This bug details a problem where the popup menus appear 'behind' the windows taskbar if the popup appears at a place where it may be obscured. Various work-arounds have been posted and I have one that works (just). My issue with this is more general.

  • Premiere Pro CS6 settings problem

    Hi, I was wondering if someone could help me. Basically, I've been trying out a number of settings and even making custom ones while using Premier Pro CS6 but cannot get them right. I record with a Nikon D5100 in the 1920x1080, 25fps. I want to post