Jump to content

cat traveller

Members
  • Posts

    67
  • Joined

  • Last visited

  • Days Won

    1

cat traveller last won the day on May 31 2018

cat traveller had the most liked content!

Profile Information

  • Industry
    catering
  • Gender
    Not Telling
  • Location
    Hamburg, Germany

FileMaker Experience

  • Skill Level
    Intermediate
  • Application
    21

Platform Environment

  • OS Platform
    Mac
  • OS Version
    Sonoma

Recent Profile Visitors

3,444 profile views

cat traveller's Achievements

Enthusiast

Enthusiast (6/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

1

Reputation

2

Community Answers

  1. SOLVED. you were correct Soren. I did drill through the script step by step. I was pulling the data via Execute SQL from three data files. Two of them did not have the right Webdirect enabled. Thats why the SQL result did not return anything. I have turned off webdirect access in security by default. Afterwards - all working. Thanks and Cheers
  2. Yes, this might work as well. The issue is that it's not displaying in Webdirect. In filemaker Go and on filemaker it is displaying correctly. I am trying to find out how to display the data in filemaker web direct. Cheers
  3. I have collected data in global variables that I usually display without a problem in portals and in list view in the filemaker app. For this I created fields in a table that calculated unstored GetValue ($$myvariable ; RecordNumber) whereas Record number is a set indexed field of that table. When I try to display this data in filemaker Go it also works. However on webdirect (unfortunately some of our staff have android phones, it will display as ?. Is this common behaviour for webdirect? I also tried a layout calculation that also displays ? Thank you all
  4. Just a follow up for those reading. I reported the issue to Claris, and now it is working.
  5. Thank you- I am copying / pasting. The idea came from the implementation that is using the url scheme to pass the clipboard to filemaker Go. But this is working with images from the camera roll. I also tried to pass an iCloud link back to filemaker that is generated via shortcuts and to use insert from URL but that needs user interaction, the link asks the user to download. If there is another scripted option, I could also use it. Thank you. https://www.youtube.com/embed/rQbIQW-btC0
  6. Hi, I am copying a scanned pdf on my iPhone and am passing the clipboard to FilemakerGo via Shortcuts. Inside my filemaker file, I am running a script to paste the clipboard into a container field. While this works with images, it does not work with pdf files. Am I on the wrong track to do this? Or is FilemakerGo not able to copy the clipboard into a container field? I tried to do the same copying the clipboard into the mail app and it works perfectly. Thank you
  7. Thank you! I did see that post on the community forum. If I use the code and open the map via Filemaker or Filemaker Go, the website displays fine, however on Chrome, Firefox and Safari on web direct, it only renders a while rectangle. I am unfortunately stuck.
  8. Hi, for some time now my previous webviewer showing lat- lon coordinates is showing an overlay stating this website cannot be loaded correctly. I checked my api key if its working, if my google account has billing enabled and if the java is enabled. However, still the overlay persists. This is my code in the webviewer. Would anyone know what is wrong? I spent 4 hours looking but unfortunately I am not finding an answer. Thank you. SetzeVar ( [ lat = Readasurlencoded ( lat ); lng = Readasurlencoded ( lon )) ]; "<!DOCTYPE html> <html> <head> <title>Simple Map</title> <meta name=\"viewport\" content=\"initial-scale=1.0\"> <meta charset=\"utf-8\"> <style> /* Always set the map height explicitly to define the size of the div * element that contains the map. */ #map { height: 100%; } /* Optional: Makes the sample page fill the window. */ html, body { height: 100%; margin: 0; padding: 0; } </style> </head> <body> <div id=\"map\"></div> <script> var map; function initMap() { var myLatLng = {lat: " & lat &", "&"lng: "& lng &"}; map = new google.maps.Map(document.getElementById('map'), { center: myLatLng, zoom: 17 }); var marker = new google.maps.Marker({ position: myLatLng, map: map, title: 'Hello' }); } </script> <script src=\"https://maps.googleapis.com/maps/api/js?key=" & MYAPIKEY & "&callback=initMap\" async defer></script> </body> </html>"
  9. By the way - the layouts work fine on Chrome for iPad. But that would be another program to install.
  10. Hi everyone, we are using web direct on Safari on an Ipad iOS 14, FilemakerServer 19. When we try to put data into a data field, the user needs to click once to select the field, and once again to see the keyboard. This is super annoying. I tried several approaches to select field, select object but it does not work. I know that there is FIlemaker Go but we have to give iPads to people in a remote place and they wont have the chance to install it. Is there a way around anyone would know? Thank you!
  11. Thank you so much for the feedback. In attach an example. The idea would be to put blocks of text into the // dividers. Then the block of text is removed. This used to work great before... Thank you. SubstituteValues.fmp12
  12. For some time I have been cleaning emails for filing in our filemaker database. For this, the users have added to a substitute field all text that they wanted removed from and email, separated by "//". Then I used @comment custom function https://www.briandunning.com/cf/851 to remove the text blocks from the email text. Somehow this stopped working in fm 18. I tried to find out where it errors but to no avail. I was also thinking about putting each block of text into individual records and then creating an array from this or loop through the email using while but I am a little lost on how to do this. Would anyone be able to help please?
  13. Thanks Wim, I was not aware of this. Cheers
  14. Hi everyone, I am trying to run a server sided script that will import a found set. The server sided script opens a handler file that opens data file 1, does the find, imports into data file 2. However, the search works in script debugger but imports all records. The script opens layout A, searches goes to layout b, imports. Also the import of the selected fields seems not be remembered. I am stuck..... Thank you
  15. Hi Rwoods, thank you for taking the time to reply on this. Yes, I have been trying to get this to work for several hours. I am creating the global variables first in my starter file. Now here comes the problem. I am trying to set the datasources for the interface file that is opened via the starter file. For this I need to somehow pass the variables for the data sources over to that file. For this I tried: - calling a script from the interface file to create those variables. This opens the file hidden (and that happens before the parameters can be passed. hence, the global variables dont work. - open the file (and then passing the parameters) also does not work. Maybe you have a way to archieve this? Thank you.
×
×
  • Create New...

Important Information

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