Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Page 1 of 6 1 2 3 ... LastLast
Results 1 to 15 of 89
  1. #1
    Join Date
    May 2006
    Posts
    1,443

    Arrow FREE : IExplorer Object Plugin

    here ..
    an extended web browser object plugin that you ever wanted

    Features :

    1: It has 21 functions

    2: help file was not included yet but simple descriptions can be found on script editor

    3: There is 1 example project within package which shows to usage of plugin

    4: More Explorer Events Like : On Progress , On StatusText

    5: More Explorer Functions Like GetHTML() , SetHTML() , ShowSource()

    And more ....

    An AMS 7.1.1007.0 Example Included


    Notes :

    1 : Example Project Requires SliderEx Object Plugin

    2 : Please Keep In Mind This Is First (Beta) Release ,Please Wait Untill A Bug-Free Copy Released

    3 : This Plugin Tested With Internet Explorer ver: 6.0 ver: 7.0 ver: 8.0(beta)


    You Can Get It From Here

    If You Have Plugin Suggestions Please Write Here

    If You Have Feature Suggestions For This Plugin Please Write Here Or
    Plugin's Comment Section Via Clicking Write Comment Link On Details Page

    Thank You .

    Here Is A Screenshot From Example Project
    Attached Images

  2. #2
    Join Date
    Feb 2008
    Location
    Western Pennsylvania
    Posts
    555

    Thumbs up Cool!

    Thank you reteset for the work you have put into this. As always you kick A#&!!

  3. #3
    Join Date
    Apr 2004
    Location
    Vancouver, Canada
    Posts
    1,790
    Excellent, works great. I really like SetHTM(), So much better than having to write it to a file and then load it.
    Dermot

    I am so out of here

  4. #4
    Join Date
    Oct 2006
    Location
    Betawi
    Posts
    120
    is it possible to save a website with "Web page complete" feature?

    thanks

  5. #5
    Join Date
    May 2006
    Posts
    5,380
    nice work, i'll have a good test of this now, thanks reteset
    Open your eyes to Narcissism, Don't let her destroy your life!!

  6. #6
    Join Date
    May 2006
    Posts
    1,443
    Quote Originally Posted by siray View Post
    is it possible to save a website with "Web page complete" feature?

    thanks
    if you are talking about explorer's build-in feature
    from main menu File >> SaveAs
    this is possible

    but if you are talking about make it manually

    it is a hard job

    thanks.

  7. #7
    Join Date
    Oct 2007
    Location
    Gensokyo
    Posts
    1,324
    A few bugs.
    • When you've gone back to the first page and you run Back() again it will popup an error.
    • When you've gone forward to the first page and run Forward() again it will popup an error.
    • Functions don't work on Preload, You have to use them on show.

  8. #8
    Join Date
    May 2006
    Posts
    1,443
    thank you
    • When you've gone back to the first page and you run Back() again it will popup an error.
    • When you've gone forward to the first page and run Forward() again it will popup an error.

      there is a On CmdButtons event that controls navigation buttons (back-forward)
      On CmdButtons event enables & disables those buttons when necessary
      although there is a control mechanism , it is a bug that must fixed
      did you get any error with the example


    • Functions don't work on Preload, You have to use them on show.

      this is not plugins fault ,because AMS does not (or can not) create object plugins until On Show fired
      first AMS sets properties etc.. of plugin and creates then

    i could not thank you for your nice graphic set.
    you know, i have used your graphics in this example.
    and it looks very cool

  9. #9
    Join Date
    Oct 2007
    Location
    Gensokyo
    Posts
    1,324
    Quote Originally Posted by reteset View Post
    thank you
    • When you've gone back to the first page and you run Back() again it will popup an error.
    • When you've gone forward to the first page and run Forward() again it will popup an error.

      there is a On CmdButtons event that controls navigation buttons (back-forward)
      On CmdButtons event enables & disables those buttons when necessary
      although there is a control mechanism , it is a bug that must fixed
      did you get any error with the example


    • Functions don't work on Preload, You have to use them on show.

      this is not plugins fault ,because AMS does not (or can not) create object plugins until On Show fired
      first AMS sets properties etc.. of plugin and creates then

    i could not thank you for your nice graphic set.
    you know, i have used your graphics in this example.
    and it looks very cool
    No problem, Also this is where the error happened.
    Attached Files

  10. #10
    Join Date
    May 2006
    Posts
    1,443
    as i mentioned above ,it is a simple problem
    i have especially added On CmdButton event for that

    for now , you can fix it easily

    set initally disabled Hotspot2 and Hotspot3

    and add following lines to On CmdButton event

    Code:
    if (e_Button == "BACK") then
    Hotspot.SetProperties("Hotspot2", {Enabled = e_Enable});
    end
    if (e_Button == "FORWARD") then
    Hotspot.SetProperties("Hotspot3", {Enabled = e_Enable});
    end
    this will automatically set enabled state of hotspots and
    and do not let to user for a unwanted navigation

    so if there is no way to go back or forward
    this event automatically locks buttons or hotspots

  11. #11
    Join Date
    Oct 2006
    Location
    Betawi
    Posts
    120
    From Reteset:
    if you are talking about explorer's build-in feature
    from main menu File >> SaveAs
    this is possible
    Thanks, Reteset. I used a save icon from your example to save a web page. But it just saving all text from a web page. Not including images

  12. #12
    Join Date
    May 2006
    Posts
    1,443
    Quote Originally Posted by siray View Post
    From Reteset:


    Thanks, Reteset. I used a save icon from your example to save a web page. But it just saving all text from a web page. Not including images
    i am working on this plugin right now
    and i added that now
    you can use it with new version of plugin

    thanks

  13. #13
    Join Date
    Apr 2007
    Location
    Raalte, OV, Netherlands
    Posts
    3,287
    Very nice plugin, but i get an error when i go to hotmail.com

    error:

    On Navigate, Line 0: unexpected symbol near `0'
    Bas Groothedde
    Imagine Programming :: Blog :: Familiar people here

    My AMS Plugins:

  14. #14
    Join Date
    Apr 2004
    Location
    Vancouver, Canada
    Posts
    1,790
    Works fine here, no error when using hotmail.com
    Dermot

    I am so out of here

  15. #15
    Join Date
    Apr 2007
    Location
    Raalte, OV, Netherlands
    Posts
    3,287
    Here is a screenshot, this is strange that you don't have this error.
    Attached Images
    Last edited by Imagine Programming; 10-18-2008 at 09:53 PM.
    Bas Groothedde
    Imagine Programming :: Blog :: Familiar people here

    My AMS Plugins:

+ Reply to Thread
Page 1 of 6 1 2 3 ... LastLast

Similar Threads

  1. FREE : SliderEx Object Plugin
    By reteset in forum AutoPlay Media Studio 7.5 Plugins
    Replies: 67
    Last Post: 06-07-2010, 09:27 AM
  2. FREE : Timer Object Plugin
    By reteset in forum AutoPlay Media Studio 7.5 Plugins
    Replies: 29
    Last Post: 04-23-2009, 07:00 AM
  3. Free PDF Object Plugin
    By reteset in forum AutoPlay Media Studio 7.5
    Replies: 24
    Last Post: 10-23-2008, 01:47 PM
  4. Free Plugin: Media Player Object
    By Ted Sullivan in forum AutoPlay Media Studio 5.0
    Replies: 7
    Last Post: 09-24-2004, 02:54 PM
  5. INFO: Difference between the Media Player Object and the AVI Object
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-29-2002, 02:15 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts