Indigo Rose Software

Professional Software Development Tools

 
Page 1 of 2 1 2 LastLast
Results 1 to 15 of 30
  1. #1
    Join Date
    Oct 2006
    Location
    Somewere over the rainbow
    Posts
    314

    Talking Presenting OBrowse

    Like I Said Above Presenting OBrowse

    Its my Tabbed Webbrowser project.. LOL

    Features,

    Tabbed Browsing
    Intergrated Google Search
    Favorites (Currently in the windows reg, M gonna change that)

    ''Skills'' Used - Webobject - Combobox - Input Objects - Using the Register - Hide/Show Objects - MenuBar

    Comments R welcome

  2. #2
    Join Date
    Oct 2006
    Location
    Somewere over the rainbow
    Posts
    314
    And once again i forgot to attach the project
    Attached Files

  3. #3
    Join Date
    Nov 2006
    Location
    Sheffield UK
    Posts
    62
    Hi, I like it but when i put a keyword in and press google search nothing happens


    EDIT:
    Ignore me, i hit enter and it works fine. I like it
    Last edited by andyk68; 11-22-2006 at 08:52 AM.

  4. #4
    Join Date
    Oct 2006
    Location
    Somewere over the rainbow
    Posts
    314
    i will go and see if the search google button still has an event.. i know that the press enter button can trigger two things at once so ill have to sort that out

    I would like to see some more comment

  5. #5
    Join Date
    Apr 2005
    Posts
    172
    Maby its interesting for you, so i add your project with resizable option.
    Hope you can use it.

    i will add it tonight
    Last edited by Ham; 11-22-2006 at 10:19 AM.

  6. #6
    Join Date
    Oct 2006
    Location
    Somewere over the rainbow
    Posts
    314
    Ham, Just general rezise or with all the object resizing too?

  7. #7
    Join Date
    Apr 2005
    Posts
    172

  8. #8
    Join Date
    Oct 2006
    Location
    Somewere over the rainbow
    Posts
    314
    Ham, heeft het lang geduurd voor alle objecten?

  9. #9
    Join Date
    Oct 2006
    Location
    Somewere over the rainbow
    Posts
    314
    i like it really much

  10. #10
    Join Date
    Apr 2005
    Posts
    172
    It was very easy because off all the examples you can find on this forum.

    Ive added a code in global functions.

    Because you have multiple pages you must insert the codes i give you now in the page called settings

    On Preload
    PHP Code:
    Resize_OnPreLoad(); 
    On Close
    PHP Code:
    Resize_OnClose(); 
    On Size
    PHP Code:
    Resize_OnSize(e_PageWidth,e_PageHeight); 
    Thats it.

  11. #11
    Join Date
    Oct 2006
    Location
    Somewere over the rainbow
    Posts
    314
    yes i saw how it works.. but im not happy about somthing.. Resizing it will also make i shrink .. so if you resize it to a small windows nothing is readable.. im gonna fix this

  12. #12
    Join Date
    Jul 2002
    Location
    Just South of Reality
    Posts
    778

    Global functions

    Very nice Browser.
    To set a minimum size for the browser look at the built-in global functions. I've copied an example from the help.

    AutoPlay Media Studio comes with some built-in global functions to make certain runtime tasks simpler.

    Note: These optional functions are automatically called by your application. You do not call them in your script, only define them.
    Example:
    -- Restrict the window size to 200x100 minimum
    -- and 800x600 maximum:
    function g_OnGetMinMaxInfo()
    tbReturn = {};
    tbReturn.MinX = 200;
    tbReturn.MinY = 100;
    tbReturn.MaxX = 800;
    tbReturn.MaxY = 600;

    Great job with the browser.

    return tbReturn;
    end
    Last edited by holtgrewe; 11-22-2006 at 05:52 PM.

  13. #13
    Join Date
    Nov 2006
    Location
    Sheffield UK
    Posts
    62
    @ TristanD, in your keyword search box, how do you make the writing disappear once you type in a keyword?

  14. #14
    Join Date
    Oct 2006
    Location
    Somewere over the rainbow
    Posts
    314

    Talking

    i found that little trick out when i was terribly bored.. its extremely simple

    At an input, paste this to the on focus event

    Input.SetText("YourInput", "");

  15. #15
    Join Date
    Apr 2006
    Posts
    181

    How Can I Maximize The Window ???

    How Can I Maximize The Window ???

Page 1 of 2 1 2 LastLast

Posting Permissions

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