PDA

View Full Version : Detect navigation LuaCom IE


ericahlstrom
08-21-2005, 06:41 PM
Any suggestions on how to test the LuaCom created IE for a nav change.

Eric

Worm
08-21-2005, 07:08 PM
Look here my friend :)

http://www.indigorose.com/forums/showthread.php?t=12412

ericahlstrom
08-21-2005, 08:26 PM
Look here my friend :)

http://www.indigorose.com/forums/showthread.php?t=12412


What can I say Worm :D :D :D :D

ericahlstrom
08-21-2005, 08:38 PM
will your use of the User32.dll work on Windows 98 systems?

Worm
08-21-2005, 08:42 PM
Yes it will, but depending on your needs, you might not need to call the functions in the dll. The luaCom plugin is all you need to attach to the object, and detect navigation.

will your use of the User32.dll work on Windows 98 systems?

ericahlstrom
08-21-2005, 08:57 PM
Yes it will, but depending on your needs, you might not need to call the functions in the dll. The luaCom plugin is all you need to attach to the object, and detect navigation.

I will need to strip the IE object of its title bar like you have done in your example.

Worm
08-21-2005, 09:02 PM
Then yep, you can use the User32.dll. it's required DLL for all 32 bit versions of Windows.

ericahlstrom
08-22-2005, 06:02 AM
Then yep, you can use the User32.dll. it's required DLL for all 32 bit versions of Windows.

Thanks.

The project I am working on requires a chat program. I have imbedded a MySql / PHP powered flash program, Flash Chat by tufat.com, very cool and only $5. I was going to use the web object but for some reason the Flash interface that is loaded into the PHP page wasn't behaving properly under the built in web object, Backspace wasn’t working for starters. The LuaCom created IE solved my issues but before you showed me how to embed it I was forced to open a windowed instance. It worked but failed to give the ILLUSION that it was an integrated part of my module.

All hail king Worm..........

Worm
08-22-2005, 06:44 AM
Let me point out one little kaveat I've come across with that method so you are aware of the "situation".

When the luaCom IE object has focus in your app, Alt-F4 will close it :eek:

I'm not sure how to get around that either :eek: :eek:

ericahlstrom
08-22-2005, 06:59 AM
Let me point out one little kaveat I've come across with that method so you are aware of the "situation".

When the luaCom IE object has focus in your app, Alt-F4 will close it :eek:

I'm not sure how to get around that either :eek: :eek:


Thanks for the heads up! :yes

Worm
08-22-2005, 07:08 AM
The good thing is that it's highly unlikely someone would do that.

As a work-around, you could use the page timer to check whether the IE object == nil, if it is, then load it again. Wouldn't be bullet-proof, but would at least offer some protection :)

ericahlstrom
08-22-2005, 07:45 AM
The good thing is that it's highly unlikely someone would do that.

As a work-around, you could use the page timer to check whether the IE object == nil, if it is, then load it again. Wouldn't be bullet-proof, but would at least offer some protection :)

Oh I see now. Alt-F4 closes the IE object not the project. I guess I will need the workaround after all. :eek: