> You need to render an IFRAME, but want to substitute different URLs, > depending upon what site you want to view, and you also want to have > different tiddlers to display the IFRAME for each a specific URL.
After a careful re-read of your previous message, I realize that your specific goals are slightly different... so here's a more precise solution: First, create a tiddler called [[MyFrame]] containing: ---------------- <html><div align="center"><iframe src="http://$1/$2" frameborder="0" width="100%" height="600"></iframe></div></html> ---------------- Next, create a tiddler called [[IPGoesHere]], containing just: 1.2.3.4 Then, create separate tiddlers: [[Moodle]] <<tiddler MyFrame with: {{store.getTiddlerText('IPGoesHere')}} moodle>> [[MediaWiki]] <<tiddler MyFrame with: {{store.getTiddlerText('IPGoesHere')}} mediawiki>> [[Elgg]] <<tiddler MyFrame with: {{store.getTiddlerText('IPGoesHere')}} elgg>> [[TiddlyHome]] <<tiddler MyFrame with: {{store.getTiddlerText('IPGoesHere')}} tiddlyhome>> [[TiddlySpeck]] <<tiddler MyFrame with: {{store.getTiddlerText('IPGoesHere')}} tiddlyspeck>> That should do it. enjoy, -e --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/TiddlyWiki?hl=en -~----------~----~----~----~------~----~------~--~---

