[Closed] script search : Internet explorer window
While browsing a long time ago i remember seeing a script that opened an internet explorer window inside max (there was also one with a radio station…)
the radio one i can find (it´s on scriptspot also =)
but the other one i can not find … anyone knows where it is ?
Nevermind … just found it again in the script examples of the maxscript reference …
but there seems to be a problem with the script, or with my max preferences …
When i go to www.yahoo.com for example, that is the default page they put in the script, i can not write inside (performe a search and such) .
i can only use characters that do not rapresent any max keyboard shortcut …the script seems passive, and not active …
anyone knows why ?
from the maxscript help –
[color=white]ActiveX – Disable 3ds max keyboard accelerators[/color]
[left]For most of the ActiveX controls there is no automatic way of determining if it supports keyboard input to disable the 3ds max keyboard accelerators.
[/left]
[left]A MAXScript system global called “enableAccelerators” can be set to false whenever an ActiveX control gets focus so that the user can type in the controls.
[/left]
[left]Here is a sample that can be handy to enable/disable keyboard accelarators:
[/left]
[left]Example:
[/left]
[left][color=blue]rollout[/color] rAccelState [color=maroon]“State”[/color]
[/left]
[left](
[/left]
[left]checkButton accelState [color=maroon]“Test”[/color]
[/left]
[left][color=blue]on[/color] rAccelState open [color=blue]do[/color]
[/left]
[left](
[/left]
[left]accelState.text = [color=blue]if[/color] (enableAccelerators) then “Enabled” [color=blue]else[/color] [color=maroon]“Disabled”[/color]
[/left]
[left]accelState.checked = enableAccelerators
[/left]
[left])
[/left]
[left][color=blue]on[/color] accelState changed state [color=blue]do[/color]
[/left]
[left](
[/left]
[left]enableAccelerators = state
[/left]
[left]accelState.text = [color=blue]if[/color] (enableAccelerators) then [color=maroon]“Enabled”[/color] [color=blue]else[/color] “Disabled”
[/left]
[left])
[/left]
[left])
[/left]
[left]
[/left]
[left]nf = newRolloutFloater [color=maroon]””[/color] 100 100
[/left]
[left]addRollout rAccelState nf
[/left]