Swf doesn't run on web

Hi,
I have a website built in Frontpage that I'm trying to embed
a 1.5 minute swf to. I've downloaded and installed the adobe fix
for the IE7 issues where the form loads and "Click to
........................". The swf plays fine in preview mode on my
computer. It's when I upload it to the site that it doesn't play.
I'm beside myself. this si the code from the html.
<!-- saved from url=(0013)about:internet -->
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js. In Flash,
run \"Apply Active Content Update\" in the Commands menu to copy
AC_RunActiveContent.js to the HTML output folder.");
} else {
AC_FL_RunContent(
'codebase', '
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
'width', '550',
'height', '400',
'src', 'campcarecommercial',
'quality', 'high',
'pluginspage', '
http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'campcarecommercial',
'bgcolor', '#ffffff',
'name', 'campcarecommercial',
'menu', 'true',
'allowScriptAccess','sameDomain',
'movie', 'campcarecommercial',
'salign', ''
); //end AC code
</script>
<noscript>
<object
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
width="550" height="400" id="campcarecommercial" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie"
value="www/crossroadsphysicaltherapy.org/campcarecommercial.swf"
/><param name="quality" value="high" /><param
name="bgcolor" value="#ffffff" /> <embed src="
http://crossroadsphysicaltherapy.org/campcarecommercial.swf"
quality="high" bgcolor="#ffffff" width="550" height="400"
name="campcarecommercial" align="middle"
allowScriptAccess="sameDomain" type="application/x-shockwave-flash"
pluginspage="
http://www.macromedia.com/go/getflashplayer"
/>
</object></noscript>
</body>
</html>

<!-- saved from url=(0013)about:internet -->
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js. In Flash,
run \"Apply Active Content Update\" in the Commands menu to copy
AC_RunActiveContent.js to the HTML output folder.");
} else {
AC_FL_RunContent(
'codebase', '
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
'width', '550',
'height', '400',
'src', '
campcarecommercial',
'quality', 'high',
'pluginspage', '
http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'campcarecommercial',
'bgcolor', '#ffffff',
'name', '
campcarecommercial',
'menu', 'true',
'allowScriptAccess','sameDomain',
'movie', '
campcarecommercial',
'salign', ''
); //end AC code
</script>
<noscript>
<object
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
width="550" height="400" id="campcarecommercial" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="
www/crossroadsphysicaltherapy.org/campcarecommercial.swf"
/><param name="quality" value="high" /><param
name="bgcolor" value="#ffffff" /> <embed src="
http://crossroadsphysicaltherapy.org/campcarecommercial.swf"
quality="high" bgcolor="#ffffff" width="550" height="400"
name="campcarecommercial" align="middle"
allowScriptAccess="sameDomain" type="application/x-shockwave-flash"
pluginspage="
http://www.macromedia.com/go/getflashplayer"
/>
</object></noscript>
</body>
</html>

Similar Messages

  • My compiled swf can't run on web

    My compiled swf can't be browsed on web,but it works fine on
    localhost. Which means that my compiled swf can run on localhost,
    but if I try to run the swf on web(from other machine), then it
    will hold for a long time, and I can't see anything but a grey
    screen. I wrap my swf file via Flex builder. I can't figure it out.
    Is there any one who have ever had experences like this, and know
    the solutions?
    My MXML is:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" creationComplete="testRmt.send()">
    <mx:HTTPService id="testRmt" url="
    http://140.122.79.118/TestFlex2_2.php"
    useProxy="false" method="POST">
    <mx:request xmlns="*">
    <id>{myDG.selectedItem.id}</id><username>{username.text}</username><email>{email.text}</e mail>
    <OP>{OP}</OP>
    </mx:request>
    </mx:HTTPService>
    <mx:Script>
    <![CDATA[
    import flash.net.LocalConnection;
    [Bindable]
    public var OP:String;
    public var ad:LocalConnection = new LocalConnection();
    ]]>
    </mx:Script>
    <mx:Button label="Send" click="OP='INS';testRmt.send()"
    x="446" y="204"/>
    <mx:HBox horizontalScrollPolicy="off" width="200"
    height="24" y="142" x="300">
    <mx:Label text="Username:"/>
    <mx:TextInput id="username"/>
    </mx:HBox>
    <mx:HBox horizontalScrollPolicy="off" width="200" x="300"
    y="174">
    <mx:Label text="Email:"/>
    <mx:TextInput id="email"/>
    </mx:HBox>
    <mx:DataGrid id="myDG" width="625" height="200" x="87.5"
    y="234" dataProvider="{testRmt.lastResult.users.user}"
    click="delBtn.enabled=true" >
    <mx:columns>
    <mx:DataGridColumn width="25" headerText="Id"
    dataField="id"/>
    <mx:DataGridColumn width="150" headerText="Name"
    dataField="name"/>
    <mx:DataGridColumn width="450" headerText="Email"
    dataField="email"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:Button enabled="true" label="Del" id="delBtn"
    click="OP='D';testRmt.send();username.text='';email.text='';"
    x="667.5" y="442"/>
    <mx:Label x="10" y="10" text="Flex Example" width="186"
    fontSize="15" color="#ffffff"/>
    </mx:Application>
    Text

    I have had the same or similar problem, in my case with
    ColdFusion projects. I have uploaded several sample projects to my
    shared hosting web server; all the projects that do not use a
    server run fine, buit I have never been able to make the CF
    projects run. I have posted about this two or three times, but
    nobody ever answered.
    Maybe our question was too stupid to deserve an answer from
    busy people. I never thought of this, but today I got an email from
    my Hosting provider. Quoting part of that message:
    “We will be performing a ColdFusion upgrade to CFMX
    7.02 on the
    server where your account(s), timo, mochica, is/are hosted.
    We have
    scheduled the upgrade to take place between 3:00 AM EDT and
    6:00 AM
    EDT on Saturday, August 5th, 2006.
    We do not anticipate more than 15 minutes of downtime once
    the
    maintenance begins .....”
    Also, I found that the projects that do run require all those
    files that are generated when FB builds the project, so I have been
    uploading the entire output folder (usually, but not always,
    ‘bin’).
    I’m hoping I won’t have any more problems after
    Saturday.
    Peace,
    Carlos

  • Java Web Start application doesn't run in Tomcat

    I successfully did a Java Web Start example for me to learn then I tried another one where I encountered an error:
    This is what Tomcat 6.0.18 says. The deploy is successful but when I try to run the web start application
    with this htmlcode
    <A href="http://localhost:8080/ConvertorValutar/app/launch.jnlp">I get this error witch leads me to think that it can't find the jar correct ?
    type Status report
    message /convertorvalutar/
    description The requested resource (/convertorvalutar/) is not available.Appendix:
    This is how I am doing the JAR
    jar cfvm convertorvalutar.jar myManifest2.mf Java*.class IRata*.class The myManifest2.mf is
    Main-class: JavaWebStart_Convertor witch is the main class
    This way I am doing the WAR:
    del *.war /F /Q
    jar cfv convertorvalutar.war app/* WEb-INF/*This is the correct directory structure
    &#9474;   faWar.bat
    &#9474;   convertorvalutar.war
    &#9474;
    &#9500;&#9472;&#9472;&#9472;app
    &#9474;       ConvertorValutar.jar
    &#9474;       launch.jnlp
    &#9474;
    &#9492;&#9472;&#9472;&#9472;WEB-INF
        &#9474;   web.xml
        &#9474;
        &#9492;&#9472;&#9472;&#9472;lib
                jnlp-servlet.jarThis is the web.xml
    <?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <!-- Standard Action Servlet Configuration (with debugging) -->
    <web-app>
         <servlet>
              <servlet-name>JnlpDownloadServlet</servlet-name>
              <servlet-class>jnlp.sample.servlet.JnlpDownloadServlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>JnlpDownloadServlet</servlet-name>
              <url-pattern>*.jnlp</url-pattern>
         </servlet-mapping>
    </web-app>
    </web-app>This is the jnlp:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase="http://localhost:8080/convertorvalutar/app">
    <information>
         <title>Convertor Valutar</title>
         <vendor>remus.dragos</vendor>
         <description>Simple Java Web Start Example</description>
    </information>
    <resources>
         <j2se version="1.5+"/>
         <jar href="ConvertorValutar.jar"/>
    </resources>
    <application-desc main-class="JavaWebStart_Convertor"/>
    </jnlp>Where is the problem?
    Edited by: remus.dragos on Dec 9, 2008 7:14 PM

    I did checked the names again and I found that the makeJar.bat had an "issue".
    It missed the del *.jar and I had 2 uppercase letters like ConvertorValutar, instead of convertorvalutar.jar.
    After that I rebuild the war and deployed and it works :)
    Thanks.

  • FB4 Web Service doesn't run

    I'm a little confused about using Flash Builder 4 to connect to a simple BP1.1 compliant WSDL-defined service. The WSDL is enclosed, but it's just a simple service that on the Java server is defined as:
       public String getName() {return "xyz";}
    In FB4 it generates a class for the wrapper (doc/literal/wrapped in WSDL speak), then wants it as an argument:
       getName(getName: GetName): GetNameResponse
    If I then generate binding code I get:
        protected function textInput_creationCompleteHandler(event:FlexEvent):void
        getNameResult.token = personService.getName(getName);
    Where the parameter 'getName' is undefined, hence compiler error. I can manually add:
            var getName:GetName = new GetName();
    Is it the intent that one has to manually code to these wrapper objects? It does then compile, but doesn't run. The network monitor shows the WSDL is retrieved but the XSD gets an error, although it clearly is there as verified through a browser.
    Am I doing something wrong?
    Incidentally I had to hack the names of the attached files because it won't allow me to post files of type .wsdl or .xsd (??)

    Hi,
    It looks like you are hitting a bug.
    Can you please log it at http://bugs.adobe.com/jira so that we can take a look at it.
    Thanks,
    - Gaurav

  • Cursor style doesn't work on web forms

    Hi All,
    I have a FORM (6i) from which I run the report by clicking a button .
    I used to set_application_property to set cursor style to BUSY untill I get report output . It works in client/server but doesn't work in Web .
    Can I set this in any other way or is there any way we can show a progress bar in web FORMS without using ActiveX ? .
    Thanks in Advance,
    Sampath

    Hi Duncan,
    Thank you for your update . I didn't get "try a call to synchronize "
    in your note did you want me to run the report in Synchronous mode ?
    Thanks,
    Sampath
    Cursor Style does work on the Web (at least in 6i, there was an old bug in 4.5) - you shouldn't have to but try a call to synchronize after the set_application_property call.

  • I can't get a SWF file that runs perfectly in browsers to run in the Business Catalyst environment

    My website has 3 parts. The initial HTML page which upon opening plays a video. The link below gives you that. 
    http://wrysmilebooks.businesscatalyst.com (It takes a few seconds to get going) 
      When the video ends a SWF file plays. The code below should show you what is supposed to happen. 
    http://wrysmilebooks.businesscatalyst.com/SWFbutton.html 
      The difficulty is that the SWF file won't automatically play from the website within Business Catalyst. It all works perfectly when I run the webpage in different browsers through Dreamweaver. Also if I just double click the website file where it sits on my computer... the resident browser picks it up and all is well.
    I've already exchanged quite a few e-mails with Business Catalyst support and InDesign support... (The SWF file was created using InDesign) ...but we don't seem to be getting anywhere. I can't think of anywhere else to go... so... here I am.
                                                                                                      Thanks,
                                                                                                       Michael McLaughlin

    Hello Liam,
             Let me see if I'm understanding you. Are you are saying that it
    takes a few seconds for the video to get going after the initial pages
    comes up? Yes, I'm aware of that, but it's only a few seconds and then it
    runs. Or are you saying that the SWF file takes time to get going?  I've
    opened the website http://wrysmilebooks.businesscatalyst.com, let the video
    run and simply waited, but nothing happens.
             However, I've noticed something curious. When I preview the Grid w
    flip html in BC, everything runs its course as it should. When I run it
    with http://wrysmilebooks.businesscatalyst.com there's something of a
    stall. The video has to end... the code to open the swift file is onended...
    but the fade to black at the end of the video never quite happens. A faint
    image which is not the last of the video can be seen on the screen. So...
    it appears the video hasn't really ended... so the SWF file doesn't run.
              So... does BC impose some limit on the length of a video when
    it's accessed through http://wrysmilebooks.businesscatalyst.com that it
    doesn't when its run within BC?
    On Wed, Apr 8, 2015 at 12:18 AM, Liam Dilley <[email protected]>

  • Error 403 when trying to run a web application

    I am trying to run a web application(J2EE and velocity) that works perfectly fine on Tomcat but doesn't work on weblogic. I was initially getting a nullpointer error but I got rid of it when I removed xercesImpl.jar from my application's library folder and repackaged the war file. However, when I try to run the application now, I get the following error:-
    *Error 403--Forbidden
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.4 403 Forbidden
    The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.*
    The application has been deployed successfully but I am unable to run it using the link generated in the testing tab. The application. I was wondering if there is any workaround for this error.

    The testing link is using, the host:port/contextroot. Note that the URL is per default not accessible and give justly the 403 forbidden error.
    When you have an index.jsp (or something similar) in the root of your Web application it will automatically load that one, otherwise
    you will get the forbidden message.

  • Applet embedded in JSP doesn't run on browser with older than JRE-1.6

    I have embeded an Applet in my JSP Page which used JDK1.6's getHardwareAddress() method to get user's physical address.
    I have embeeded this into a JAR file and used it in my JSP where this applet run on onload() event of the form --> runs the applet --> and gets physical address of user machine and prints it in one of the text boxes on the form.
    Now, the issue is that the applet doesn't run on browser that doesn't support JRE 1.6
    My concern is that how can I run this (if at all possible) in browsers that support lower versions of JRE or is it possible to check that if the browser doesn't support JRE 1.6 then load the basic version of form without running the applet. Can i actually check the version of browser JRE somehow and stop to execute the applet. Because what happens as of now is that if the applet doesn't execute, the complete form fails to load.
    The last option is that I give a message on my web page that redirects user to Sun Java site and asks them to update their browsers.

    Personally, I have no knowledge about Applet but have you checked this link?
    [http://blogs.sun.com/thejavatutorials/entry/deployment_toolkit_101|http://blogs.sun.com/thejavatutorials/entry/deployment_toolkit_101]

  • When I run a web browser immediately loaded two blank tabs. How to make the browser load the only one?

    when I run a web browser immediately loaded two blank tabs. How to make the browser load the only one?

    Did you check the home page setting to make sure that if doesn't have pipe (|) symbols?
    See these articles for some suggestions:
    *https://support.mozilla.org/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox
    *https://support.mozilla.org/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols
    *http://kb.mozillazine.org/Preferences_not_saved

  • Stop(); within movieclip doesn't work and all my other code doesn't run

    Hey guys,
    I've got a movieclip which has the code stop(); written within it, so that it doesn't play unless i interact with it. What happens now is that when i run the swf file, the entire movie keeps looping, and all my other code just doesn't run.
    I've named my instances buyButton and so on but yeah, somehow it just ignores all my code and just loops. Help!

    Hi Ned,
    In the main timeline it's just one frame yes. So on my main timeline there is a movieclip. Within that movie clip is an animation that adjusts the 'shine' on it. That animation is 20 frames long and i put a stop(); on the first frame inside that movieclip, with the intention that when i publish the swf, the movieclip doesn't loop, but should stop on the first frame. Only if i start to move my cursor over the movieclip, then it has feedback, which is to play the 'shine' animation. That sorta thing. So i had some code in the actionscript layer which edits the text property of the movieclip and it changes from "Click to Buy"(as shown in the screenshot) to "Buy a Shirt!".
    However, when i publish the swf file, the other code, like the one which changes the text property of the movieclip is ignored and also the stop(); function within that movieclip too. And i end up having a movieclip which constantly loops within itself. Other code which i put in, like setting the buttonMode = true and useHandCursor = true are also ignored. The odd thing is that there are no error in my output window. and my publish settings are set to use Actionscript 3.
    EDIT: sorry i used my other account on this haha

  • Playing SWF files each time a web page is used.

    Hi Gang,
    Currently using flash catalyst to create a website for work (seriously not a programmer but love creating visual art).
    I have a SWF file that I want to run EVERYTIME a page is viewed, (its actually part of the page) but currently the file will run once. If you go back to the page it doesn’t run a second time. What am I missing here?
    Thanks in advance for your help.
    ChanceDogUSA

    Hello Tanya,
    And thanks for the reply. I decided to make the video run continuously on the page which means when the page is viewed a second time, its still running giving the desired effect. Not the way I initially wanted it to look but it actually works in previews nicely.
    Thanks again for ther input
    ChanceDogUSA

  • TI SmartView doesn't run since the last Mac OS X update

    Hi everybody,
    I currently use TI SmartView (Interactiv Emulator for TI Calcs) with my pupils. Since the last update of Mac OS X (my macbook runs with 10.6.5 version), TI SmartView doesn't run and I have the following message which appears:
    +Process: JavaApplicationStub [1208]+
    +Path: /Applications/TI-SmartView83Plus.fr84Plus.App/Contents/MacOS/JavaApplicationStub+
    +Identifier: com.apple.javajdk16.TI-SmartView pour TI-83 Plus.fr / TI-84 Plus+
    +Version: 1.0 (1.0)+
    +Code Type: X86 (Native)+
    +Parent Process: launchd [172]+
    Do you know what is this problem ? Is it a problem with Java ?
    Many thanks for your answers !
    Friendly yours,
    David

    - I also tried to reinstall this software, without any success.
    - TI contacted me and gave me a web link to download TI SmartView 1.1 ... I've done this, installed it ... and the same problem is always here ! :-((
    I think that this problem probably comes from Java.
    Here is the beggining of the error report:
    +Process: JavaApplicationStub [4114]+
    +Path: /Applications/TI-SmartView83Plus.fr84Plus.app/Contents/MacOS/JavaApplicationStub+
    +Identifier: com.apple.javajdk16.TI-SmartView pour TI-83 Plus.fr / TI-84 Plus+
    +Version: 1.1.0 (1.1.0)+
    +Code Type: X86 (Native)+
    +Parent Process: launchd [185]+
    +Date/Time: 2010-11-16 19:56:16.147 0100
    +OS Version: Mac OS X 10.6.5 (10H574)+
    +Report Version: 6+
    +Interval Since Last Report: 93556 sec+
    +Crashes Since Last Report: 27+
    +Per-App Interval Since Last Report: 89 sec+
    +Per-App Crashes Since Last Report: 9+
    +Anonymous UUID: 7B1EBE0A-09F1-47A9-8160-D8EE63F71569+
    +Exception Type: EXCBADACCESS (SIGBUS)+
    +Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000010+
    +Crashed Thread: 20 Java: Thread-2+
    +Application Specific Information:+
    +Java information:+
    +Exception type: Bus Error (0xa) at pc=00000000250ce4aa+
    +Java VM: Java HotSpot(TM) Client VM (17.1-b03-307 mixed mode macosx-x86)+
    Does it help someone to solve the problem ??

  • Can Java create HTML tables without running a web server?

    Hello,
    I would like to know if Java can output data into a simple HTML-like table without having to run a web server or jsp etc.
    I want my program to access a database and print records in HTML-like table cells.
    It is actually for an events calendar program, where each event would be printed in a cell (date). There would be a variable number of events per cell (date), with each one being editable.
    I have seen various "web" calendars like this but I want to make it a desktop application so that it is not dependant on the functioning (or non-functioning!) of a web server.
    Can Java do this? I would settle for any type of prewritten table creator (not necessarily HTML) but I do not want Excel type tables or a table where entries must be GUI buttons, such as in Outlook.
    Thank you very much for any idea you may have,
    Cat

    Thank you for the replies :)
    I found something with Jeditorpane (JTextComponent and HTML Text Display) at
    http://msp-of.de/oreilly/books/javaenterprise/jfc/ch03_21.htm
    which looks like what I want. It allows hyperlinks within the table cells and I'm not sure if JTable allows for that. Also, I will want multiple lines and even images (eg moon phases for the calendar) in each cell. I ran the example above and it works great. And yes, it makes use of the HyperlinkListener.
    I don't want to create an HTML file for those who suggested that. I just want the flexibility of HTML formatting withing my standalone Java application.
    I am still not sure why everyone is suggesting JTable though :) So I will look at it some more. The link above also has a turorial on JTable and does say its faster that JEditor pane because it doesn't have to do any HTML rendering. But it doesn't look to me like it can really ever look like a calendar.....
    Thank you again! Being a total Java novice, I am very impressed with how easy JEditorpane is.
    Cat

  • Video portion of elements 12 doesn't run

    video portion of elements 12 doesn't run....not enough ram?

    farbet1846
    Does your problem exist with or without your computer's antivirus and firewall(s) disabled?
    Just what are your computer resources
    a. installed and available RAM
    b. free hard drive space
    c, what video card/graphics card does your computer use and is its driver version up to date according to the web site of the manufacturer of the card?
    Then the usual drill
    a. Is the latest version of QuickTime installed on the computer with Premiere Elements 12?
    b. Are you running the program from a User Account with Administrative Privileges and also with Run As Administrator applied (see right click of Premiere
    Elements desktop icon and clicking Run As Administrator).
    c.Please review the troubleshooting suggestions in the following, especially the renaming of the SLCache Folder and then let us
    know if any of that worked for you.
    ATR Premiere Elements Troubleshooting: PE12: Premiere Elements 12 Editor Will Not Open
    Answers are needed to try to help. If you do not have the answers to the above, please let us know, and we will help you find the answer to any of the questions being asked.
    Thank you.
    ATR

  • Installed Adobe Flash but it doesn't run well on Chrome...

    First, sorry if my english isn't perfect. I'll try to make me understand..
    I have adobe flash installed on my pc. It works on Firefox. But with Chrome it seems it doesn't run well. I can see the videos in Chrome. But when I go on websites like Issuu.com to see a file (you know,like a book where you can turn the pages) it doesn't work. It doesn't even start. The same happens when I go on browser games that use flash: the screen shows the loading bar but at some point it stops loading (but it doesn't crash). In some other games it loads but the game looks with some errors and doesn't run correctly.
    I have uninstalled adobe flash then reinstalled it but nothing.
    I have restarted the pc but nothing.
    I have typed "chrome:plugins" and disabled one of the two adobe flash files but nothing.
    I have cleaned the Chrome cookies and cache with CCleaner but nothing.
    I have deleted the Flash Player folders but nothing.
    What else should I do? I have also reinstalled Chrome but still nothing.
    Can you help me?
    Below is an example of how an in-game pic looks in Chrome. It is cutted!

    What is your operating system & version?
    What is your web browser?
    You downloaded Flash Player, but did you also install it?
    What exactly means "doesn't work/run"?

Maybe you are looking for

  • 'Find' function doesn't work on some HP documents

    For some pdf doc's I downloaded from HP, if I copy some characters from the text and then paste them into the Find box, the characters show up as hieroglyphs (mostly squares) in the Find box. And then actually executing the Find using those character

  • Trying to understand a Capability

    What does this mean? Can anyone offer help/ A single live data connection to an XML database or a web service

  • Migrating Scenarios from XI 3.0 to PI7.1

    Hi Experts,                 Can anyone who has done the migration of scenarios from XI 3.0 to PI 7.1 throw light on the process of doing it? What precaution needs to be taken in order to see there is a seamless migration and that all the scenarios ar

  • IPod Shuffle Sync issues

    I have a 4G Shuffle that I had to transfer to a new laptop with Win7. I copied the songs over and have iTune 10.5.2.11 and the songs show there and on the shuffle but on shuffle they are "grayed" and can't get shuffle to play.

  • Portege R700 PT311A - Network Adapter needs to be installed

    My Toshiba Portg R700 (PT311A-06600Q) will not connect to the internet. It says that a Network Adapter needs to be installed and configured, but I do not have the disc to do this, nor do I have an internet connection on my laptop to download the driv