<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>Cycling 74  &#187;  Topic: Open URL / HTTP browser in Max/Jitter</title>
		<atom:link href="http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/feed</link>
		<description></description>
		<pubDate>Tue, 18 Jun 2013 00:25:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-30138</guid>
					<title><![CDATA[Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-30138</link>
					<pubDate>Tue, 06 Feb 2007 06:35:57 +0000</pubDate>
					<dc:creator>namaste ranch</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;m trying to find a way to open URL (and ideally launch a browser in the process) with Max/Jitter on Intel Mac.</p>
<p>LaunchURL external does this, but not on Intel Mac. mxj.syscommand would let me exec a script to do it, but again not on Intel Mac. jit.uldl can upload FTP but not HTTP.</p>
<p>Any suggestions would be greatly appreciated.</p>
<p>Thanks!</p>
<p>Jeff</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95699</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95699</link>
					<pubDate>Tue, 06 Feb 2007 06:50:37 +0000</pubDate>
					<dc:creator>Wesley Smith</dc:creator>

					<description>
						<![CDATA[
						<p>This works:</p>
<p>#P window setfont &#8220;Sans Serif&#8221; 9.;<br />
#P window linecount 2;<br />
#P message 517 678 199 196617 ; max launchbrowser <a href="http://www.lua.org/" rel="nofollow">http://www.lua.org/</a>;<br />
#P window clipboard copytext &#8220;;<br />
max launchbrowser <a href="http://www.lua.org/&#038;#8221" rel="nofollow">http://www.lua.org/&#038;#8221</a>; #E;<br />
#P window clipboard copycount 1;</p>
<p>
wes</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95700</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95700</link>
					<pubDate>Tue, 06 Feb 2007 15:07:35 +0000</pubDate>
					<dc:creator>namaste ranch</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks Wes! While this does work with a hardwired URL, I need to specify different URLs on the fly. Essentially, I need a way to specify the URL as a variable. I&#8217;ve experimented with using a message box containing a URL at the input to the ; max message with $1, but it doesn&#8217;t seem to work. Any suggestions?</p>
<p>Thanks again!</p>
<p>Jeff</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95701</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95701</link>
					<pubDate>Tue, 06 Feb 2007 15:22:40 +0000</pubDate>
					<dc:creator>Brecht</dc:creator>

					<description>
						<![CDATA[
						<p>You could compose your message using sprintf, bang it with prepend set<br />
connected to sprintf&#8217;s output to place it in a message box, subsequently<br />
bang the messagebox</p>
<p>><br />
> Thanks Wes! While this does work with a hardwired URL, I need to specify<br />
> different URLs on the fly. Essentially, I need a way to specify the URL as<br />
> a variable. I&#8217;ve experimented with using a message box containing a URL at<br />
> the input to the ; max message with $1, but it doesn&#8217;t seem to work. Any<br />
> suggestions?<br />
><br />
> Thanks again!<br />
><br />
> Jeff<br />
> &#8211;<br />
> <a href="http://www.jeffreypaulburger.com" rel="nofollow">http://www.jeffreypaulburger.com</a><br />
> <a href="http://www.jpburger.com" rel="nofollow">http://www.jpburger.com</a><br />
></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95702</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95702</link>
					<pubDate>Tue, 06 Feb 2007 16:47:44 +0000</pubDate>
					<dc:creator>Wesley Smith</dc:creator>

					<description>
						<![CDATA[
						<p>Check out p. 22 of Javascript in Max.  You can use this JS script and<br />
patch to do what you want.</p>
<p>
#P window setfont &#8220;Sans Serif&#8221; 9.;<br />
#P window linecount 1;<br />
#P newex 186 218 76 196617 prepend launch;<br />
#P newex 186 242 52 196617 js http.js;<br />
#P button 186 150 15 0;<br />
#P message 302 173 26 196617 com;<br />
#P message 244 173 54 196617 cycling74;<br />
#P message 186 173 34 196617 www;<br />
#P newex 186 194 126 196617 sprintf <a href="http://%s.%s.%s" rel="nofollow">http://%s.%s.%s</a>;<br />
#P connect 4 0 1 0;<br />
#P connect 1 0 0 0;<br />
#P connect 0 0 6 0;<br />
#P connect 6 0 5 0;<br />
#P fasten 4 0 2 0 191 169 249 169;<br />
#P connect 2 0 0 1;<br />
#P fasten 4 0 3 0 191 169 307 169;<br />
#P connect 3 0 0 2;<br />
#P window clipboard copycount 7;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-http.js&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>function launch(val)<br />
{<br />
	max.launchbrowser(val);<br />
}</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95703</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95703</link>
					<pubDate>Tue, 06 Feb 2007 18:03:40 +0000</pubDate>
					<dc:creator>Joshua Kit Clayton</dc:creator>

					<description>
						<![CDATA[
						<p>
On Feb 6, 2007, at 7:07 AM, Jeff Burger wrote:</p>
<p>><br />
> Thanks Wes! While this does work with a hardwired URL, I need to  <br />
> specify different URLs on the fly. Essentially, I need a way to  <br />
> specify the URL as a variable. I&#8217;ve experimented with using a  <br />
> message box containing a URL at the input to the ; max message with  <br />
> $1, but it doesn&#8217;t seem to work. Any suggestions?</p>
<p>text<br />
|<br />
[send max]</p>
<p>-Joshua</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95704</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95704</link>
					<pubDate>Tue, 06 Feb 2007 18:27:52 +0000</pubDate>
					<dc:creator>Wesley Smith</dc:creator>

					<description>
						<![CDATA[
						<p>> text<br />
> |<br />
> [send max]</p>
<p>I tried that and I got an error saying [send max] already existed with<br />
the result that the object I created had no inlets.</p>
<p>wes</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95705</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95705</link>
					<pubDate>Tue, 06 Feb 2007 18:52:26 +0000</pubDate>
					<dc:creator>Jean-Francois Charles</dc:creator>

					<description>
						<![CDATA[
						<p></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95706</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95706</link>
					<pubDate>Tue, 06 Feb 2007 19:10:52 +0000</pubDate>
					<dc:creator>Joshua Kit Clayton</dc:creator>

					<description>
						<![CDATA[
						<p>
On Feb 6, 2007, at 10:27 AM, Wesley Smith wrote:</p>
<p>>> text<br />
>> |<br />
>> [send max]<br />
><br />
> I tried that and I got an error saying [send max] already existed with<br />
> the result that the object I created had no inlets.</p>
<p>Sorry for the misinformation here. Try [forward max]. Example patch  <br />
below.</p>
<p>#P window setfont &#8220;Sans Serif&#8221; 9.;<br />
#P window linecount 1;<br />
#P message 264 94 85 196617 <a href="http://www.yunart.org" rel="nofollow">http://www.yunart.org</a>;<br />
#P message 163 94 94 196617 <a href="http://www.psi-lord.com" rel="nofollow">http://www.psi-lord.com</a>;<br />
#P newex 84 136 114 196617 prepend launchbrowser;<br />
#P message 84 94 71 196617 <a href="http://www.nlp.com" rel="nofollow">http://www.nlp.com</a>;<br />
#P newex 84 162 69 196617 forward max;<br />
#P fasten 4 0 2 0 269 122 89 122;<br />
#P fasten 3 0 2 0 168 122 89 122;<br />
#P connect 1 0 2 0;<br />
#P connect 2 0 0 0;<br />
#P window clipboard copycount 5;</p>
<p>
-Joshua</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95707</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95707</link>
					<pubDate>Tue, 06 Feb 2007 19:23:09 +0000</pubDate>
					<dc:creator>Jean-Francois Charles</dc:creator>

					<description>
						<![CDATA[
						<p>Great. Easier to use than [sprintf] to make a ; message.</p>
<p>> Sorry for the misinformation here. Try [forward max]. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95708</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95708</link>
					<pubDate>Tue, 06 Feb 2007 19:57:09 +0000</pubDate>
					<dc:creator>vade</dc:creator>

					<description>
						<![CDATA[
						<p>psi&#8230; lord?</p>
<p>So does this mean I have to buy a $200 &#8220;Double Crystal Power Ring&#8221; in  <br />
order to master Jitter?</p>
<p>
&#8220;A Psi-Lord has total control over the Matrix. What makes him  <br />
different from a Psi-Master is that he has gone beyond knowledge,  <br />
reaching the position of silent knowledge where he knows everything.  <br />
To reach this position of the assemblage point one needs only one  <br />
thing &#8211; power. Total ruthlessness of spirit is required, not to  <br />
achieve power, but to stop power being bled from the Psi-Master by  <br />
him/her donating energy to poor souls in need of energy. A Psi-Lord  <br />
never gives energy to anyone under any circumstances, only giving  <br />
them access to energy via psychotronic amplifiers which feed off the  <br />
Matrix &#8211; weakening it for Psi-Masters only&#8230;&#8221;</p>
<p>
On Feb 6, 2007, at 2:10 PM, Joshua Kit Clayton wrote:</p>
<p>><br />
> Sorry for the misinformation here. Try [forward max]. Example patch  <br />
> below.<br />
><br />
> #P window setfont &#8220;Sans Serif&#8221; 9.;<br />
> #P window linecount 1;<br />
> #P message 264 94 85 196617 <a href="http://www.yunart.org" rel="nofollow">http://www.yunart.org</a>;<br />
> #P message 163 94 94 196617 <a href="http://www.psi-lord.com" rel="nofollow">http://www.psi-lord.com</a>;<br />
> #P newex 84 136 114 196617 prepend launchbrowser;<br />
> #P message 84 94 71 196617 <a href="http://www.nlp.com" rel="nofollow">http://www.nlp.com</a>;<br />
> #P newex 84 162 69 196617 forward max;<br />
> #P fasten 4 0 2 0 269 122 89 122;<br />
> #P fasten 3 0 2 0 168 122 89 122;<br />
> #P connect 1 0 2 0;<br />
> #P connect 2 0 0 0;<br />
> #P window clipboard copycount 5;<br />
><br />
><br />
> -Joshua</p>
<p>v a d e //</p>
<p><a href="http://www.vade.info" rel="nofollow">http://www.vade.info</a><br />
abstrakt.vade.info</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95709</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95709</link>
					<pubDate>Tue, 06 Feb 2007 20:11:42 +0000</pubDate>
					<dc:creator>Andrew Benson</dc:creator>

					<description>
						<![CDATA[
						<p>Oops,<br />
It appears JKC let the cat out of the bag.  Just be careful to avoid<br />
Graham Nickells aka Paul Hughes Barlow, as his crystals will apparently<br />
drive you mad, make you ill, and are part of an evil plot by the UK and<br />
US government to confuse the populace about the powers of psi-technology.</p>
<p>AB</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95710</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95710</link>
					<pubDate>Tue, 06 Feb 2007 20:14:40 +0000</pubDate>
					<dc:creator>Joshua Kit Clayton</dc:creator>

					<description>
						<![CDATA[
						<p>
On Feb 6, 2007, at 11:57 AM, vade wrote:</p>
<p>> psi&#8230; lord?</p>
<p>Dig deeper my child. You have not yet even scratched the surface.</p>
<p>-Joshua</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95711</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95711</link>
					<pubDate>Tue, 06 Feb 2007 20:28:12 +0000</pubDate>
					<dc:creator>vade</dc:creator>

					<description>
						<![CDATA[
						<p>Thank god that we have this service however:</p>
<p>&#8220;If you have bought any of these poisoned crystals, talismans&#8230;  <br />
amulets, I have designed an anti occult/anti demon pc to cleanse  <br />
these poor people of occult poisons and entities. This full spectrum  <br />
cleansing PC costs $70 plus $10 p&#038;p&#8221;</p>
<p>Ok. ill stop. Well played gentlemen.. well.. played&#8230;</p>
<p>On Feb 6, 2007, at 3:11 PM, andrew benson wrote:</p>
<p>> Oops,<br />
> It appears JKC let the cat out of the bag.  Just be careful to avoid<br />
> Graham Nickells aka Paul Hughes Barlow, as his crystals will  <br />
> apparently<br />
> drive you mad, make you ill, and are part of an evil plot by the UK  <br />
> and<br />
> US government to confuse the populace about the powers of psi- <br />
> technology.<br />
><br />
> AB<br />
></p>
<p>v a d e //</p>
<p><a href="http://www.vade.info" rel="nofollow">http://www.vade.info</a><br />
abstrakt.vade.info</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95712</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95712</link>
					<pubDate>Tue, 06 Feb 2007 20:30:54 +0000</pubDate>
					<dc:creator>Gregory Taylor</dc:creator>

					<description>
						<![CDATA[
						<p>>Oops,<br />
>It appears JKC let the cat out of the bag.  Just be careful to avoid<br />
>Graham Nickells aka Paul Hughes Barlow, as his crystals will apparently<br />
>drive you mad, make you ill, and are part of an evil plot by the UK and<br />
>US government to confuse the populace about the powers of psi-technology.</p>
<p>All I know is that this charm-bracelet thing can turn on<br />
the radio at ear-splitting volume in SUVs remotely, make<br />
dogs pee right where they&#8217;re standing, bend lunchmeat,<br />
and get me automatic upgrades to business class on<br />
Greyhound buses. Joshua told me never to wear it<br />
anywhere in a restaurant or hotel where they were hosting<br />
speed dating, but that&#8217;s not been a problem. The matching<br />
cufflinks don&#8217;t appear to do anything, though.<br />
&#8211; <br />
on the floor there&#8217;s a long wooden table/on the table there&#8217;s an open book/<br />
on the page there&#8217;s a detailed drawing/and on the drawing is the name I took<br />
Gregory Taylor <a href="http://www.rtqe.net" rel="nofollow">http://www.rtqe.net</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95713</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95713</link>
					<pubDate>Tue, 06 Feb 2007 20:55:09 +0000</pubDate>
					<dc:creator>vade</dc:creator>

					<description>
						<![CDATA[
						<p>I wonder &#8211; Gregory , is the &#8220;Double Crystal Power Ring&#8221; related in  <br />
anyway to those rotating and pulsing tori and their mystical psychic  <br />
effects?<br />
*cough*</p>
<p>On Feb 6, 2007, at 3:30 PM, Gregory Taylor wrote:<br />
> All I know is that this charm-bracelet thing can turn on<br />
> the radio at ear-splitting volume in SUVs remotely, make<br />
> dogs pee right where they&#8217;re standing, bend lunchmeat,<br />
> and get me automatic upgrades to business class on<br />
> Greyhound buses. Joshua told me never to wear it<br />
> anywhere in a restaurant or hotel where they were hosting<br />
> speed dating, but that&#8217;s not been a problem. The matching<br />
> cufflinks don&#8217;t appear to do anything, though.</p>
<p>v a d e //</p>
<p><a href="http://www.vade.info" rel="nofollow">http://www.vade.info</a><br />
abstrakt.vade.info</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95714</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95714</link>
					<pubDate>Tue, 06 Feb 2007 20:57:01 +0000</pubDate>
					<dc:creator>nesa</dc:creator>

					<description>
						<![CDATA[
						<p>Some years ago I was working in a DTP studio, and once we had local  <br />
eccentric painter as a customer, sitting next to me and telling me  <br />
where to place things. And as if that was not annoying enough &#8211; the  <br />
machine crashed frequently, until he said: Look, I have this crystal  <br />
in my pocket, people say it causes bad things to computers, let me  <br />
take it out.<br />
He took a huge stone out of his pocket, and placed it outside.  <br />
Computer stopped crashing. I&#8217;ll never know&#8230;</p>
<p>On Feb 6, 2007, at 9:11 PM, andrew benson wrote:</p>
<p>> Oops,<br />
> It appears JKC let the cat out of the bag.  Just be careful to avoid<br />
> Graham Nickells aka Paul Hughes Barlow, as his crystals will  <br />
> apparently</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95715</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95715</link>
					<pubDate>Tue, 06 Feb 2007 21:04:01 +0000</pubDate>
					<dc:creator>Gregory Taylor</dc:creator>

					<description>
						<![CDATA[
						<p>>I wonder &#8211; Gregory , is the &#8220;Double Crystal Power Ring&#8221; related in <br />
>anyway to those rotating and pulsing tori and their mystical psychic <br />
>effects?<br />
>*cough*</p>
<p>Gosh, that&#8217;d be asking me whether I believe that all forms<br />
of enfeeblement are outward manifestations of some<br />
common inner state. I will say this, though &#8211; the number of<br />
bent psi-lords at raves is higher than you might imagine.</p>
<p>
&#8211; <br />
on the floor there&#8217;s a long wooden table/on the table there&#8217;s an open book/<br />
on the page there&#8217;s a detailed drawing/and on the drawing is the name I took<br />
Gregory Taylor <a href="http://www.rtqe.net" rel="nofollow">http://www.rtqe.net</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95716</guid>
					<title><![CDATA[Re: Open URL / HTTP browser in Max/Jitter]]></title>
					<link>http://cycling74.com/forums/topic/open-url-http-browser-in-maxjitter/#post-95716</link>
					<pubDate>Wed, 25 Jul 2007 02:04:04 +0000</pubDate>
					<dc:creator>mat_kinotek</dc:creator>

					<description>
						<![CDATA[
						<p>
hello all !!<br />
i am trying to build an image browser within max, basically an interface<br />
very similar to the ACDsee one &#8211; where you can drag, cut, paste and move<br />
thumbnails of jpg files.<br />
Do someone have a suggestion on how can i achive this? maybe with some<br />
java class???<br />
any help s very very apreciated!!<br />
tnx in adv,<br />
m</p>
<p>
_-_-__-_-__-_-__-_-__-_-__-_-__-_-_</p>
<p>kinotek<br />
live media and vjing</p>
<p>
Mattia Casalegno<br />
<a href="http://www.kinotek.org" rel="nofollow">http://www.kinotek.org</a><br />
<a href="mailto:mat@kinotek.org">mat@kinotek.org</a><br />
++393332152448<br />
____________________________</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

