Search found 25 matches

by Aeroschmelz
Sat Jun 19, 2004 11:43 am
Forum: Coding Questions
Topic: Move Controls of another program
Replies: 0
Views: 898

Move Controls of another program

I want to move some controls of another window with grids. In Autoit exists a function


ControlMove ( "title", "text", "classnameNN", x, y [, width [, height]])

for example:


ControlMove ("myHTPC", "TVForm", "TMenuGrid1",@DesktopWidth / -3 + $MoveX ,@DesktopHeight / 4 + $MoveY)


Is this ...
by Aeroschmelz
Sat May 15, 2004 4:54 pm
Forum: Coding Questions
Topic: WebGadget No TAB works
Replies: 20
Views: 10339

The problem still exists, right ? Is there a solution for tab+enter+etc to use like in Internet Explorer
by Aeroschmelz
Sat May 15, 2004 8:25 am
Forum: Coding Questions
Topic: ScrollBars of Webgadget
Replies: 20
Views: 7244

Oh, i think i solved this:


Procedure NextPage()
;Nächste Seite Laden
Eintrag.l=NextElement(URL())
If Eintrag.l<>0
SetGadgetText(1,URL())
Else
FirstElement(URL())
SetGadgetText(1,URL())
EndIf
webState=0
WebObject.IWebBrowser2=0
WebObject.IWebBrowser2 = GetWindowLong_(GadgetID(1), #GWL ...
by Aeroschmelz
Sat May 15, 2004 8:09 am
Forum: Coding Questions
Topic: ScrollBars of Webgadget
Replies: 20
Views: 7244

Really thanks for your help, it works now ! I just dare to ask, but i have another problem ;-) Sorry.... If i have a procedure which is loading a new page when you press the key i would like to change the zoom to the defined setting. The procedure works only if i load a html page, if it is a flash ...
by Aeroschmelz
Thu May 13, 2004 12:51 pm
Forum: Tricks 'n' Tips
Topic: Mask a window with regions
Replies: 7
Views: 4086

Ok, it works now, does somebody now how can i reset the window to show fully up again. This command somehow:

DeleteObject_(GRgn.l)
by Aeroschmelz
Thu May 13, 2004 11:40 am
Forum: Tricks 'n' Tips
Topic: Mask a window with regions
Replies: 7
Views: 4086

Why will this one work:

RgnB = CreateRectRgn_(25,0, 970, 30)

and this won't

RgnB = CreateRectRgn_(25,0, WindowWidth.f, 30)
by Aeroschmelz
Fri May 07, 2004 10:48 pm
Forum: Coding Questions
Topic: ScrollBars of Webgadget
Replies: 20
Views: 7244

If i want to change the loaded page and reset the javascript settings like zoom i get an error ? Must i wait until the page is loaded ?

I use this in case of a key command or button event:


Procedure NextPage()
;Nächste Seite Laden
Eintrag.l=NextElement(URL())
If Eintrag.l<>0
SetGadgetText(1 ...
by Aeroschmelz
Thu May 06, 2004 7:34 pm
Forum: Tricks 'n' Tips
Topic: Mask a window with regions
Replies: 7
Views: 4086

Didnt find any ! Sorry, only transparent windows, but not with the gadgets visible...
by Aeroschmelz
Wed May 05, 2004 8:09 pm
Forum: Tricks 'n' Tips
Topic: Mask a window with regions
Replies: 7
Views: 4086

Is there a possibility to make the window transparent, but keep the gadgets on it visible ?
by Aeroschmelz
Tue May 04, 2004 6:54 pm
Forum: Coding Questions
Topic: ScrollBars of Webgadget
Replies: 20
Views: 7244

Sparkie, you are my Javascript god, you brought a big smile on my face, thanks a lot ;-) Is it possible to merge the two commands into one, because i just realized, that it uses only one command at the time.
by Aeroschmelz
Tue May 04, 2004 4:53 pm
Forum: Coding Questions
Topic: ScrollBars of Webgadget
Replies: 20
Views: 7244

I thought so ;-)
by Aeroschmelz
Tue May 04, 2004 4:00 pm
Forum: Coding Questions
Topic: ScrollBars of Webgadget
Replies: 20
Views: 7244

Is there also a possibility to get this java code working in the same way ?:


<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
function BodyZoom()
{
top.location.href = "http://www.google.de"
document.body.style.zoom = 2

}
//-->
</SCRIPT>


</head>

<BODY ID="bd" OnLoad ...
by Aeroschmelz
Tue May 04, 2004 3:31 pm
Forum: Coding Questions
Topic: ScrollBars of Webgadget
Replies: 20
Views: 7244

Thanks for the answers !! It works, but is really slow until something happens. Perhaps Fred does know the answer ? I thought the same about the handle and tried all variations of this code with all children under the gadget (looked into it with Winspector Spy), but it didn't worked either


hwin ...
by Aeroschmelz
Tue May 04, 2004 8:19 am
Forum: Coding Questions
Topic: ScrollBars of Webgadget
Replies: 20
Views: 7244

I am working on a small programm, where i would like to define the viewable area of a html page with scroll parameters like this /X=100 /Y=100. It works with a scroll area gadget, but it looks a little bit strange with two sets of scrollbars. Is it not possible to manipulate the position of the ...
by Aeroschmelz
Mon May 03, 2004 7:39 pm
Forum: Coding Questions
Topic: ScrollBars of Webgadget
Replies: 20
Views: 7244

Can i not use something like this:

SetScrollPos_(GadgetID(gadget),#SB_VERT,y,1)