View Full Version : Presenting OBrowse
TristanD
11-22-2006, 06:37 AM
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 :D - Webobject - Combobox - Input Objects - Using the Register - Hide/Show Objects - MenuBar
Comments R welcome
TristanD
11-22-2006, 06:38 AM
And once again i forgot to attach the project :eek: :wow :eek:
andyk68
11-22-2006, 08:47 AM
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
TristanD
11-22-2006, 09:36 AM
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 :rolleyes ;) :lol
Maby its interesting for you, so i add your project with resizable option.
Hope you can use it.
i will add it tonight
TristanD
11-22-2006, 10:27 AM
Ham, Just general rezise or with all the object resizing too?
All objects.
See link.
http://home.tiscali.nl/hamserver/OBrowse-TristanD%20Z.apz
TristanD
11-22-2006, 10:34 AM
Ham, heeft het lang geduurd voor alle objecten? :D
TristanD
11-22-2006, 10:35 AM
i like it really much
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
Resize_OnPreLoad();
On Close
Resize_OnClose();
On Size
Resize_OnSize(e_PageWidth,e_PageHeight);
Thats it.
TristanD
11-22-2006, 10:45 AM
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
holtgrewe
11-22-2006, 05:42 PM
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
andyk68
11-23-2006, 01:13 AM
@ TristanD, in your keyword search box, how do you make the writing disappear once you type in a keyword?
TristanD
11-23-2006, 02:54 AM
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", ""); :yes
mgokkaya
01-12-2007, 04:35 AM
How Can I Maximize The Window ???
RizlaUK
01-12-2007, 07:23 AM
nice browser, good job :yes
there are 1 or 2 things i would change though,
1. put the bookmarks in to a database, that way you will not be restricted on how many bookmarks you can have, you can use a list box and make it visable at the X,Y, of the button, make it invisable when it is clicked (thats how i did mine)
2. the resize thing, but it looks like you are already on that one
3. make the buttons have highlight, or sound on click so the user gets conformation that the button has been clicked
4. add a "add tab" button like in firefox (i know there is a add tab on the menu but i think there is more than enough room on the toolbar to fit a few more buttons on there)
now, dont think im being picky, you have done a very good job (it beats the life out of my browser) but as you done such a great job you might as well make it the best you can
Roboblue
01-12-2007, 09:27 AM
here's a little apz with a few ideas I'm working on.
The refresh button animates while the page is loading.
Disable right click and insert your own menu
open local file
search page
print page
I'm working on disabling shift+f10 using the keystroke.dll. Intrique helped me some on that. I just need to add it to this project. I'm also going to add a save file. Once I get this done, I'll add it all to my Custom browser.
You can look at these for some ideas.
TristanD
01-12-2007, 12:43 PM
i have a lot going as well ;)
some things im working on,
Custom downloader to go with a browser.. (Only Works on command line)
FTP APP (Wich is giving me a headache)
MEDIA PLAYER (Almost done and works great, You can choose custom background and color themes)
A new and better browser (with unlimited tabs and favorites, im still testing on how to grab control over the webobject using luacom.. i already got it to respond to certain actions but not enough yet;) )
Popup Blocker script to go with a browser (almost done)
Stuff thats done,
Safe Notes 2007 (lets the user write and save encryted text files. For saving passwords serials etc)
mgokkaya
01-13-2007, 08:12 AM
i have a lot going as well ;)
some things im working on,
Custom downloader to go with a browser.. (Only Works on command line)
FTP APP (Wich is giving me a headache)
MEDIA PLAYER (Almost done and works great, You can choose custom background and color themes)
A new and better browser (with unlimited tabs and favorites, im still testing on how to grab control over the webobject using luacom.. i already got it to respond to certain actions but not enough yet;) )
Popup Blocker script to go with a browser (almost done)
Stuff thats done,
Safe Notes 2007 (lets the user write and save encryted text files. For saving passwords serials etc)
can u share the *.apz file please so we can also c the stuff ???
TristanD
01-14-2007, 02:07 AM
wich specific projects would you like to see?
the Command line file downloader is already posted on the forum:
http://indigorose.com/forums/showthread.php?t=18463]View Post (http://indigorose.com/forums/showthread.php?t=18463)
mgokkaya
01-15-2007, 12:51 AM
i have a lot going as well ;)
some things im working on,
Custom downloader to go with a browser.. (Only Works on command line)
FTP APP (Wich is giving me a headache)
MEDIA PLAYER (Almost done and works great, You can choose custom background and color themes)
A new and better browser (with unlimited tabs and favorites, im still testing on how to grab control over the webobject using luacom.. i already got it to respond to certain actions but not enough yet;) )
Popup Blocker script to go with a browser (almost done)
Stuff thats done,
Safe Notes 2007 (lets the user write and save encryted text files. For saving passwords serials etc)
can u attache the apz file here
mgokkaya
01-15-2007, 01:36 AM
All objects.
See link.
http://home.tiscali.nl/hamserver/OBrowse-TristanD%20Z.apz
error with this apz
when u maximize the window, then u can manage settings page...
mgokkaya
01-15-2007, 02:08 AM
All objects.
See link.
http://home.tiscali.nl/hamserver/OBrowse-TristanD%20Z.apz
when i right click on my *.exe file i can see "excract with winrar" but with your *.exe file i can not see that...
how can i do it too ???
RizlaUK
01-15-2007, 02:38 AM
if you encrypt the data when you make the exe then winrar can not unpack it, even if it displays "Unpack With Winrar"
mgokkaya
01-15-2007, 02:52 AM
if you encrypt the data when you make the exe then winrar can not unpack it, even if it displays "Unpack With Winrar"
i know but i dont want people c inside of it
RizlaUK
01-15-2007, 03:16 AM
its the same on my system to, the strange thing is that iv had a good look round the apz and i cant find anything differant from mine, and i get the winrar thing with my exe's
id like to know how ya did that to
TristanD
01-16-2007, 02:13 PM
dont you like that :D i;ve got something and nobody can find what it is :P
its my secret.. Lol .. actuallt ive got no idea what it is like that but i will figure it out (see if it can be done again) ;)
bobbie
01-16-2007, 06:06 PM
Don't mean to highjack your post ,, hey Roboblue'
Roboblue. I just paid for the popupmenu plugin so now I have to learn the commands to use it. lol
Can you control where the little menu opens up on the screen? right now yours popups real high on the screen.
TristanD
01-17-2007, 08:17 AM
Don't mean to highjack your post.
i don't mind ;)
thetford
03-06-2007, 10:43 PM
Downloaded it, a good start I think. As stated earlier, need to work on the buttons, but I think it;s overall very good. Far better than any of my attempts at a browser! :lol
vBulletin® v3.8.4, Copyright ©2000-2010, Jelsoft Enterprises Ltd.