Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 7207 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I upgraded Developer to 7.0v3 from 7.0v2 yesterday and suddenly url's no longer open up. They worked perfectly prior to the upgrade. I use the goto URL and all I get now is a blank page. Is there a bug in the v3 upgrade?

Posted

With the Open URL script, FM puts an extra slash after the .com. Many Web sites don't mind and open up fine. Others, such as Yahoo URLs, don't open until you delete the extra slash.

I'm new to FM at v 3 and don't know how this worked in prev versions. Apparently FileMaker is in no hurry to fix it.

Is there anything that can be done now to make it work?

Posted

I've found this bug only occurs where it's not a www address. I asked the same question and here are a couple of solutions.

If it's only one address you can save a local html page somewhere which automatically redirects.

Use SEND EVENT rather than OPEN URL. Make the calculation something like this:

 "iexplore.exe http://hostname/folder/folder/file.asp?parameter=" & Table::Field 

Posted

Found another way around it on Matt Petrowsky's [sp] site

To solve this issue, just use the hexadecimal equivalents of

their corresponding characters. This is known as URL Encoding

and is covered by RFC 1738.

You've probably seen a url where it uses %20 somewhere. That %20

is the hex number (minus the percent sign) of a space. For the

slash, that character is represented by 2f. So %2f will

translate into a slash character. Here is a calculation that

will allow you to reference a field and use its contents to

search Google.

"http://www.google.com" & "%2f" &

"search?hl=en&lr=&safe=off&as_qdr=all&q="

& SearchValue & "&btnG=Search"

Where you have a field named "SearchValue".

  • 2 weeks later...
  • 4 weeks later...
Posted

Ok I understand your post..........and thank you...........BUT, what could I do if I have a field that will house different web page addresses for different records?....is there a way to get around the "bug" so that in each record I could click a button that would have a script open up that particular fields web site?

Posted

In your Open URL script step, use the "Specify" button, and you can specify a calculation. Use this to create a calculation that will convert the URL field for each record to its "fixed" version.

Or simply store the fixed version of the URL in a field in the table, and use the Specify option to select that field.

This topic is 7207 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.