Newbies roygbiv Posted September 2, 2000 Newbies Posted September 2, 2000 Is it posible to set up FMP w/Web Companion so people can download linked documents? I'd like to set up a library of reference docs and have folks sort by title, category, filetype, etc., then simply download the object (Word, PPT, Excel, PDF, whatever...) Thanks for any advice, roy (FMP4.1 running on a Windog)
Vaughan Posted September 4, 2000 Posted September 4, 2000 Sure... put all the reference docs up on a web server. Make your FMP database into a catalogue for the docs (ie each record has title, author, etc) plus a field with the url for each. People cna then search the database, when the want a doc they click on the link and download it.
Newbies bennyk Posted January 8, 2001 Newbies Posted January 8, 2001 How do I write the URL to make it "clickable", if we write http://asdf.asdf.se the FM database (FM pro 5.0 and Web Companion), the URL is there but it is not "Clickable" in the web browser Bengt (novice in FM)
Newbies bennyk Posted January 9, 2001 Newbies Posted January 9, 2001 I am not far at all into custom web publishing. What we want to do is: We are running a project where teachers at our university collects and categorize links about language training resources on the net. We want to use a web interface since also other universities are involved and not on the same LAN. When the teachers find an intr. page he/she cuts from "address" in the web browser and paste into our FM5 database published through web companion. When someone then want to use the database he/she has to cut and paste the URL back to the address field in the web browser. It would be more convenient if he/she just had to "click". Is that possible without to much programming ? Thanks in advance on any help Bengt
elvis_impersonating_penguin Posted January 9, 2001 Posted January 9, 2001 how do you get the url to show up.. if you just use [FMP-field: FIELD_NAME] then to make it clickable you would do this <a href="[FMP-field: FIELD_NAME]">[FMP-field: FIELD_NAME] </a> change FIELD_NAME to the name of the field that the URL is in...
Keith M. Davie Posted January 9, 2001 Posted January 9, 2001 An example of the -linkrecord tag. This example uses a database of sound recordings. This represents code on results.htm page which was accessed by a Link Action utilizing an Exact Search of Two Fields which searches a specified category of music (from a value list) and only those titles which are currently available in a the status field (also a value list, values: in, out). The [linkrec] is anchored with the title and when clicked, displays the song names of that album in a repeating field on results2.htm Parameters: -db="dbtwo.fp5", -format="form" Field names in the table: "category" (jazz, rock, etc), "artist" (name), "medium" (CD, LP, etc), "title" (album name) This is the basic code <p><center> <table border="1" cellpadding="5" cellspacing="0" width="88.7%"> <tr><th align="center" colspan="3">[fmp-field: category]</th></tr> <tr><td align="center">Artist</td><td align="center">Medium</td><td align="center">Title</td></tr> [fmp-record] <tr align="center"><td>[fmp-field: artist]</td> <td>[fmp-field: medium]</td> <td><a href="[fmp-linkrecid: format=results2.htm]"><[fmp-field: title]</a></td> [/fmp-record] </table></center></p> I hope you find this useful. It probably will not answer your question directly, but may give you some ideas of how to solve your particular problem. Peace Keith M. Davie
Vaughan Posted January 15, 2001 Posted January 15, 2001 [FMP-LinkRecID] is used to change to specific records in a shared database. The original question related to linked documents -- downloading files. For this the LinkRecID and other CDML tags are not applicable.
gin Posted March 10, 2001 Posted March 10, 2001 It seems I have the same problem as Brengt. I have a database containing full URL's. I use FM Web Companion and the url's are not clickable. Where do I have to put "<a href="[FMP-field: FIELD_NAME]">[FMP-field: FIELD_NAME] </a>"? I didn't build any template, I just use the Web companion of FMP so i didn't written any code. What do I have to do exactly in my db to have the url's clickable online? Thanks in advance. B.
Vaughan Posted March 10, 2001 Posted March 10, 2001 You mean that you are using Instant web publishing... you may be snookered then.
Vaughan Posted March 12, 2001 Posted March 12, 2001 FMP *is* a sultiable tool, it's just that you'll have to do a bit more that turn on instant web publishing -- custom publishing. Look in the FAQs forum for some hints and tips.
gin Posted March 12, 2001 Posted March 12, 2001 Hum, does it mean I'm using the wrong tool? Isn't posible to make hyperlinks clickable in setting up the right things in your database and using FMP Webcompanion? And if it's not posible, what should I use to make it clickable? FYI I just started a day ago in trying to publish db online : I'm a novice in this, but I would like to learn this very quickly. I couldn't find any interesting info about this subject in the help function and in the book of FMPro. I hope to find the info through this forum. B.
gin Posted March 12, 2001 Posted March 12, 2001 I read that I have to put the following tag <A HREF = "[FMP-Field: URL]"> [FMP-Field: URL] </A> in the HTML page. But how do I have to do to access the html templates of FMpro 5.0? Where can I change the html codes?
elvis_impersonating_penguin Posted March 12, 2001 Posted March 12, 2001 to change the HTML codes you must use custom web publishing. with instant webpublishing you can't change any of the code, what it creates is what you are stuck with.
gin Posted March 13, 2001 Posted March 13, 2001 OK. Which programs could I use to do custom development, regardless FM developer?
elvis_impersonating_penguin Posted March 13, 2001 Posted March 13, 2001 i use notepad to write all my HTML code (which is what you need to do to use custom web publishing) some people like to use HomePage, from what i hear it makes it easier. i dont know though. i have always written HTML code with notepad. Really any html editor will do it, however you should avoid Microsoft's Frontpage, it tends to mangle CDML code (which is the code put into the html code to make it work with the database).
gin Posted March 13, 2001 Posted March 13, 2001 Perfect. I just wrote some cdml tags in homesite and it works (not all of them). Can you tell me where I can find the basics (and more experienced) of CDML tags? I already know how to make the link to a db, the form and the needed layout. I would like to read more about how to publish info from the databases. So if you know a website that describes the most used cdml tags, I'll be pleased to learn them. Thanks in advance, B.
Keith M. Davie Posted March 13, 2001 Posted March 13, 2001 the following was posted originally by tomrt, rockville md. FileMaker's CDML Reference (for v5) is freely available at: http://www.filemaker.com/downloads/hqx/cdml_web_tools.zip Peace Keith M. Davie
Recommended Posts
This topic is 8924 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 accountSign in
Already have an account? Sign in here.
Sign In Now