INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Using "Send to -> External" to look up a webpage ?  (Read 1348 times)

c1c9k72

  • Regular Member
  • Galactic Citizen
  • ****
  • Posts: 332
  • So many worlds, so much to do, so little done...
Using "Send to -> External" to look up a webpage ?
« on: August 15, 2006, 01:09:31 pm »

I see that you can enter a webpage into the Program Path, and it brings up the page in my browser.  Is it possible, using the Parameter entry, to pull up different sites.  Such as: I have an IMDB number field for my movies, and would like to use that to pull the appropriate page.

I've tried doing this: http://us.imdb.com/title/tt[IMDB]
But it doesn't work.  Can I enter the variable somewhere else, or am I trying to do something that isn't possible under MC11 ?
Logged

JimH

  • Administrator
  • Citizen of the Universe
  • *****
  • Posts: 71680
  • Where did I put my teeth?
Re: Using "Send to -> External" to look up a webpage ?
« Reply #1 on: August 15, 2006, 01:15:42 pm »

Try visiting the page you want, and take a look at the URL in the address box.
Logged

c1c9k72

  • Regular Member
  • Galactic Citizen
  • ****
  • Posts: 332
  • So many worlds, so much to do, so little done...
Re: Using "Send to -> External" to look up a webpage ?
« Reply #2 on: August 15, 2006, 01:49:20 pm »

Try visiting the page you want, and take a look at the URL in the address box.

I've got the URL I need to use.  What I need to know is whether or not I can use field variables (other than [Filename]) in the Program Path to go to different websites.
Logged

marko

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 8973
Re: Using "Send to -> External" to look up a webpage ?
« Reply #3 on: August 15, 2006, 07:59:26 pm »

I see that you can enter a webpage into the Program Path, and it brings up the page in my browser.  Is it possible, using the Parameter entry, to pull up different sites.  Such as: I have an IMDB number field for my movies, and would like to use that to pull the appropriate page.

I've tried doing this: http://us.imdb.com/title/tt[IMDB]
But it doesn't work.  Can I enter the variable somewhere else, or am I trying to do something that isn't possible under MC11 ?
If the only thing that changes is the number, you could get MC to build the link for each file.
You would do this by creating a new, calculated library field. Assuming you know where to go, and just need the template... :

if(isempty([IMDB]),N//A,http://us.imdb.com/title/tt[IMDB])

That will put N/A in the field for all files without an IMDB number, and the url for those that have one.
I'm not sure of the best way to go about using the info once you have it, but still, perhaps that's enough to get you rolling?

c1c9k72

  • Regular Member
  • Galactic Citizen
  • ****
  • Posts: 332
  • So many worlds, so much to do, so little done...
Re: Using "Send to -> External" to look up a webpage ?
« Reply #4 on: August 15, 2006, 08:13:16 pm »

Marko,

Thanks for the assist.  I built the template, like you said, though it needed some slight tweaking.
if(isempty([IMDB]),N//A,http:////us.imdb.com//title//tt[IMDB])

However, when I put it in the Parameter field, with nothing in the Program Path, it opens my Explorer.

When I put it in my Program Path, with nothing in the Parameter field, I get a window that says "File [IMDB Link] not found."

And, when I put [IMDB Link] in both Program Path and Parameter, the same thing happens as above.

Finally, I tried giving it my Firefox.exe as the Program Path, and [IMDB Link] as the parameter, and for some reason, it opened two windows and searched Yahoo.

Any suggestions on how to proceed from here ?
Logged
Pages: [1]   Go Up