Announcement

Collapse
No announcement yet.

FREE : IExplorer Object Plugin

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Dermot
    replied
    Originally posted by boku View Post
    Thanks for a great free plugin, however, I have checked your site and seen



    Is this really the case? What about SP3?
    He means anything earlier than Windows Xp (SP2)

    Leave a comment:


  • boku
    replied
    Thanks for a great free plugin, however, I have checked your site and seen

    This Plugin Does Not Work Under Windows Xp (SP2)
    Is this really the case? What about SP3?

    Leave a comment:


  • Mikhail
    replied
    Originally posted by reteset View Post
    this will not work with IExplorer Plugin even if it is not compressed
    because this plugin uses IE specific procedures

    For Example:


    Code:
    IHTMLElement2 *pElement = NULL;
    hr = pBody->QueryInterface(IID_IHTMLElement2,(void**)&pElement);

    Hi! Sorry, maybe I was too optimistic...

    Did you tested the patch with the mozilla control installed in your system?
    I think that will work at least partially, but I'm not sure. Can you confirm it, please?

    Anyway, thanks a lot: with your IExplorer Plugin now is possible to patch win32rt.dat and build Apps with both IE and MOZ options (it's working fine).

    Leave a comment:


  • reteset
    replied
    Originally posted by Mikhail View Post

    Note: is not possible to apply the Mozilla patch in your iexplorer.apo 1.0 because it is protected with PECompact v2.0. In my tests, the Mozilla patch works fine with the original Autoplay IE Object.
    this will not work with IExplorer Plugin even if it is not compressed
    because this plugin uses IE specific procedures

    For Example:


    Code:
    IHTMLElement2 *pElement = NULL;
    hr = pBody->QueryInterface(IID_IHTMLElement2,(void**)&pElement);

    Leave a comment:


  • MicroByte
    replied
    sounds pretty cool, but does it work and has it been tested with AMS

    Leave a comment:


  • Mikhail
    replied
    Suggestion: IE Plugin into a Mozilla plugin

    Hi! Suggestion: you can transform your IE Plugin into a Mozilla plugin, is very easy.

    Using the IE patcher tool

    IEPatcher is a tool to scan an executable or DLL and patch it to replace instances of the IE control with the Mozilla control. Since both controls are binary compatible, this is just a matter of replacing the CLSID_WebBrowser with CLSID_MozillaBrowser. If you have built the Mozilla browser, try running the patcher on an app that uses IE and see if it works!

    IEPatcher Tool:
    http://www.iol.ie/~locka/mozilla/iepatcher.zip

    Mozilla ActiveX Control (from reactos project):
    http://ufpr.dl.sourceforge.net/sourc...12-ReactOS.exe

    Mozilla ActiveX Control (original source):
    http://www.iol.ie/~locka/mozilla/MozillaControl1712.exe

    Dependency Plugin for Mozilla ActiveX Control:
    http://www.indigorose.com/forums/att...1&d=1245635348
    (is my first dependency plugin done right now, so a review is needed)

    References:
    http://www.iol.ie/~locka/mozilla/control.htm


    Note: is not possible to apply the Mozilla patch in your iexplorer.apo 1.0 because it is protected with PECompact v2.0. In my tests, the Mozilla patch works fine with the original Autoplay IE Object.
    Attached Files
    Last edited by Mikhail; 06-21-2009, 09:07 PM. Reason: adding more references

    Leave a comment:


  • Imagine Programming
    replied
    Excellent job reteset, again, thanks alot!

    I like the IExplorer.ExecuteJS(), well done!

    Leave a comment:


  • reteset
    replied
    Upated

    Version : 1.2.0.0 Beta

    What's New :

    1 : 4 new actions for control message bar (notification area like IE's)

    Code:
    MessageBarShow()
    MessageBarSetColors()
    MessageBarHide()
    MessageBarIsVisible()
    2 : an argument added to EnableAutoURLComplete() to be able to add autocomplete option to comboboxes

    3 : some bugs fixed on scroll related actions (Note: these actions are not work on all web pages)
    maybe can be useful with local files but not with global web sites

    4 : new ExecuteJS() action added to be able to execute a javascript on current page

    Note : you should load a document to plugin before execute a javascript so, you can not execute a javascript before On Navigated event

    Here is an example for IExplorer.ExecuteJS()

    PHP Code:
    script = [[
    var 
    answer confirm ("would you like to visit IR forums now..?.")
    if (
    answer)
    window.location="http://www.indigorose.com/forums/"
    ]]

    result IExplorer.ExecuteJS("Plugin1"script); 
    return value of this action is a boolean and , it is true on succeed and false on failed

    that's all for now

    Leave a comment:


  • Imagine Programming
    replied
    Originally posted by reteset View Post
    Site Moved ;
    thanks.
    Lol don't thank us, we should thank you for your
    dedication to the AMS users!

    Leave a comment:


  • reteset
    replied
    Originally posted by xTuga
    I can't download the plugin
    Site Moved ;

    the web site is temporary off
    because www.amsplugins.com growing day by day
    there was disk space and other limitations with old server

    i purhased a powerful hosting package for it and moved site content to it
    i am waiting for new DNS settings activated

    new version of IExplorer is ready ,i am going to update it then site up
    also you will see more plugins and AMS examples at www.amsplugins.com
    and site will accept user contributions (examples , dll , plugins ,etc ) soon

    by the way it took more time than i expected (third day)

    thanks.

    Leave a comment:


  • ShadowUK
    replied
    Originally posted by xTuga
    I can't download the plugin
    Here you go.
    Attached Files

    Leave a comment:


  • ShadowUK
    replied
    Originally posted by reteset View Post
    thank you too

    i am glad to hear that it helps to people

    also i am going to update it soon

    i added a customizable notification bar to it, like IE's
    i added a arg to autocomplete action for comboboxes
    i fixed a bug setscrollpos action that was causing to a crash
    note: these scroll related actions not working as expected (especially with new web sites)

    i added a magical action for execute a javascript on current page
    this will provide you a way to acces page source any time you want
    for example you can add something to page content or remove without saving source to HD

    or zoom-in zoom-out and everything else
    you can make what javascript framework provides

    but of course not all javascripts, this actions executes a javascript just in time
    and does not add to page source

    finally : this plugin is a Beta yet , even with new update

    thanks to Jack Daniels for these suggestions

    thanks to all
    One emoticon sums this up

    Leave a comment:


  • reteset
    replied
    Originally posted by Holland93 View Post
    Thank you thank you thank you, this is exactly what i need

    //Holland93
    thank you too

    i am glad to hear that it helps to people

    also i am going to update it soon

    i added a customizable notification bar to it, like IE's
    i added a arg to autocomplete action for comboboxes
    i fixed a bug setscrollpos action that was causing to a crash
    note: these scroll related actions not working as expected (especially with new web sites)

    i added a magical action for execute a javascript on current page
    this will provide you a way to acces page source any time you want
    for example you can add something to page content or remove without saving source to HD

    or zoom-in zoom-out and everything else
    you can make what javascript framework provides

    but of course not all javascripts, this actions executes a javascript just in time
    and does not add to page source

    finally : this plugin is a Beta yet , even with new update

    thanks to Jack Daniels for these suggestions

    thanks to all

    Leave a comment:


  • Holland93
    replied
    Thank you!

    Thank you thank you thank you, this is exactly what i need

    //Holland93

    Leave a comment:


  • rexzooly
    replied
    Originally posted by jackdaniels View Post
    well i think you have to put some codes for it to
    Code:
    On ContexMenu
    section...
    i see there is just the context menu well menu lol no commands to do anyting so ya your right lol:yes

    Leave a comment:

Working...
X