htmltext

2004-03-09 Thread Rick Rice
	I have a large number of files I read into a field as htlmtext.

	For example a text file has:

The production of blood cells is Linkcalled hemopoiesis/Link.   
Blood is one of the Bconnective tissues/B.

	When I read this into the field the B and the majority of the other 
html stuff works perfectly. However, the Link or GROUP does not. 
Anyone know what I'm missing?
	I using MC 2.4.3 and Mac OSX.
	Another question, how would I use img src= to link say image 
blood.jpg to the linked text above?
	I know this must be simple, but darned if I can get it to work.
	Thanks in advance
	Rick Rice
	Health Sciences
	UCC

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: htmltext

2004-03-09 Thread Rick Rice
	OK, I just figured out that if I add the a and /a tags the link 
tag works.
	ie aLinkcalled hemopoiesis/Link/a

	However, I still don't have a clue how to use the img src= tag.
	I would really appreciate the help, especially in the form of an 
example.
	Thanks
	Rick

On Tuesday, March 9, 2004, at 12:35  PM, Rick Rice wrote:

	I have a large number of files I read into a field as htlmtext.

The production of blood cells is Linkcalled hemopoiesis/Link.   
Blood is one of the Bconnective tissues/B.
___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: htmltext

2004-03-09 Thread Alain Farmer
Hello Rick Rice,

 OK, I just figured out that if I add the a and
 /a tags the link tag works.
 ie aLinkcalled hemopoiesis/Link/a

I have been doing HTML since 1994, and I never heard
of the libk tag. Here is how you create an anchor :

a href=#MyAnchorNameclick on this anchor/a
-- in the TOC at the top of the page

a name=MyAnchorName
-- somewhere in the page below the above.

--

To create a normal link :
a href=http://ufp.uqam.ca;click on this anchor/a

--

 However, I still don't have a clue how
 to use the img src= tag.

img
src=http://ufp.uqam.ca/Pan/graphics/headers/header5.jpg;

This will integrate an image into the page.

 I would really appreciate the help,
 especially in the form of an example.

Here you go!  ;-))

   Thanks
   Rick

The next logical step toward more list-relevance is
that you can script the coding of these HTML snipets.
For ex:

function imageTag theURL
  put quote  theURL  quote into theURL
  return img src=  theURL  
end imageTag

function link theURL,anchor
  put quote  theURL  quote into theURL
  return a href=  theURLanchor  /a
end link

To create an image that you can click on :

on mouseUp
  put field imageURL into imageURL
  put field destURL into pageURL
  get link(pageURL, imageTag(imageURL))
  answer it
end mouseUp

Easy, eh!  :))

Alain


__
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster
http://search.yahoo.com
___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard