Sattelite A110-178 cannot run the game The Da Vini Code

My sattelite A110-178 can't run the game "The Da Vini Code". following error occurs:
Exeption encountered! Would you like more info (will take several seconds to determine)?
when I choose "yes", following lines appear:
(Slayer)Exeption address
[no game crash info]
IMAGE HELP STACK:
TArchive::operator=+A9D22
MAP FILE STALKWALK:
All I can do then is press "OK"
the programm shuts down, and that's the end of it.
I don't know what this means, is there a problem with my hard-or software?
If anyone can help me, and translate my computers code-language, I'll be gratefull for that,
because this is not a cheap game,
thanks in advance,
Davina
Message was edited by: Davina Deleye

Hi
Firstly a question: Did you use the original game or maybe a copy?
I have found some infos that some users get this error because they used not original game CD!
But if it happens with the original and only with this single game so I presume there could be something wrong especially with the game compatibility.
Maybe the game doesnt support the graphic driver version or something different.
I dont know if you will find a exactly solution here in the forum because its especially a forum about common issue and problems with Toshiba units.
Try to visit the support sites of the game manufacture. Maybe there you will find more details and FAQs about this game.

Similar Messages

  • Cannot run the macro 'YIELD'. The macro may not be available in this workbook or all macros may be disabled.

    Dear Sir,
              While i am calling Excel function through asp.net  using Excel 2003 i  was not facing any kind of issue it's working fine but while i am calling  Excel functions through asp.net using 
    Excel 2010  i am facing an issue even after enabling the micro in settings . issue is 
    "Cannot run the macro 'YIELD'. The macro may not be available in this workbook or all macros may be disabled." please solve this as soon as possible .
    Thanks & Regards
      Sanjeev

    // I made a singleton class and calling that class to access Excel functions
    Public Class Singleton
        Private Shared objexcel As Excel.Application
        Private Shared lock As New Object
        Private Sub New()
            System.Console.WriteLine("Instance of Singleton class created at : " & Now())
        End Sub
        Public Shared Function GetInstance() As Excel.Application
            SyncLock lock
                If objexcel Is Nothing Then
                    objexcel = New Excel.Application
                    objexcel.RegisterXLL(objexcel.LibraryPath & "\Analysis\ANALYS32.XLL")
                End If
                Return objexcel
            End SyncLock
        End Function
    End Class
    // Common Function for yield 
    Public Sub CalculateYield( _
               ByVal YTMDate As Date, ByVal FaceValue As Double, ByVal Rate As Double, _
               ByVal NonGovernmentFlag As Boolean, ByVal RateActualFlag As Boolean, _
               ByVal MaturityDate As Date, ByVal MaturityAmt As Double, _
               ByVal CouponDate As Date, ByVal CouponRate As Double, _
               ByVal CallDate As Date, ByVal CallAmt As Double, _
               ByVal PutDate As Date, ByVal PutAmt As Double, ByVal intFrequency As Int16, _
               ByVal strOption As String, ByVal dblResult As Double, ByVal strSemiAnnFlag As String)
            Try
                Dim decMarketValue As Double
                Dim intBasis As Int16
                decMarketValue = IIf(RateActualFlag = True, Rate * FaceValue / 100, Rate)
                decMarketValue = decMarketValue * 100 / FaceValue
                decMarketValue = objCommon.DecimalFormat(decMarketValue)
                MaturityAmt = MaturityAmt * 100 / FaceValue
                MaturityAmt = objCommon.DecimalFormat(MaturityAmt)
                CallAmt = CallAmt * 100 / FaceValue
                CallAmt = objCommon.DecimalFormat(CallAmt)
                PutAmt = PutAmt * 100 / FaceValue
                PutAmt = objCommon.DecimalFormat(PutAmt)
                intBasis = IIf(NonGovernmentFlag = True, 3, 4)
                If strOption = "Y" Then
                    With Singleton.GetInstance
                        If MaturityDate <> Date.MinValue And MaturityDate > YTMDate Then
                            dblYield = CType(Singleton.GetInstance.Run("YIELD", YTMDate, MaturityDate, CouponRate / 100, decMarketValue, MaturityAmt,
    intFrequency, intBasis), Double)
                            dblYTMAnn = CType(Singleton.GetInstance.Run("EFFECT", dblYield, intFrequency), Double)
                            dblYTMSemi = CType(Singleton.GetInstance.Run("NOMINAL", dblYTMAnn, 2), Double)
                            'End If
                            dblYTMAnn = dblYTMAnn * 100
                            dblYTMSemi = dblYTMSemi * 100
                        Else
                            dblYTMAnn = 0
                            dblYTMSemi = 0
                        End If
                        If CallDate <> Date.MinValue And CallDate > YTMDate Then
                            dblYield = CType(Singleton.GetInstance.Run("YIELD", YTMDate, MaturityDate, CouponRate / 100, decMarketValue, MaturityAmt,
    intFrequency, intBasis), Double)
                            dblYTCAnn = CType(Singleton.GetInstance.Run("EFFECT", dblYield, intFrequency), Double)
                            dblYTCSemi = CType(Singleton.GetInstance.Run("NOMINAL", dblYTMAnn, 2), Double)
                            'End If
                            dblYTCAnn = dblYTCAnn * 100
                            dblYTCSemi = dblYTCSemi * 100
                        Else
                            dblYTCAnn = 0
                            dblYTCSemi = 0
                        End If
                        If PutDate <> Date.MinValue And PutDate > YTMDate Then
                            dblYield = CType(Singleton.GetInstance.Run("YIELD", YTMDate, MaturityDate, CouponRate / 100, decMarketValue, MaturityAmt,
    intFrequency, intBasis), Double)
                            dblYTPAnn = CType(Singleton.GetInstance.Run("EFFECT", dblYield, intFrequency), Double)
                            dblYTPSemi = CType(Singleton.GetInstance.Run("NOMINAL", dblYTMAnn, 2), Double)
                            dblYTPAnn = dblYTPAnn * 100
                            dblYTPSemi = dblYTPSemi * 100
                        Else
                            dblYTPAnn = 0
                            dblYTPSemi = 0
                        End If
                    End With
                End If
            Catch ex As Exception
                Throw ex
            End Try
        End Sub
    // call  yield function
    GlobalFuns.CalculateYield(datYTM, decFaceValue, decRate, blnNonGovernment, blnRateActual, datMaturity, decMaturityAmt, _
                                   datCoupon, decCouponRate, datCall, decCallAmt, datPut, decPutAmt, Val(Hid_Frequency.Value
    & ""), "Y", 0, "")
    this code  is working in Excel 2003 but it's not working in Excel 2010
    //Error is
    Cannot run the macro 'YIELD'. The macro may not be available in this workbook or all macros may be disabled.

  • I have Macromedia Fireworks 3.0 and the install process doesn´t run! After the installation the message is: fireworks cannot run. the resource files are missing or damaged. I use Windows 8.1

    I have Macromedia Fireworks 3.0 and the install process doesn´t run! After the installation the message is: fireworks cannot run. the resource files are missing or damaged. I use Windows 8.1. Antworten auf Deutsch wären super!

    As far as I know there is no download resource for older Macromedia programs and it is highly unlikely that one as old as version 3 of Fireworks will be able to work on a Windows 8.1 system.  I was unable to get a Studio 8 version installation on a Vista system, and likely even an XP system (cannot remember that far back).

  • Error launching office client : Cannot run the macro 'RegisterEPMXIIFn'

    Error launching office client : Cannot run the macro 'RegisterEPMXIIFn'
    I've been receiving the above error since last week. I've adjusted the macro settings in excel and tried reinstalling the epm addin numerous times and up till now i haven't managed to get it resolved. Really need someone to help me on this. Whenever i check in excel, the epm add-in is already enabled. Please let me know how else can i get to resolve this.

    Dear Rudy,
    Indeed, could you please try the following suggestions:
    In the Internet Explorer, go to : Tools->Internet Options-> Security->Custom Level, in section “Download”, check if the option “Automatic prompting for file downloads“ is enabled
    In Excel, go to Excel Options-> Trust Center-> Trust Center Settings-> Macro Settings: check the
    options “Disable all macros except digitally signed macros” and "Trust access to the VBA project object model"
    Regards,
    Siwar

  • I have installed Lion and Microsoft Office 2011.  I want to uninstall Office 2004, but of course I cannot run the application to uninstall, because I get the "PowerPC applications are no longer supported" message.  Suggestions?

    I have installed Lion and Microsoft Office 2011.  I want to uninstall Office 2004, but of course I cannot run the application to uninstall, because I get the "PowerPC applications are no longer supported" message.  Suggestions?

    Go to this microsoft site http://support.microsoft.com/kb/312172 and/or this microsoft site http://support.microsoft.com/kb/2398768.  I would suggest removing both to start with a clean slate.  I had some problems with installing Office for Mac 2011 over 2008 and found out that by completely removing both and starting from a clean slate provided the best solution.  Kappy is correct but some sniglets do get left behind.  Hope this helps.  Cheers.

  • Cannot run the macro SOLVER.XLAM!MainEx error message

    Ive had this problem for awhile but am now needing to use solver for my schoolwork. 
    Anytime i try to use the solver function under the data tab this error message pops up. 
    I have tried taking off and readding the add-in under options. 
    when i try to access solver in the visual basic panel it asks for a password which i have never set
    Im running excel 2013 on windows 7
    I have tried many things and am exhausted. No solution has been posted to this problem on the site or anywhere on the web 
    THIS IS NOT WHEN IM TYPING MACRO CODE IN VBA. its just when i try to use solver for simple spreadsheet calculations. 
    when i click solver i get the error cannot run module: SolverCode
    when i try to access the solver code in vba a password is required 

    Hi,
    As far as I know,  the Solver add-in code has the password by design, it is protected on purpose and copyrighted. They are designed for use from the spreadsheet only. 
    Then, as the error message:" Cannot run the macro SOLVER.XLAM!MainEx error message." Please try to do the following methods to fix the issue:
    1. Open VBE (Alt+F11)>Click Tools> References>set to SOLVER>Show immediate code pane (Ctrl+G)>Copy/paste (or write): application.run "solver.xlam!auto_open"
    2. Disable the other Excel add-ins, such as
    Adobe PDFMaker.
    3. Repair Office 2013.
    Regards,
    George Zhao
    TechNet Community Support

  • Cannot running the file suddenly

    i can run any file before, but i dont' know why i cannot run the file suddenly. i just running a simple file as follow:
    public class h {
    public static void main(String[] args) {
    // Display "Hello World!"
    System.out.println("Hello World!");
    i compile file successfully, but when i run the file , it display the following error:
    Excepting in thread "main" java.lang.NoClassDefFoundError: h

    bet your h.class file is not in classpath.

  • How to run the open script code from eclipse?

    Hi,
    How to run the open script code from eclipse.
    Please let me any soulutions on this.

    Hi Konda
    I am not quite sure you can do that and it would even be not supported... Again, what is the purpose? Why do you want to run your openscript code in Eclipse?
    What is the code you try to run?
    As an example, even if you include al the jar files and so on. don't think the function "Launch Browser" could work because it isn't only java code orjar files.....
    If you give us more background. maybe we can guide you to a better solution...
    JB

  • Cannot write the suitable source codes for running program

    I want to write a program that help student to compile program and run program by using some test cases. For the compiled part, i have been wrote it successfully, but for the run part, i cannot pass the test cases to the program for running. Could any ppl help me to find the problem on the followng codes, why the error will on there? how do i change it? Thanks!
    //<!--start get Program Test Case File-->
    java.io.BufferedReader TestCaseBuf = null;
    Connection con = null;
    Statement stmt = null;
    ResultSet rs = null;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con = DriverManager.getConnection("jdbc:odbc:compas", "sa", "password");
    stmt = con.createStatement();
    String strSQL = "SELECT testValue FROM TEST_CASE WHERE progID='"+progID+"'";
    stmt = con.createStatement();
    rs = stmt.executeQuery(strSQL);
    try
    while (rs.next())
    TestCaseBuf = new java.io.BufferedReader(new java.io.InputStreamReader(rs.getBinaryStream("testValue")));                         
    finally
    if (rs != null)
         rs.close();
    if (stmt != null)
         stmt.close();
    //<!--end get Program Test Case File-->
    //<!--start run program -->
    String[ ] args2 = new String[ ]
         "java", "-cp", System.getProperty("user.dir"), FileName
    try
         Runtime rt = Runtime.getRuntime();
         Process proc = rt.exec(args2);
         java.io.BufferedReader ireader = new java.io.BufferedReader(new java.io.InputStreamReader(proc.getInputStream()));
         java.io.PrintWriter pwriter = new java.io.PrintWriter(proc.getOutputStream());
    String atestcase = null;
         String line= null;
         try
    while ((atestcase = TestCaseBuf.readLine()) != null) <------------I found that error seems on here!!!!
         pwriter.write(atestcase+"\r");
    pwriter.flush();     
    if (atestcase != null)
              if ((line = ireader.readLine()) != null)
              FileOutput = FileOutput + line +"\r\n";
    else {break; }
         } //while
         catch (java.io.IOException e)
         out.println("[IOException]. Printing Stack Trace");
         e.printStackTrace();
         pwriter.close();
         ireader.close();
    catch (java.io.IOException e)
    out.println("[IOException]. Printing Stack Trace");
    e.printStackTrace();
    //<!--end run program -->

    Whats the error message??
    Just a guess, but could be (without seeing the error) that you've already closed the TestCaseBuf reader by closing the result set, hence when you go to read it, you're reading on closed reader.
    Give this a go...Put the //<!--run program --> code into the result set while loop
    while (rs.next())
    TestCaseBuf = new java.io.BufferedReader(new java.io.InputStreamReader(rs.getBinaryStream("testValue")));
    //<!--start run program -->
    ...some code
    //<!--end run program -->
    } Hard to tell without the error message

  • Cannot run the form

    Dear all,
    i am using Oracle Developer suite 10g with Oracle Database 10g r2 on windows 7 64 bit with internet explorer.
    i have configure the loop back adapter with ip 192.168.10.1.
    but it is showing UNIDENTIFIED NETWORK on its status.
    i have a connection to internet from my laptop LAN.
    at the very first time when i run the form, jinitiator was not already installed.
    i install it manually from jinit directory.
    now when i run the form, the first time the url is looking like this
    http://127.0.0.1:52078/qPwZrVoeYdJcgndXJcxhu60N3tx98JDujeo7y8ez2t3NuhSV
    after a while it looks like this
    http://welcome-pc:8889/forms/frmservlet
    Internet explorer cannot display this page.
    i am looking for your kind help regarding this issue.
    Thanks

    thanks Anderson,
    i copied a jvm.dll provided by a thread in the forums, in the jinititiator directory.
    now i installed firefox
    when i run the form , firefox display nothing,
    the url of the firefox is like below
    http://welcome-pc:8889/forms/frmservlet
    i am afraid, it is due to loopback adapter.
    how could i resolve that?

  • Cannot run the JNI application in debug mode in eclipse

    Hi ,
    I have created a C++/Java project in Eclipse on windows XP.
    I can run the app. but I cannot debug it. I get the following error.
    Failed to connect to remote VM. Connection refused.
    java.net.ConnectException: Connection refused: connect
    java.net.PlainSocketImpl.socketConnect(Native Method)
    java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
    java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
    java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
    java.net.Socket.connect(Socket.java:452)
    java.net.Socket.connect(Socket.java:402)
    java.net.Socket.<init>(Socket.java:309)
    java.net.Socket.<init>(Socket.java:124)
    org.eclipse.jdi.internal.connect.SocketTransportImpl.attach(SocketTransportImpl.java:47)
    org.eclipse.jdi.internal.connect.SocketAttachingConnectorImpl.attach(SocketAttachingConnectorImpl.java:103)
    org.eclipse.jdt.internal.launching.SocketAttachConnector.connect(SocketAttachConnector.java:131)
    org.eclipse.jdt.internal.launching.JavaRemoteApplicationLaunchConfigurationDelegate.launch(JavaRemoteApplicationLaunchConfigurationDelegate.java:75)
    org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:569)
    org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:788)
    org.eclipse.debug.internal.ui.DebugUIPlugin$6.run(DebugUIPlugin.java:955)
    org.eclipse.core.internal.jobs.Worker.run(Worker.java:66)
    I compiled my C program with :
         options[0].optionString = "-Xdebug";
         options[1].optionString = "-Xnoagent";
         options[2].optionString = "-Djava.compiler=NONE";
         options[3].optionString = "-Djava.class.path=.";
         options[4].optionString = "-Xrunjdwp:transport=dt_socket,address=8888,server=y,suspend=y";
    In the debug window in eclipse i have created a new config. under remote java application. I have set the connect tab = myproject.
    Connection type = Standard(socket attach) and connection properties: host = localhost , port=8888.
    Any help?

    It looks like you are doing basically the same thing as we are doing, and it seems to work for us. Do you see a message from the JVM that says:
    Listening for transport dt_socket at address: 8888
    The one strange thing that we are seeing is if we throw an exception in Java and clear it in C++ (using ExceptionClear) the subsequent entry into the eclipse debug session behaves very strange.
    Anyway, here is what we are doing:
    J2SE 5.0
    Eclipse Version: 3.1.0 Build id: I20050401-1645
    jvmOptions[0].optionString = "-Djava.compiler=NONE";
    jvmOptions[1].optionString = (char *)classPath.c_str();
    jvmOptions[2].optionString = "-Xdebug";
    jvmOptions[3].optionString = "-Xnoagent";
    jvmOptions[4].optionString = "-Xrunjdwp:transport=dt_socket,address=8888,server=y,suspend=n";
    jvmOptions[5].optionString = "-verbose:jni";
    memset(&vm_args, 0, sizeof(vm_args));
    vm_args.version = JNI_VERSION_1_4;
    vm_args.nOptions = JNI_ARG_SIZE;
    vm_args.options = jvmOptions;
    vm_args.ignoreUnrecognized = JNI_TRUE;
    The eclipse remote java application is the same as your:
    Connection type = Standard(socket attach)
    Connection properties: host = localhost , port=8888.

  • Cannot run the bcp_extract.bat  file OMWB created

    Hello Everyone,
    I am working on transferring data offline using the OMWB.
    In OMWB ORACLE Model pane, i selected a user schema object, a table, and i chose Object<Generate SQL*Loader script.
    Now that i was able to find my bcp_extract.bat file, i copied the contents of the directory where OMWB generated the data unload scripts onto the computer that my source database, SQL SERVER 7, is installed.
    Per OMWB documentation, I modified the bcp_extract.bat file to include the source database Server Name. And I did remove the angle brackets as well. I double clicked the bcp_extract.bat file and a command window poped up and went down immediately. No data file was generated nor anything was added to the sql_load_script.bat file in the Oracle directory that was creatd by the Generate SQL*Loader Scripts.
    Is there any other information that i need to modify/add in order to be able to run the bcp_extract.bat file. In fact, i thought about adding the password after -P switch and see if i can run the file, but after adding the password i still could not get the bcp_extract.bat file running.
    I appreciate if someone can help me out to get the bcp_extract.bat file running.
    Thank you so much!
    Mitra

    Hello Everyone,
    I am working on transferring data offline using the OMWB.
    In OMWB ORACLE Model pane, i selected a user schema object, a table, and i chose Object<Generate SQL*Loader script.
    Now that i was able to find my bcp_extract.bat file, i copied the contents of the directory where OMWB generated the data unload scripts onto the computer that my source database, SQL SERVER 7, is installed.
    Per OMWB documentation, I modified the bcp_extract.bat file to include the source database Server Name. And I did remove the angle brackets as well. I double clicked the bcp_extract.bat file and a command window poped up and went down immediately. No data file was generated nor anything was added to the sql_load_script.bat file in the Oracle directory that was creatd by the Generate SQL*Loader Scripts.
    Is there any other information that i need to modify/add in order to be able to run the bcp_extract.bat file. In fact, i thought about adding the password after -P switch and see if i can run the file, but after adding the password i still could not get the bcp_extract.bat file running.
    I appreciate if someone can help me out to get the bcp_extract.bat file running.
    Thank you so much!
    Mitra

  • I cannot run the matlab script node in the labview

    Hi there,
    My LabVIEW version is 8.5, and matlab version is R2008a.
    I wrote a simple matlab code, like x= 1, y = x*2. Then I tried to put them into matlab script node in LabVIEW.
    However, when I ran the program, I couldn't run and Labiew show some error. 
    Then I tried the method talked before on this forum. Please see the following link.
    http://forums.ni.com/ni/board/message?board.id=MathScript&thread.id=571
    I followed the instruction and open the "command prompt," type some commands then I could run the program, and simultaneously, the LabVIEW program open "Matlab command line window" and run my labview code. However, if I didn't use the command prompt, the  "matlab command window" will not be opened by running the labview program. It would just show some error. And even if I turn on the matlab program in advance, I still couldn't run the labview program.
    Is there any effecient way to deal with this problem without using "command prompt?" Because I try another PC with both matlab and labview installed on it, I "can" run my simple matlab script node on it, and it will open the matlab command line window automatically by running my code. Therefore, I thought there might be some software linking problems in the previous PC I used . Do you have any ideas?
    Thanks in advacne.  

    Hi, and thanks for the post! I hope your well today.
    This may help,
    MATLAB® version 2006b (7.3) and version 2008a do work with LabVIEW
    8.20. This problem can occur if a new version of the MATLAB® software
    is installed along with a previous installation, which is then
    uninstalled. The uninstallation of the older MATLAB® software results
    in removing the ActiveX/COM components LabVIEW uses. This can cause the
    MATLAB® script node in LabVIEW to stop working. There are three
    solutions to this problem.
    Uninstall the MATLAB® software and reinstall it. This should install the necessary ActiveX component.
    Restore the MATLAB® automation server. Browse to the \bin directory (e.g. MATLAB\R2006b\bin) and type matlab -regserver ,
    which will reset the registry settings and start the server. The server
    can then be closed and the MATLAB® script node will work properly again
    in LabVIEW. LabVIEW may need to be restarted if VIs are open that
    contain MATLAB® script nodes.
    Leave both versions of the MATLAB® software installed.
    MATLAB® is a registered trademark of The MathWorks, Inc. Other
    product and company names listed are trademarks and trade names of
    their respective companies.
    Did you have an older version of MATLAB before 2008a?
    Kind Regards,
    James.
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

  • Cannot run the samples in Flex Builde beta 3

    The installation of Flex Builder finished OK. I did choose to
    install Flash 9.0 in both IE and FF, but for some reason when going
    to the examples it asks me to install Flesh 8.0. Even if I say yes
    to th eprompt it doesn't display.
    I have even re-installed the flas Active X manually and even
    regieterd it as per instructions on the Installation of Flex
    Builder 2.0 beta 3 page,, but still no luck...
    Any help is appreciated.
    Thanks

    P.S. I asked Chris Agruss (our build and installer guru)
    about some
    possible reasons why the Flash player installer might have
    failed to
    work for IE. I've attached his reply.
    Rebecca - Adobe
    Here are a few cases I know about where the ActiveX plugin
    for FP won�t
    be installed normally:
    � IE is running at the time, and especially if activeX
    has been run
    � Outlook, or some other program that runs the IE
    engine under the hood,
    is running
    � Older ActiveX version installed that needs some Dark
    Magic, or
    explicit uninstallation of some sort
    In the first two cases, where IE is in use, the plugin will
    normally be
    installed after a reboot, but until then it will look as if
    the
    installation didn�t work.
    -ChrisAg
    Rebecca Hyatt wrote:
    > My guess is that something went wrong with your
    installation of Flash
    > Player 9 in IE failed for some reason (?), and that you
    have IE
    > configured as the default browser on your system (so
    that's the one that
    > FB launches).
    >
    > Uninstalling/reinstalling (with IE not running) might
    fix the IE/Flash
    > Player install.
    >
    > Changing the default browser to Firefox would be an
    alternative
    > solution... FB would launch to Firefox instead, where
    the install seems
    > to have worked correctly.
    >
    > Rebecca - Adobe
    >
    > mikiM wrote:
    >
    >> We are stuck and no idea where to go from here.
    >> System: Win XP Professional, sp 2 with the latest
    patches
    >> CFMX Developer Edition 7.01 with updater 1
    >> Clean installation of Flex Builder 2.0 beta 3,
    finished OK. During
    >> the installation Had selected to install the new
    flash player 9 for
    >> both IE (6.1) and FF (1.5)
    >> Flex Builder Opens OK and displays the help properly
    >> Clicking on any of the examples asks me if I want to
    install Flash 8,
    >> Even if I choose yes it doesn't display anything and
    if I select
    >> another example it will ask me again.
    >>
    >> Trying to run the same examples in directly in IE
    fails, but works in
    >> FF.
    >>
    >> Thanks
    >>
    >> BTW this is from the installation log
    >>
    >> Installation: Successful.
    >>
    >> 484 SUCCESSES
    >> 0 WARNINGS
    >> 0 NONFATAL ERRORS
    >> 0 FATAL ERRORS
    >>
    >>

  • I cannot run the download on my mac

    I tried downloading firefox for my mac but when I try to open the download it says "You cannot open the application 'firefox' because it is not supported on this system". I double checked that I didn't do anything obviously silly but I definitely clicked on the link for desktop and a mac. Is there something I'm doing wrong? If the answer depends on my operating system I'm not sure how to find that out.
    Thanks

    okay george, I'll try to help you
    1-download yahoo messenger. save the .dmg file to your desktop or downloads, wherever your downloaded files go. Double click on it after it has downloaded and it should open up. (ah, I see-i checked out the youtube video on how to install it). then read the terms and conditions, click on agree, then drag the app (the smiley face) to the Applications folder (the square, as you call it), then it should copy it to the Applications folder. Then right or control click on the open yahoo messenger .dmg thing, and choose Eject, which should eject it into the trash. You are done installing Yahoo Messenger. click your hard drive icon on the right top of your screen and move to the Applications folder. Yahoo Messenger should be there. If you need quick access to it, or use it a lot, you can drag a copy to the dock....
    Why are things so difficult? it's good to be curious, george. Might I suggest booking some time at the Apple store, or if you can afford to, pay for some one-to-one training
    Using the Mac isn't difficult, but it does take some practise and getting used to
    John B

Maybe you are looking for

  • Help! How can I take out the mini-disc stuck in mac?

    Help! How can I take out the mini-disc stuck in mac? I insert it into the mac, but the OS cannot load the disc and the disc cannot be ejected even i pressed the "eject" button.

  • Newbie..I would like to create a page in IWeb

    That I could use to attach to an online ad a free standing mini page with a picture and additional info for advertising purposes. Is this the best application to create this? Anything I have created with the iweb templates 1) I cant seem to locate a

  • Wipe macbook pro clean

    i've been told it's a good idea to wipe my macbook pro clean (restore to factory) before upgrading from snow leopard to yosemite. seems it might prevent problems, provide a fresh start. i'm all backed up. what's next? opinions about doing it at all?

  • Comment mettre undvd sur mon Ipod

    Bonjour, Quelqu'un serait il me dire comment transformer le format d'un dvd sur un ipod 80 Gb. Merci par avance

  • Outlook.co​m personal folder shown under wastebaske​t and won't sync

    Hello Folks, Got a Z30 at work a few weeks back.  I added my outlook.com to the hub and all was well. I have a sub folder in Outlook where all my hotmail messages still go (don't really want to re-subscribe to everything and it's handy way of separat