Sponsored Content
Full Discussion: Browser Help
Special Forums UNIX and Linux Applications Browser Help Post 302438827 by cokedude on Wednesday 21st of July 2010 01:32:14 AM
Old 07-21-2010
Browser Help

I'm looking for a browser than can handle heavy java usage. Firefox doesn't seem to be able to handle heavy usage anymore Smilie . Chromium does a decent job, but its just so different from Firefox I just can't get used to it. I have been trying to get used to chromium for over 2 weeks but can't because of the huge difference. So what other browsers can handle heavy java usage? On windows kmeleon was my go to browser to give you an idea of the browsers that I like.

I use Ubuntu so I would like a browser that can be found in the Ubuntu repository.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Browser

I recently install solaris8. on my computer, unfortunately I'm running AOL 7. Is't possible to run this on solaris?. If yes, your help is welcome. :( (3 Replies)
Discussion started by: MEdwards42
3 Replies

2. UNIX for Dummies Questions & Answers

Want a better browser...

:D Howdy The IT admin where I work is limited in knowing what's available, so we're stuck with Netscape Navigator v4.72, as our only GUI browser. :confused: Is there a user friendly unix browser, that the average non-unix savey engineer can use? OS is AIX 4.3 (on the BASH shell). Hardware... (4 Replies)
Discussion started by: Tatum
4 Replies

3. UNIX for Dummies Questions & Answers

Browser in Solaris 2.6

Hello, I need install a new browser in the version of Solaris 2.6 and not possible upgrade of Solaris in this machine, in the system have Netscape 4.0, but i need install the new version or new browser. What is recommended and the link for download? Thanks. (1 Reply)
Discussion started by: markos
1 Replies

4. Linux

browser problem

Dear friends, I ma using linux os. my browser is mozilla firebird . since last one week my browser is not working. if i send mail through outlook some buttons like send , refresh are not working. and yahoo mail also not logging on. please help (2 Replies)
Discussion started by: rajan_ka1
2 Replies

5. Programming

Redirect Browser

Hello guys, Is it possible to redirect browser to another socket address? Cheers, Elton (1 Reply)
Discussion started by: EltonSky
1 Replies

6. UNIX for Advanced & Expert Users

browser waiting

hi all i am opning a browser like www.example.com i would like to open this browser slowly (wait mode) how can i do this. is there any option like wait for some time that to 5sec.,10 sec. like (1 Reply)
Discussion started by: munna_dude
1 Replies

7. Solaris

How to open Browser

Hi, I am connecting to the remote machine via Xmanger. How can i ope browser from the termilnal. I can open gui from my terminal. (xclock works) Just wondering how to open the browser ? (2 Replies)
Discussion started by: bang_dba
2 Replies

8. Solaris

X browser

xbrowser getting closed automatically and ask for user id and password in solaris? (5 Replies)
Discussion started by: vjm
5 Replies

9. Programming

Close browser

I just would like to have a javascript function ( for user logout ) which can close the browser that the user run this function , for example , if the user is using IE to click this function , then close ALL IE browser , is it possible ? if it can not be make , could the function close ALL opened... (2 Replies)
Discussion started by: ust3
2 Replies
IMAGEGRABWINDOW(3)							 1							IMAGEGRABWINDOW(3)

imagegrabwindow - Captures a window

SYNOPSIS
resource imagegrabwindow (int $window_handle, [int $client_area]) DESCRIPTION
Grabs a window or its client area using a windows handle (HWND property in COM instance) PARAMETERS
o $window_handle - The HWND window ID. o $client_area - Include the client area of the application window. RETURN VALUES
Returns an image resource identifier on success, FALSE on failure. ERRORS
/EXCEPTIONS E_NOTICE is issued if $window_handle is invalid window handle. E_WARNING is issued if the Windows API is too old. EXAMPLES
Example #1 imagegrabwindow(3) example Capture a window (IE for example) <?php $browser = new COM("InternetExplorer.Application"); $handle = $browser->HWND; $browser->Visible = true; $im = imagegrabwindow($handle); $browser->Quit(); imagepng($im, "iesnap.png"); imagedestroy($im); ?> Capture a window (IE for example) but with its content <?php $browser = new COM("InternetExplorer.Application"); $handle = $browser->HWND; $browser->Visible = true; $browser->Navigate("http://www.libgd.org"); /* Still working? */ while ($browser->Busy) { com_message_pump(4000); } $im = imagegrabwindow($handle, 0); $browser->Quit(); imagepng($im, "iesnap.png"); imagedestroy($im); ?> NOTES
Note This function is only available on Windows. SEE ALSO
imagegrabscreen(3). PHP Documentation Group IMAGEGRABWINDOW(3)
All times are GMT -4. The time now is 03:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy