Modify

Opened 15 years ago

Closed 14 years ago

#1735 closed Feature Request (Rejected)

Ability To Change User Agent String For Embedded IE (will pay)

Reported by: electro Owned by:
Milestone: Component: AutoIt
Version: Severity: None
Keywords: Cc:

Description

I have a great need to be able to change the user agent string for embedded browser objects. Currently to accomplish this in autoit requires modifying the registry as Admin. I know this can be done without admin as the user agent string for an IE object can programatically be changed without modifying the system. Reference this discussion: http://www.codeguru.com/forum/archive/index.php/t-379812.html

I would be willing to pay for this modification to autoit. Please contact jordan@… . thank you.

Change History (2)

comment:1 Changed 15 years ago by TicketCleanup

  • Version 3.3.6.0 deleted

Automatic ticket cleanup.

comment:2 Changed 14 years ago by trancexx

  • Resolution set to Rejected
  • Status changed from new to closed
Global Const $sLink = "http://whatsmyuseragent.com/"

Global $oObj = ObjCreate("Shell.Explorer.2")

Global $hGui = GUICreate("Test User-Agent String", 700, 500)
Global $hControl = GUICtrlCreateObj($oObj, 10, 10, 680, 480)

GUISetState()

$oObj.Navigate2($sLink, Default, Default, Default, 'User-Agent: "My super special user agent string."')

While 1
	If GUIGetMsg() = -3 Then Exit
WEnd

You can make the payment by following the link http://www.autoitscript.com/site/donate/

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.