Flash sites causing corruption

Colored pixel blocks on screen after a few moments on Youtube and Dominoes pizza site. Requires ctl alt del and firefox shut down. No issues on non flash sites. flash is current.

try to [[How do I upgrade my graphics drivers?|upgrade your graphics driver]] and/or disable hardware acceleration for flash: right-click on any flash content, click settings & in the display tab uncheck “enable hardware acceleration"

Similar Messages

  • Flash site working on some computers and not others?

    hi my flash site is working perfectly on most computers but now i'm getting reports back that its not working on everyones
    i'm really boggled with this one can anyone suggest what the problem is i assume its something in my html code thats causing the problem
    www.videoproductions.ie
    you can view my sorece code at the above site (If it openin for you !)
    i would be very greatfull for any help

    for those pc which cannot access, make you it has the compatible version of flash player installed

  • Safari will not display flash sites

    safari will not display flash sites?  Instead it will show a small box that says "flash" and once you click on it, it then displays the flash site!!
    Any ideas as to why this is happening?
    I am running .....
    Vendor: Oracle Corporation
    Version: Java SE 7 Update 25
    and
    Flash Player: 11.8.800.94

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    If you wish, you may be able to salvage the malfunctioning extension by uninstalling and reinstalling it. Its settings will revert to their defaults. If the extension still causes a problem, remove it permanently or refer to its developer for support.

  • Flash site done - i got a problem

    I have my flash site done... but now when i click on the contact page it will go the home page? I have looking, and looking but I can't find the problem. Any clue where I should look first?
    If you want to have a look, here is my link: http://www.idmiami.com/maria/ForSmiles.html
    Thank you.

    It would appear as though you either do not have a stop() for your contact us section, or there is some code causing it not ignore a stop().  You'll need to explain how the design is done and what controls you have implemented for navigation.

  • Flash content causing background re-draw in IE & FF3+

    Whenever I include flash content on a page it causes IE & FF3+ to redraw the background.  This does not happen in Google Chrome, Safari, or FF2.
    On every page of my site there is a small flash animation that is in a hidden div.  That flash content become visible and plays on a mouse-over event.  That all works fine.  However, in the above mentioned browsers, that flash content causes the site's background to be redrawn on every page-load, causing a flicker.  Is there any way to prevent this?  A google search revealed other people having the same issue, but no resolution.
    You can view the problem here:
    http://jugtones.com
    (Run your mouse over the animation in the lower-right corner to trigger the flash animation)
    Removing the flash content fixes the issue, but I of course would like to keep it.  Any advice you can offer would be greatly appreciated.
    Thanks for your time,
    -Scott

    It looks like this person has done some serious documentation about this issue.  Can we get this addressed?
    http://www.slideshare.net/JustinTimb/redrawreload-behaviour-of-some-browsers-for-html-page s-with

  • Uploading Flash Site

    Hello all,
    I have several questions and I would really appreciate any help that you may have.  First off, my main problem is that my company's website is loading slow and I'm not sure why.  All of my images are small file sizes, but I do have 4 scenes that I'm using , maybe that causes slow loading?  I've attached the website address below:
    www.constructnola.com
    I created my entire website out of flash.  Is this not the best way to create and publish a website?  Should I use Flash in conjunction with another website building software to create and publish my full website?  If I only use Flash can someone please point me in the direction of how to successfully build and publish a website through Flash that doesn't load slow, i.e. loading things dynamically?  What I've been doing is publishing my site onto my computer and then uploading the .html and .swf files to Godaddy for publishing.   Again, I would really appreciate any help
    Thanks,
    Patrick

    ghiadobe,
    Thanks for your response.  I'm not sure I understand what you mean by dropping your flash site into an html page for seo?  Can you elaborate please?
    Thanks,

  • Having problems with mailscript for my flash site :(

    I posted this on another part of this form but thought it may
    be more applicable to this portion of the site so I thank you once
    again in advance for your help!
    I want to say hello to all and thanks for letting me a part
    of this great forum. I am having some problems with my flash site
    (www.alliancedirect.net) and I am using Adobe Flash CS4 now with my
    site with ActionScript 1.0.
    I have a form already made on the site (under contact us) but
    whatever I do....I can't make it work! I use GoDaddy and their
    gdform.psp is what they provide but they don't give the code in
    flash. I downloaded some different flash mail scripts and programs
    but I don't know how to incorporate it within my own site and I
    don't know what to do! I just want the information to be submitted
    to me via email and the other forms I will make away from the flash
    portion if it is too complicated.
    Please let me know what specific information you may need
    from me and how you can hopefully help me as soon as possible as I
    need this website completely up and running. Again, I appreciatre
    the help and look forward to being a part of your community!
    -sasss

    I found this here:
    http://www.actionscript.org/resources/articles/82/3/Send-Email-via-Flash-and-PHP/Page3.htm l
    THE CODE
    stop ();
    function lineAdapt () {
    message_send = message;
    while (msg_count<length(message)) {
    msg_count = msg_count+1;
    if ((substring(message_send, msg_count, 2)) eq "
    message_send = (substring(message_send, 1, msg_count-2))
    +"
    "+(substring(message_send, msg_count+2,
    (length(message_send))-msg_count+2));
    message = message_send;
    delete msg_count;
    delete message_send;
    WHAT THE ABOVE MEANS
    Line 1 - Stops the play head.
    Line 2 - Defines a custom function lineAdapt which will
    convert the flash carriage return marker ( " ") to the PHP
    equivalent (" "). This ensures that if the user types a comment
    with paragraph breaks, these breaks will be reflected in the email,
    rather than it being one very long line of text :o)
    Line 3 - Sets variable message_send to the value of message.
    This is a storage variable: we will adapt message_send rather than
    message because message is being displayed in a text box on screen
    and adapting it may cause strange visual output.
    Line 4 - Begins a loop which will continue until the newly
    created variable msg_count is greater than or equal to the length
    of the string contained in message.
    Line 5 - Increments msg_count by 1.
    Line 6 - Conditional statement which checks if the 2
    characters within the string message_send starting at letter number
    msg_count are equal to the string " ". If you type data into a text
    box in Flash and enter carriage returns, you wills see that the
    variable which stores that text fields value is adapted with a " "
    inserted where each carriage return should be, so we are looking
    for these markers using Line 6.
    Line 7 - If Line 6 returns True, replace the " " we just
    found with " " (which is the PHP equivalent of " "). This code
    looks complicated but it isn't really. Al it does it 'copies' the
    characters before and after the " ", the pastes those before,
    enters " " and pastes those after. The result is the equivalent
    string with " " instead of " ".
    Line 8 - Sets the variable message to the finalized version
    of message_send, which contains no " " markers. We do this because
    when we post our variables PHP will look for variables with the
    same name. Remember in the PHP code we refer to the variable
    messagenot message_send so we must make sure the correct variable
    holds the correct value.
    Line 9 - Deletes the counter variable for our loop from
    memory
    Line 10 - Deletes the temporary message_sendvariable we used
    for altering the new line markers.
    SEND BUTTON CODE
    on (release) {
    if (subject eq "" or message eq "" or from eq "") {
    stop ();
    } else {
    lineAdapt();
    loadVariablesNum ("mail.php3", 0, "POST");
    gotoAndStop (2);
    WHAT THE ABOVE MEANS
    Line 1 - Says "Perform these actions when this button is
    clicked then released"
    Line 2 - Checks to see if any variable has no value. We don't
    want people sending us mail with no reply address for instance.
    Line 3 - Line 2 returns True, stop.
    Line 4 - Line 2 returns False, go on.
    Line 5 - Perform the predefined function lineAdapt () on our
    currently entered variables.
    Line 6 - Send variables, using the POST method, to our PHP
    script which will send the email off. (Note that you could also use
    LoadVars objects in place of LoadVariables if you wish to make this
    more synchornous. See the LoadVariables and LoadVars tutorial.)
    Line 7 - Go to the confirmation message and stop once the
    email is sent.

  • After upgraded to 3.6.6, firefox freezes on flash sites. After several right clicks it seems to unfreeze. Latest flash plugin already installed. Any idea

    after upgraded to 3.6.6, firefox freezes on flash sites. After several right clicks it seems to unfreeze. Latest flash plugin already installed. Same happens on new profile & after clean mozilla installation. Any idea?
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.30729; InfoPath.3; .NET4.0C)

    Thanks so much Anonymouseuser. This fixed it. Ironic that the plugin Firefox used to prevent freezes actually causes freezes. This so fixed my problem. http://www.technogadge.com/how-to-stop-firefox-plugin-container-exe-process/

  • Flash site play all frames without stopping

    Hi all,
    I'm just getting back into flash and have forgotten most of
    what I knew. I've been handed a file and need to figure out how to
    proceed to address this issue:
    The file is a full website. It's a fairly simple design with
    a graphic and some buttons. When you click one of the buttons, the
    main graphic changes to content for that 'page'.
    The problem is when the file is published it just plays every
    layer/frame in it and loops as well. It should display the key
    'home page' elements (buttons/main graphic) and then stop and wait
    for a button to be clicked before running the code for that button.
    I think maybe it needs a stop action on the first frame, but
    in CS3 (or probably any version now, but that's what I'm using) I
    can't figure out how to check to see what actions are on a frame,
    and I apparently don't know how to add a stop action effectively to
    the first frame.
    The file has an 'actions' layer, but if I click the first
    frame of that layer (which appears to have an action attached to
    it), I don't see any action. If I add a stop action, then publish,
    the file DOES stop like it should, but then none of the buttons
    work.
    Does it sound like I need to insert a frame BERFORE the first
    frame, and then add the stop action to that? In other words, could
    it be the case that I'm putting the stop action on the first frame,
    and the button layers operate (begin) on that first frame as well
    such that when I click on a button it fires the stop action I setup
    to stop the entire site file from playing?
    Is there any other setting/issue that might cause a file
    designed as I've described (simple website with buttons) to run
    through all the content without ever stopping and waiting for
    input?
    If someone could just point me in the right direction, I
    think I'll be fine. I might need to rearrange some of the layers so
    they don't start on the first frame...so maybe that's it?
    I know this is simple and I hate asking, but I have to get
    this done quickly...
    thanks for any help,
    DB

    Thanks for the reply, r_c,
    I really appreciate your response. In an indirect way, it may
    have at least helped me figured out the 'what happened' part.
    I went back into the file and, just for the heck of it, was
    going to add stop actions to every frame on the actions bar. During
    that process I saw (for about the forth time) some comment code in
    the actions window that I had sort of assumed was just there by
    default (what was I thinking?). The comment said something like
    'actions would NOT be exported in files in the unregistered
    version'. In retrospect (and after a few slices of pizza), that
    explains why there are lots of frames with the action symbol but
    when I open the frame's action window no actions are there (just
    the comment). I think whoever tried to modify this file tried to do
    it with the trial download and then saved the file and the process
    basically wiped out all the actions in the file :/ So I have a
    flash site now with all th code missing.
    That being the case (at least I'm pretty confident it is),
    I'm going back to the guy tomorrow at work and tell him that, if he
    (or his subordinate) was dumb enough to copy over the original file
    instead of working on a copy then, at best, I MIGHT be able to
    rework the thing by Tuesday (after the long weekend) to add back
    all the necessary actions to have it functioning again.
    That (process) will be kind of good review for me and,
    besides, it might be easier essentially starting over than it would
    be to try and follow someone else's setup all the way down to the
    point where it's messed up....if that makes any sense. Plus, I can
    rename all the layers instead of looking at 90 layers named 'layer
    1', 'layer 2', etc etc...and then have the code use the descriptive
    names.
    Anyway, I do really appreciate the response. It helped me
    find enough of an answer to know how to proceed from here, which is
    the best I could have hoped for given my fairly vague description
    of the situation to begin with.
    Thanks again,
    DB

  • Link to external URL from flash site

    Is there any way to link to an external URL from your flash
    site without having the flashplayer prompt you to change your
    settings and allow access to that page? (this only applies to swfs
    viewed through a browser)
    the only way around this i've found isn't very useful - you
    have to put a small xml file on the host server where the page you
    want to link to is located. i seriously doubt every site you want
    to link to will allow you to put an xml file on their host server
    just so you can link to their page. the code in the xml file just
    tells flashplayer that the site you are trying to access is safe.
    it's called crossdomain.xml
    anyone have an answer?
    thanks!

    This question was answered by kglad, on Saturday, August 11,
    2007 10:13 AM
    Answer
    no it doesn't. getURL() causes no security issues unless you
    try to open the html locally and (try to) access something on the
    internet.
    unless your "flash site" is your local computer there is no
    security issue. if your local computer is an internet server, you
    just need to set the security settings for your local file and give
    it permission to access the internet zone.

  • Flash player causes real problems on Youtube

    Flash player causes real problems on Youtube site.
    I don't really know if it's a Flash Player problem or a Youtube one but Youtube used to work fine back in like 3-4 months ago, now it doesn't anymore.
    The issues I encounter with Flash player on Youtube are as follows:
    First issue is the fact that after the video completely loads or it loads a big part of it then I click on the seek bar to jump at a specific time that has been already downloaded by the Flash player the video starts loading again from that point on like it didn't actually downloaded that part before. This issue causes big bandwith use since it downloads many many times the same portions of the clip that it has already loaded before dozens of time. If I play a 3 min music clip and click replay or point on the seek bar at the begining of the clip to play it again it loads/downloads the clip again and again and again. If the video clip has over 1 hour then I click play it might entirely load into the player in a few minutes then I click on the seek bar to skip at a certain point it starts loading again from that point on. This is the most anoying thing I encounter with Youtube lately.
    Second issue is the fact that if I click on the seek bar of the player to skip to a specific time most of the time the playback does not start from that point on but it skips back to the last point where it was so I must click several times or keep the mouse button pressed for a long time on the same point in order to play from that place on. This one is again very anoying.
    Third issue is that after the video starts playing in 360p it automatically changes to 720p after a minute or so even if I had checked this setting "I have a slow connection. Never play higher-quality video" in Youtube Playback Settings. I cleared the cookies and chosed several times the same "I have a slow connection. Never play higher-quality video" setting in Youtube Playback Settings but it just doesn't keep the settings on. This one is again very anoying since my computer can't handle well 720p.
    I have reinstalled Win XP SP3 and even installed Win 7 SP1 tried several versions of Flash Player and several versions of Firefox, Chrome and Opera but the same issues occur everytime.
    I haven't encounter any of these issues before like 3-4 months ago.

    I have had problems trying to watch videos on youtube for the past couple of years. It's been almost unbearable, even if I set the resolution to 144kb! Then a few days ago, I went to youtube and couldn't watch at all. There was an error showing that my Flashplayer was out of date, and then a link to Firefox to get the right update. I did that two times to no avail. I had just installed the newest version of Flash Player as of November 2014, yet this error kept popping up. Finally, out of utter frustration, I did like you did, and uninstalled everything related to Adobe Flash. Then I went to youtube, just to see how bad the result would be, and suddenly videos started playing smoother, at higher resolution, and with faster buffering to start out.  Sure, there are some videos that I can't play, and the newest iTunes seemed to have issues without having Flash, but videos aren't frustrating me like they had been on youtube.
    So, yeah, I know what you're saying. I had the same solution work for me. Cheers.

  • Flash Player Causing high CPU usage NT Kernel

    Hi
    I have windows 7 with Firefox 26 and noticed that the NT Kernel and system process is running my cpu at 50% - I have a dual core.
    After some research and testing I have realised that it is flash causing it when a site opens like Ebay for exapmple.
    If I deactivate the plugin all is fine - cpu at about 7 - 20%.  Ebay etc will ask to activate the plugin and the CPU jumps.
    Same thing with other flash sites. Facebook etc
    No issues with the other browsers - Chrome and IE.
    I have tried uninstalling flash and firefox - and then doing a clean install but not fixed.
    I tried posting on the firefiox forum and they recommended to come here.
    Any thoughts?

    HeCTiC wrote:
    No that would be too much pain I think - copying everything across again.
    No, no, no... I mean create a new admin account JUST FOR THE PURPOSE of testing the installer. It'd be a totally blank, empty account.
    THAT'S the best way to determine if your account has permissions issues. If the installer and Flash Player works, as it does on your wife's account, you'll know where the trouble lies... in your account, which may or may not mean you have to move everything over. If this isn't something "liveable", then move stuff. If it IS liveable, then I wouldn't bother.

  • Flash sites does not work on iphone safari Can anyone know the alternative

    Hi
    My name i zain and i am from pakistan .i have iphone 3gs with 5.1 version .iphone is awesome but one main problem which is arising is that iphone doesnot support flash sites . I am student of ACCA so for my studies i have to take online lectures but when i try to open the video on that flash sites it doesnot work.
    Please its my request tellme how to install flash player as i badly needed it.

    but flash videos doesnot play in full screen mode in puffin .. i am trying to open it in full screen but it's not working .
    opentuition.com is the site . please tell me the method by which i can open the site in full screen mode .

  • Trying to bypass pop-up blockers on a flash site

    Trying to bypass pop-up blockers on a flash site. Nothing
    malicious, just going from a Flash interface to html so I can write
    to a cookie. If I try to load the page in the same window, then
    when you go back to the flash you are starting from the beginning
    which makes it rather cumbersome. I was hoping to just load a
    pop-up to avoid this.
    Within the index.html page I have a javascript page loaded.
    In the .js file I have
    function Popupport_checkout(){
    myleft=(screen.width)?(screen.width-430)/2:100;mytop=(screen.height)?(screen.height-380)/2 :100;
    settings='top=' + mytop + ',left=' + myleft +
    ',width=430,height=380,location=no,directories=no,
    menubar=no,toolbar=no,status=no,scrollbars=yes,res
    izable=yes,fullscreen=no'
    PopupWin=window.open('cart_checkout.htm','PopupWin ',
    settings);
    PopupWin.focus();}
    If I have a button within flash with a --
    on (release) {
    getURL("javascript:Popupport_checkout()");}
    --script it works fine.
    But if I have a text field set to html and load in the
    variable --
    &BUYLINK=<a
    href="javascript:Popupport_checkout()">PLACE ORDER</a>
    --if you click on PLACE ORDER it doesn't work.
    ANy help would be appreciated.

    Go to your browser preferences and select the appropriate setting.  This is for Safari:
    Ciao.

  • How can I resize my Flash site to fit any screen resolution?

    I built a 100% flash site with tiled framing but I have a
    problem. My flash was built 766 x 750 pixiels. When viewed at
    resolutions greater than 1024x768 the webpage looks great but
    anything less than that it looks like @#$@. I know most people
    probably view at 1024 x 768. Is there anyway to auto resize based
    up on screen resolution or something to detect the screen size and
    adjust the webpage accordingly.
    www.platlimosvc.com
    Below is my html (index.html) for my flash movie:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <title>Untitled</title>
    <meta http-equiv="content-type" content="text/html;
    charset=UTF-8">
    <link href="style.css" rel="stylesheet"
    type="text/css">
    </head>
    <body>
    <table cellpadding="0" cellspacing="0" border="0"
    style="width:100%; height:100%">
    <tr>
    <td valign="top" style="width:100%" height="750">
    <table cellpadding="0" cellspacing="0" border="0"
    width="766" style="height:100% " align="center">
    <tr>
    <td valign="top" width="234" style="height:750px ">
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swfl
    ash.cab#version=6,0,29,0" width="766" height="750">
    <param name="movie" value="flash/xxxx_main.swf">
    <param name="quality" value="high">
    <param name="menu" value="false">
    <!--[if !IE]> <-->
    <object data="flash/xxxx_main.swf"
    width="766" height="750"
    type="application/x-shockwave-flash">
    <param name="quality" value="high">
    <param name="menu" value="false">
    <param name="pluginurl" value="
    http://www.macromedia.com/go/getflashplayer">
    FAIL (the browser should render some flash content, not
    this).
    </object>
    <!--> <![endif]-->
    </object>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td valign="top" style="width:100%; height:1px;
    background-color:#6C6C6C">
    <table cellpadding="0" cellspacing="0" border="0"
    style="width:100%; height:1px">
    <tr>
    <td valign="top" style="width:50%;
    height:1px"></td>
    <td valign="top" style="width:766; height:1px">
    <table cellpadding="0" cellspacing="0" border="0"
    width="766" style="height:1px ">
    <tr>
    <td valign="top" width="766" style="height:1px
    "></td>
    </tr>
    </table>
    </td>
    <td valign="top" style="width:50%;
    height:1px"></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td valign="top" style="width:100%; height:100%">
    <table cellpadding="0" cellspacing="0" border="0"
    style="width:100%; height:100%">
    <tr>
    <td valign="top" style="width:50%;
    background:url(images/bottom-3.gif) top right;
    height:100%"></td>
    <td valign="top" style="width:766;
    background-image:url(images/bottom-5.gif); height:100%">
    <table cellpadding="0" cellspacing="0" border="0"
    width="766" style="height:100% ">
    <tr>
    <td valign="top" width="766" style="height:100%
    "></td>
    </tr>
    </table>
    </td>
    <td valign="top" style="width:50%;
    background:url(images/bottom-4.gif) top left;
    height:100%"></td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </body>
    </html>

    tlcarl,
    > I know most people probably view at 1024 x 768.
    You think so? Even if they have their resolution that high
    (which is
    fairly standard, nowadays), do you think most people maximize
    their browsers
    to fill that whole area?
    > Is there anyway to auto resize based up on screen
    > resolution or something to detect the screen size and
    > adjust the webpage accordingly.
    There is, indeed. :) Check out the Stage.onResize event in
    the
    ActionScript 2.0 Language Reference. That event is dispatched
    when the
    browser (or whatever container) is resized -- in cases where
    the SWF is
    embedded with percentages. If that's your aim, you'll need to
    code against
    that event, which can be done like this ...
    http://www.quip.net/blog/2006/flash/how-to-position-movie-clips-browser-resizing
    It can take a bit of thought, depending on the complexity of
    your goal,
    but the result is usually worth it. The site in your URL is
    already built,
    so this wouldn't do much of anything without opening the
    hood, so to speak,
    and completely rebuilding the engine. A Flash movie has to be
    designed and
    programmed to respond to the Stage.onResize event.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

Maybe you are looking for

  • How to print bar codes in adobe forms

    Hi folks, Iam new adobe forms  , any one please explain  how to print barcodes in adobe forms Moderator Message: Firstly, this is not a Adobe Forms forum. Secondly, I suggest you SEARCH before you post. Im sure this procedure has been widely discusse

  • Can I double the length of a track

    I have a backing track loaded and want to lengthen it or just double it.  I use the track for practicing guitar and like the track but its short. My version is 10.02. there's no option for 10. 

  • Creating new album problem

    Just upgraded to iphoto 11 9.1.1 from the app store, now it seems when I select file/new album it gives me a new untitled album, but the new untitled album show all photos and video from my library. I would expect it would or should be empty. Thank y

  • HT200041 what ever happened to larry?

    what year is it?

  • [SOLVED]Pulseaudio & Gnome - Mixer levels, S/PDIF

    After years of keeping as far away as possible from pulseaudio, I thought I'd give it another try, well, this is my story: (... I deceided to cut my rant, just the facts:) After installing pulseaudio, everything seemed to be working fine, except that