Another N95 thread

OK guys anyone here able to give me a heads up on links to download any software to enable web browsing easier?
Im getting kind of sick of the fact that i get the you need flash player message when veiwing half the internet.
Its cause's loads of hastle when trying to veiw pages etc.
So is there any downlaods updates that are avalible? This phone has so many flaws its getting kind of disheartening.

12-Sep-200702:48 PM
petrib wrote:
You could complain to the web site designers and ask them to create Flash-free web pages. The world will become a better place, if they do (there are many very good reasons for not using Flash at all on web pages).
I dont think so, flash is the beauty of web pages..
Nokia uses flash, dont they?
And N800 runs on linux and capable of playin flash 9 webpages.
Why symbian cant play that is the big deal.
I got your points (some) about no flash web pages-that is to me-watchin TV in black and white.

Similar Messages

  • Another process (thread) is applying transactions for this client:

    Has anyone seen this error
    'Another process (thread) is applying transactions for this client: MNEWMAN Try again later.'
    We seem to be getting a few upload transactions put into the error queue for this reason, sometimes just executing the transaction clears it, but more often the data actually looks to have been correctly posted to the server as well as appearing in the error queue, as itf two threads have picked up the same transaction, one has applied it without error and the other failed
    any ideas?

    latest update from Oracle is to
    1.Set MAX_APPLY_TRIES=5
    2.Set APPLY_TRIES_DELAY=10
    Done this, but waiting for sufficient activity to see if it solves the problem.
    I had thought about knocking max_threads down to 1 (and might do this to try and isolate some odd performance issues), but the problem is that this would make the apply and compose process take three times as long (we use 3 threads), and that will not be acceptable for long on the live system

  • Another halting Thread problem

    Hello,
    I want to make a benchmark software using Java, and I want to add capability to stop the test if such setting was selected that the test would take forever. I know that I can do this with using such code like:
    public class MyBenchThread extends Thread {
    boolean toldToStop = false;
    public void run() {
      while (!benchmarkEndConditionHasMet && !toldToStop) {
       // Run heavy benchmark here
    public void haltTest() {
      toldToStop = true;
    }and calling haltTest() from another Thread.
    However, this has two problems:
    1) To have the benchmark at its purest level, I would like
    to avoid extra computation as much as possible. Is there a way to give the same effect of killing the thread without constantly checking a condition variable?
    2) If the benchmark involved some I/O operation (not necessarily over a socket to which you can set a timeout) that takes a while to complete, I would not be able to halt it using the above code or interrupt() function in Thread class. I know that stop() is likely to cause problem... So is there any way to force interrupt execution of the Thread including I/O, do whatever cleanup is needed, and gracefully exit?
    Thanks in advance

    Sorry for late response... Had been away for weekend.
    Well, interrupt() does not seem to work on I/O operation. It only works on a Thread that is actually sleeping or waiting on a monitor. If it was doing some heavy number crunching or I/O, I think it will only set its interrupted status to true, and does not actually suspend its operation. (This is my assumption; correct me if I am wrong)
    Hmm... so I guess there is not really a way to get around this. I was having problem with using a proprietary library that established a CORBA session inside it, and it did not provide any way of halting the operation externally. Unless I Ctrl-C whole VM, the library call just kept on going for about 30 secs till it finally gave up.
    I don't know... Is force trying to stop a problematic thread that dangerous thing in general to do in multiprocess programming, even if you knew what you were doing?

  • Another Freezing Thread

    After the latest update(I just got my ipod working after it was broken for a few months from another porblem, so I just now got the latest update) my Ipod has been locking up anywhere from 3seconds to 3 minutes after I start playing a song. I can reset it (by holding menu and select) but seeing as it happens EVERY time, that's not much of a solution. I've seen many threads like this and the only advice I've seen is to do the 5 R's, which I have done many times, with no luck. I even tried formating my Ipod with HP USB Disk Storage Format Tool but that hasn't helped either. Can anyone give me some advice BESIDES doing the 5 R's? Any help would be appreciated.
    Edit: I have the 5th generation 30gb Ipod if that helps any.

    might a low-level format help in this case ?
    (sry for double post)

  • Another UnsatisifedLinkError thread

    Hi all,
    I've had a look around and not yet managed to find a solution to my problem. Some of the other issues have been of help with errors I was getting previously, but I'm totally stuck now.
    I've got a DLL file supplied by Intuit (company that makes the Quickbooks accounting packages), which connects to the quickbooks application and sends off queries using COM. I also have 2 java classes that I have got to work on their own (in a standalone directory - without putting them in a package).
    The problem I am having is when I try to move the java files (without making any changes to them (except adding the a package declaration)) into my web application. The DLL file is in my windows/system32 directory, and I know it's getting loaded because if I remove the file then I get the "can't find dll file" exception message.
    This is what is being printed out when i execute the code:
    <Amount>10000.00</Amount>
    </TotalBalanceFilter>
    </CustomerQueryRq>
    </QBXMLMsgsRq>
    </QBXML>
    About to begin communication with QuickBooks:
    Calling openConnection
    Exception in thread "main" java.lang.UnsatisfiedLinkError: org.RequestProcessor.openConnectionInternal(Ljava/lang/String;Ljava/lang/String;)V
            at org.RequestProcessor.openConnectionInternal(Native Method)
            at org.RequestProcessor.openConnection(RequestProcessor.java:48)
            at org.QuickbooksQuerier.communicateWithQB(QuickbooksQuerier.java:173)
            at org.QuickbooksQuerier.main(QuickbooksQuerier.java:50)
    Java Result: 1The RequestProcessor class has the following to include load the DLL file, and here is the OpenConnectionInternal method:
      // this are internal calls to the SDK
      private native void openConnectionInternal(String appID, String appName);
      private native String beginSessionInternal(String qbFile, int openMode);
      private native String processRequestInternal(String ticket, String xmlInput);
      private native void endSessionInternal(String ticket);
      private native void closeConnectionInternal(); 
      private native String getCurrentCompanyFileNameInternal(String ticket);
      static {
        //Runtime.getRuntime().load("c:\\test\\sdkjcalls.dll");
    //System.out.println(System.getProperty("java.library.path"));
    //String dir = System.getProperty("user.dir");
    //System.load(dir+"\\sdkjcalls.dll");
        System.loadLibrary("sdkjcalls");
      public RequestProcessor()  {
        errMessage = null;
        errCode = 0;
      * Opens a connection with QuickBooks. This call is always made to
      * start an SDK interaction with QuickBooks. It must precede the rest
      * of the session and it is terminated by a call to closeConnection.
      * @param appID    a unique identifier for the calling applicaton, may be null
      * @param appName  the name for the calling applicaton
      public void openConnection(String appID, String appName)  {
        this.openConnectionInternal(appID, appName); 
    ...Anyone got any ideas why moving the source files to another directory, and adding them into a package would stop this from working? FYI the package I'm adding it to is org.quickbooks.
    Thanks
    Adam

    Adamski2000 wrote:
    Anyone got any ideas why moving the source files to another directory, and adding them into a package would stop this from working? FYI the package I'm adding it to is org.quickbooks.If the source file you're moving is supposed to link with the DLL, probably because the exported names in the DLL have the package name as part of their name. If you change the package name, the DLL would need to be changed as well.

  • Sorry Another Trackpad Thread!

    Hi Guys,
    Sorry I do realise that their are thousands of threads on trackpad issues. But I feel that this particular issue hasn't been addressed yet - or at least I couldn't find it!
    This is for my GF's 800Mhz IBook G4
    The issue:
    - The track pad is speratic when being used normally - very rarely does it work properly these days.
    i.e. when scrolling it will only move slightly in the right direction, then it flys off to another part of the screen.
    I've already tried:
    - I've tried that reset command a few times and it doesn't seem to change anything.
    - I try reseting the capacitors or what ever it is by putting my whole hand on the trackpad for 20-30 seconds, but it doesn't seem to do anything.
    - Something that seems dodgy is that sometimes it can be fixed for a few minutes by "flexing" the laptop! i.e. holding the base of the laptop on either side with my fingers underneath in the middle, and push a bit!
    - The outside edges of the trackpad seems to work fine just about all the time, just the middle (and main) area of the trackpad cause crazy tracking!
    - I've even tried downloading the "sidetrack" program that has fixed other peoples trackpad issues, but this hasn't changed our problem.
    - Using a USB mouse connected works fine, but she wants to use the laptop in university lectures (And any uni student would know that uni lecture theatre note tables are no good) so a USB mouse as a long term fix is no good.
    - It's also nothing to do with the preference settings, believe me, I've tried just about everything i can think of!
    I'm begining to think that the only fix is a completely new trackpad, but I wanted to come on and check to see if there were any good ideas before forking out the dough!
    Any help on this issue would be greatly appreciated.
    Cheers,
    1.5Gh 12" Powerbook   Mac OS X (10.4.6)  

    Hi Brod(d)ers,
    Welcome to Apple Discussions
    Some of your techniques sound pretty strange to me. I have never heard of reseting the capacitors or "flexing" the laptop.
    You may want to look at...
    Knowledge Base Document #17228 on Portables: Jumpy or Erratic Trackpad Operation
    Knowledge Base Document #58389 on Your PowerBook and iBook's trackpad doesn't respond
    Ronda made a great suggestion about reseting the PMU; that should be your first move.
    Jon
    Mac Mini 1.42Ghz, iPod (All), Airport (Graphite & Express), G4 1.33Ghz iBook, G4 iMac 1Ghz, G3 500Mhz, iBook iMac 233Mhz, eMate, Power Mac 5400 LC, PowerBook 540c, Macintosh 128K, Apple //e, Apple //, and some more...  Mac OS X (10.4.5) Moto Razr, iLife '06, SmartDisk 160Gb, Apple BT Mouse, Sight..

  • Yet another HTPC thread

    Hi, there is probably a thousand posts on this forum about this topic, but I dont have time to read all of them atm due to hectic work.
    But I want recomendations on what software to use to build a simple mediabox. What I want it to do: I simply want it to play videos that I have, either from the computer itself or mounted trough the network. I do NOT want to record anything at all. And remote access to control it would be a big plus too, like a web interface or ssh, I'm not to picky.
    Tried MythTv with MythVideo earlier today, but that seems to run way to slow on the box (see specs below), but it might just be me doing something wrong and I will give it another shot after work.
    Specs:
    AMD Athlon 1300 MHz
    384 SDRAM
    Radeon 9200
    Edit: I dont want to run the myth-live distro based on knoppix either, as I have other services running on the computer when its not playing videos.
    /modu
    Last edited by modu (2007-04-15 20:38:49)

    I run freevo 1.6.3 (it's got fewer dependencies and quirks than 1.7.0), using TV-out only. version 1.6.3 is no longer in the AUR, so i would be happy to provide you my own PKGBUILD.
    I'm using openbox as a WM (login with this method http://wiki.archlinux.org/index.php/Aut … on_startup . Use the "C" method and modify it to also execute startx), even though freevo can "be it's own window manager". Xorg is _highly_ recommeded though, as you get accelerated video output.
    Then I bought a cheap'o ir remote (usb receiver), and it "acts" as an extra keyboard, with keycodes sent to xorg (most ir remotes work this way). Some of the keycodes already mapped to "real keys", and some that i've mapped with xmodmap.
    It mounts DVDs and CDs automatically through freevo (no setup...), and i just had to point it at a samba mountpoint at my download server to watch shows that i download regularly.
    Too bad my "media" computer is unable (too old) to suspend with powersave, since this can be done (as well as shutdown) from freevo!
    Last edited by pelle.k (2007-04-16 18:04:46)

  • Yet another comping thread

    Sorry, but I can't seem to find this specific problem in a search of "comping" so here's yet one more thread.
    Personally, I'm loving the comping feature. I've gotten some great results from it, and I find it easy and intuitive to use.
    However, my problem comes when I try to "flatten and merge." Just flattening seems to work okay, and I'm left with all the separate regions and all the fades that were created using the comping feature. But if I try to flatten AND merge, the resulting region does not even remotely resemble the comp that was flattened. Some of the fades appear to be missing as you can hear some of the transitions from region to region, sounds that did not exist in the comped regions come up. In short, it's a mess.
    Is anyone else having problems with this? Maybe the solution is to never merge, but only flatten for now and wait for an update. Or perhaps there's some preference somewhere about how the merged and flattened region is created that is set incorrectly.
    Any advice?
    Thanks.
    M

    Try to keep things simple
    If it works without security, then you need to add security in ONE step at a time
    First be sure that MAC address filtering is DISABLED in your wireless settings on your router
    Next, pick a simple passphrase like 1234ABCD check off WAP or whatever you are using realizing that WPA algorithms must be checked as well (TKIP or AES)
    Make sure you save the changes on your router and then go to your itouch and enter in WPA or whatever and the pass word
    If it doesn't work, unplug the modem, then the router then shut down your pc or mac and turn off the itouch completely, till when you see the bar on the top of the itouch to slide off. Then plug in modem, wait till lights stop flashing, only the activity light should flash, power up the router, then the pc then turn on itouch

  • Will there be another N95-3 update?

    I was wondering if there will be an update coming for the N95-3 like the one that the N95 8GB one got with auto rotate and fixes etc...
    White 808 Pureview NAM
    Black N8 NAM
    Silver N95-3 NAM

    I (like many others- maybe not enough for Nokia) bought my N95-3 over a year ago, Non-subsidised at Full price.
    For some reason Nokia & AT&T couldn't work something out to provide a break to customers wanting to use the phone in the US so naturally I'm sure it's sales were limited to a smaller number of people willing/able to front the considerable cash to purchase the phone outright .
    Also, as a result, AT&T does NOT support this handset!
    If you call about anything: networking/ features/ etc. they will be quick to tell you your on your own with support.
    I do think the N95-3 was a good phone (improved from the N95) but it could stand some improvements, like firmware that would fix bugs & add missing features.
    Now as I am interested in upgrading my phone I am watching carefully how Nokia deals with us "red heads"
    I already have a bad taste by being passed over for Firmware update, and if Nokia fails to release one soon why should I "stick my neck out" to not only being passed over by my service provider, but also by Nokia too?:manindifferent:
    Are you listening Nokia?
    Do you care about selling your N96, N97, E71, N85 in the US?
    Let us know by how you treat your N95-3 customers!
    Message Edited by joshsstuff on 23-Apr-2009 05:15 PM

  • Another KeyListener thread...

    Hi, I'm new here. Me and a friend are trying out some java on our own because we feel our teacher gives us boring tasks (word games etc. UH...).
    We just started making a simple platform game. I'm handling the character movement etc. but I've ran into some troubles with Key Bindings.
    The code compiles and I can move the character around, but I would like to have control of Key_pressed and Key_released events for all the keys. I've tried adding a keylistener to the JPanel but off course that doesn't work (the compiler says the JPanel is not abstract). I want to know how I can acces the Key events. I've read alot of threads about this already but they all use different methods and I can't seem to figure them out.
    This is what I have:
    import javax.swing.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.event.KeyEvent;
    import java.awt.*;
    import java.net.URL;
    import java.awt.image.BufferedImage;
    public class gamebuild2 extends JFrame{
    public static void main(String[] argumentenRij) {
    JFrame frame = new gamebuild2();
    frame.setSize(400,300);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JPanel panel1 = new panel1 ();
    frame.setContentPane (panel1);
    frame.setTitle("build2");
    frame.setVisible(true);      
    class panel1 extends JPanel   {
    private int res=1,x_back=0,x_player1, x_enemy=500, enemystatus=1,status;
    private ImageIcon background,player_standright,player_standleft,player_lookupright,player_lookupleft,player_walkright,player_walkleft,
    player_duckright,player_duckleft,player_attackright,player_attackleft,player_jumpright,player_jumpleft,enemy;
    public panel1(){   
    registerKeys();
    background = new ImageIcon("background.png");
    player_standright = new ImageIcon("mario_standright.gif");
    player_standleft = new ImageIcon("mario_standleft.gif");
    player_walkright = new ImageIcon("mario_walkright.gif");
    player_walkleft = new ImageIcon("mario_walkleft.gif");
    player_duckright = new ImageIcon("mario_duckright.gif");
    player_duckleft = new ImageIcon("mario_duckleft.gif");
    player_attackright = new ImageIcon("mario_attackright.gif");
    player_attackleft = new ImageIcon("mario_attackleft.gif");
    player_lookupright = new ImageIcon("mario_lookupright.gif");
    player_lookupleft = new ImageIcon("mario_lookupleft.gif");
    player_jumpright = new ImageIcon("mario_jumpright.gif");
    player_jumpleft = new ImageIcon("mario_jumpleft.gif");
    enemy = new ImageIcon("zwartebalk.png");
    //        new AePlayWave("wario2.wav").start();
    private void registerKeys() {
    int c = JComponent.WHEN_IN_FOCUSED_WINDOW;
    //        if (e.getID()==KeyEvent.KEY_PRESSED){}
    getInputMap(c).put(KeyStroke.getKeyStroke(""), "");
    getActionMap().put("", noAction);
    getInputMap(c).put(KeyStroke.getKeyStroke("UP"), "UP");
    getActionMap().put("UP", upAction);
    getInputMap(c).put(KeyStroke.getKeyStroke("LEFT"), "LEFT");
    getActionMap().put("LEFT", leftAction);
    getInputMap(c).put(KeyStroke.getKeyStroke("DOWN"), "DOWN");
    getActionMap().put("DOWN", downAction);
    getInputMap(c).put(KeyStroke.getKeyStroke("RIGHT"), "RIGHT");
    getActionMap().put("RIGHT", rightAction);
    getInputMap(c).put(KeyStroke.getKeyStroke("SPACE"), "SPACE");
    getActionMap().put("SPACE", attackAction);
    private Action noAction = new AbstractAction() {
    public void actionPerformed(ActionEvent e) {
    status=1;
    repaint();
    private Action upAction = new AbstractAction() {
    public void actionPerformed(ActionEvent e) {
    status=7;
    repaint();
    private Action leftAction = new AbstractAction() {
    public void actionPerformed(ActionEvent e) {
    if(x_back==0)
    if(x_player1==0)
    else{
    x_player1=((x_player1*res)-(10*res));
    else{
    if(x_player1<=120*res)
    x_back=((x_back*res)+(10*res));
    x_enemy = ((x_enemy *res)+(10*res));
    else{
    x_player1=((x_player1*res)-(10*res));
    status=4;
    repaint();
    private Action downAction = new AbstractAction() {
    public void actionPerformed(ActionEvent e) {
    status=5;
    repaint();
    private Action attackAction = new AbstractAction() {
    public void actionPerformed(ActionEvent e) {
    status=11;
    repaint();
    private Action rightAction = new AbstractAction() {
    public void actionPerformed(ActionEvent e) {
    if(x_player1>=240*res)
    x_back=((x_back*res)-(10*res));
    x_enemy = ((x_enemy *res)-(10*res));
    else{
    x_player1=((x_player1*res)+(10*res));
    status=3;
    repaint();
    public void paintComponent ( Graphics g ){
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D)g;
    //      g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
    //                            RenderingHints.VALUE_ANTIALIAS_ON);
    background.paintIcon(this, g,x_back,0);
    switch (status) {
    case 1:  player_standright.paintIcon(this, g2, x_player1,(173*res)); break;
    case 2:  player_standleft.paintIcon(this, g2, x_player1,(173*res)); break;
    case 3:  player_walkright.paintIcon(this, g2, x_player1,(170*res)); break;
    case 4:  player_walkleft.paintIcon(this, g2, x_player1,(170*res)); break;
    case 5:  player_duckright.paintIcon(this, g2, x_player1,(185*res)); break;
    case 6:  player_duckleft.paintIcon(this, g2, x_player1,(173*res)); break;
    case 7:  player_lookupright.paintIcon(this, g2, x_player1,(173*res)); break;
    case 8:  player_lookupleft.paintIcon(this, g2, x_player1,(173*res)); break;
    case 9:  player_jumpright.paintIcon(this, g2, x_player1,(173*res)); break;
    case 10: player_jumpleft.paintIcon(this, g2, x_player1,(173*res)); break;
    case 11: player_attackright.paintIcon(this, g2, x_player1,(173*res)); break;
    case 12: player_attackleft.paintIcon(this, g2, x_player1,(173*res)); break;
    default: player_standright.paintIcon(this, g2, x_player1,(173*res)); break;
    if(enemystatus == 1 ){
    enemy.paintIcon(this,g2,x_enemy,(168*res) );
    if(status==11||status==12){
    if(enemystatus==1){
    if(((x_enemy*res))<=((x_player1*res)+(32*res))){
    if((x_player1*res)<=((x_enemy*res)+(32*res)))
    enemystatus=0;
    }

    Your question is about implement a KeyListener. You where asked for a SSCCE. It does not require a jar to write a simple SSCCE. It should only take about 10-20 lines of code to write a simple KeyListener.
    We don't care about your actuall use of the KeyListener in you program. You just use a simple System.out.println(...) to make sure the key listener is invoked the way you expect it to be invoked. Once you understand the basics, you incorporate that knowledge into your main program.
    You can start by reading the Swing tutorial on [How to Write a Key Listener|http://java.sun.com/docs/books/tutorial/uiswing/TOC.html].

  • Re: another forum thread

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    Re: https://support.mozilla.com/en-US/forum/1/732746?hash=a0ca17d0ebc4007144af9581263a79ae#form
    Do I have to start it all the time in Safe Mode?
    == This happened
    ==
    Every time Firefox opened
    == When I installed it.
    ==
    == Troubleshooting information
    ==
    That solved my problem, but if I have to start Firefox in Safe-Mode all the time, I might as well go back to IE.
    == Firefox version
    ==
    3.6.7
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.7) Gecko/20100713 Firefox/3.6.7 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-Office Plugin for Netscape Navigator
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.3"
    *Default Plug-in
    *Shockwave Flash 10.1 r53
    *GEPlugin
    *Motive Plugin for Mozilla Browsers
    *Google Update
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *DRM Netscape Network Object
    *Npdsplay dll
    *DRM Store Netscape Plugin

    That wasn't a solution, it was a diagnosis step. The next step is to find the culprit extension causing the problem by disabling them all (from '''Tools -> Add-ons, "Extensions" section''') and restarting normally, then enabling each one by one, restarting Firefox and checking each time till you find the cause.

  • Another EARPHONE thread

    i have been reading lots of reviews about earphones / earbuds and i have seemed to have already purchased one of the top ones i keep reading about. The Sony MDR-EX5's .... i have to say this is my st set of ear canal or bud style earphones... they fit really tight in my ears, actually if someone is talking to me i have to pull them out to even hear what they are saying.......But to me they are just not the right ones for my MuVo TX...... The TX just doesn't have the power to dri've these..........i am at max. power all the time and useing the custom eq. settings.........i am worried that if i go out and buy a different set of earphones i will have the same results....what do you think?
    These are Impedanced at 6ohm, and the frequency response is 6-23khz.
    Am i being too picky? am i asking too much out of the little MuVo? ....i just want louder music, with a little more bass.
    Thanks for listening...............PEACE

    <FONT face="Comic Sans MS" size=3>I hear what u r saying about tightness and believe me the Sonys are tight fitting....but i for some reason the MuVo TX just cannot push these earbuds.
    <FONT face="Comic Sans MS" size=3>
    <FONT face="Comic Sans MS" size=3>I went to the Creative store (cambridge soundworks) a couple days ago looking to purchase yet another set of earphones......the sales girl that was there actually opened 3 different earphones for me to try out......i tried the Sennhiser 400 and i wasn't impressed, and also the Creative 880 Earphones and they didn't have much sound to them either.............the set that sold me was the Creative EP 480. The bass was really there for me........ so for now i have purchased these for $29.99, the sound is really nice...........................have you heard the Creative 630's?..........i only can find them on-line at www.cambridgesoundworks.com

  • Another DSDT thread

    Hello fellow Archers,
    Although a brand new Arch user, I am really excited with Arch and hopefully I will stay on this distro till the end of days. Anyway, enough with the introductions... let get to business...
    I am having issues with problematic DSDT from my laptop and I would need some assistance if possible...
    I have extracted my DSDT and I have it uploaded in github here https://github.com/progtologist/dv6-610 … r/dsdt.dsl
    I have managed to correct the errors (wasn't hard) and compiled it with just a warning but using it caused a kernel panic so I am guessing I am doing something wrong! The uploaded version contains the errors so one with more experience can see what I was doing wrong.
    Thanks!

    Multi-post: http://forum.java.sun.com/thread.jspa?threadID=5313177

  • Another Twitter thread ...

    There have been several threads complaining about Safari 5 and Twitter. Here is my experience (more of a confirmation that it may be a Twitter problem rather than Apple's).
    Since yesterday, running Safari 5 on an iMac G5 and 10.5.8, I've not been able to post anything on Twitter. I get my home page and can type into the Tweet box, but there is no "characters remaining" countdown, and clicking "Tweet" has no effect at all (not even the whirling gear). However, I can post in Firefox and Camino and Opera, so it's clearly an issue between Twitter and Safari.

    Multi-post: http://forum.java.sun.com/thread.jspa?threadID=5313177

  • Another keyboard thread...

    Well, I've read many threads as to a similar problem I'm having, but nothing exactly like it...
    I'm working on a MacBook Pro, and when at home I use one of the new Aluminumem keyboards, but am not too happy with it, here's why:
    I want to use the function keys as their defult settings - no volume control, no exposé, whatever. So I turn on that option in the system prefs...
    But with that option turned on, my Arrow keys work as Pg Up, Pg Dn, Home, and End keys, the "backspace" delete key works backwords - a frontwaty delete. Basically it works like the laptop keyboard if the fn key is constantlly being pressed. Very cannoying, I just want to do an insert edit without holding the fn button.
    Note: I delibertlly left words misspelled as a tribute to my frusteration of the afore mentioned problem...

    I forgot to mention this only is an issue with "Sticky Keys" turned on, due to my physical condition this is an option I cannot operate without...

Maybe you are looking for

  • How to keep my song list organized

    Hello This is my first ipod and therefore my first iTunes. I am running win 7 and had no problems installing iTunes, so far so good. The issue I am having is the organization of the music list that are displayed in iTunes, List View, Album, Grid and

  • Strange results in adhoc report??

    Hi Experts, I have made changes to adhoc report in development and assigned transaction code ex: zreport to adhoc query.I executed the report by transaction code and through sq01 i am getting same results still here it is fine.      In quality when i

  • How do I tell which generation of shuffle I have?

    How do I tell which generation of shuffle I have?

  • !!!! Scott Kelby's taken over my keyword list

    Hi. Coming home from a shooting session today, I imported my files as usual, but when I should start tagging them, I found that most of my keywords were missing from the keyword list (approx. 45 of 50 categories missing). Instead, I found keywords li

  • Itunes store funktioniert nicht

    ja es funktioniert nicht :/ woran liegt das ? bei meinem bruder geht es übrigens auch nicht my itunes store is not aviable .... why ? what can i do ? my brother has the sam problem as i