Jump to content
UBot Underground

How do i add url from address bar to list? (Advance Browser) Project


Recommended Posts

Hi

 I'm trying to do an advance browser with functions to add and delete url from the address bar (please see screenshot). Sort of like a bookmark feature.

If the ubot address bar shows the url I would click on add button and it will add it to the list. 

If I click on the url address within the list I can delete it from the list.

If I click on the url address within the list I can navigate to that url.

Could Ubot Pro do this?

If so, could anyone assist me on what to use?

 

Thanks

post-12668-0-17523600-1403819570_thumb.jpg

Link to post
Share on other sites

set(#url_list,$url,Global)

Hi

 There should be more than this. Do I set this for the navigation or add button?

This is what I got:

 

ui list box("URL List:", "", #url_list)
ui button("Add") {
}
ui button("Remove") {
}
ui button("Navigate") {
    navigate("https://www.google.com/", "Wait")
}
set(#url_list, "", "Global")
Link to post
Share on other sites

ui list box("Urls"#get_urls#url_list)
navigate("http://www.ubotstudio.com/resources""Wait")
wait for browser event("DOM Ready", 10)
set(#get_urls$url"Global")
navigate("www.google.com""Wait")
wait for browser event("DOM Ready", 10)
set(#get_urls"{$url},{#get_urls}""Global")

should work

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...