Jump to content
UBot Underground

adding keywords to navagate url


Recommended Posts

I have a list of keywords that I need to add to my navagate url. The issue is, I need to add a + between any multiple words.

 

So

red apple would become red+apple

round green apple would become round+green+apple

 

How do I do I take my list and do this in the navigate to command?

 

Richard

Link to post
Share on other sites

something like this...

 

ui text box("keywords", #keywords)

set(#keywords, "red apple", "Global")

change attribute(<name="q">, "value", $replace(#keywords, " ", "+"))

 

http://ubotstudio.com/forum/public/style_emoticons/default/rolleyes.gif

Link to post
Share on other sites

DuaneF,

 

So on the second line, Set

 

I have Set(#keywords, "New Value", "Global")

 

I'm just not understanding what to put in the new value, I don't want all my keywords to be "red apple"

 

Richard

Link to post
Share on other sites

There were 2 choices there... you can either add the words in the textbox, or just delete that line and add them through a #variable... the main thing is that you just use the replace parameter and replace the empty space with a + mark in whatever way you are using to store your keywords...

Link to post
Share on other sites

np... if you have any problem with the code, just paste it here for more specific responses... http://ubotstudio.com/forum/public/style_emoticons/default/rolleyes.gif

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...