<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: The all new ASPimage plugin for tinyMCE</title>
	<atom:link href="http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/feed/" rel="self" type="application/rss+xml" />
	<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/</link>
	<description>yes we blog</description>
	<lastBuildDate>Mon, 02 Nov 2009 10:18:33 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: precompiled</title>
		<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/#comment-109</link>
		<dc:creator>precompiled</dc:creator>
		<pubDate>Wed, 20 May 2009 17:33:40 +0000</pubDate>
		<guid isPermaLink="false">http://precompiled.wordpress.com/?p=15#comment-109</guid>
		<description>Hi Everybody, I have updated this post. It contains the working version of TinyMCE including the AspImage plugin. I&#039;m afraid that&#039;s the best I can do right now as I lack the time to update the plugin again for later versions of TinyMCE.</description>
		<content:encoded><![CDATA[<p>Hi Everybody, I have updated this post. It contains the working version of TinyMCE including the AspImage plugin. I&#8217;m afraid that&#8217;s the best I can do right now as I lack the time to update the plugin again for later versions of TinyMCE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeffrey</title>
		<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/#comment-108</link>
		<dc:creator>Jeffrey</dc:creator>
		<pubDate>Wed, 20 May 2009 10:01:05 +0000</pubDate>
		<guid isPermaLink="false">http://precompiled.wordpress.com/?p=15#comment-108</guid>
		<description>Hey precompiled,

Thanks for this plugin. But i&#039;m still getting some errors in IE7 one Vista.
The dialogs are not showing the correct name I get the variables ({#advimage_dlg.filename}) and the images are not inserted.

Can you send me the correct version of TinyMCE maybe that will help?

Greetings,
Jeffrey</description>
		<content:encoded><![CDATA[<p>Hey precompiled,</p>
<p>Thanks for this plugin. But i&#8217;m still getting some errors in IE7 one Vista.<br />
The dialogs are not showing the correct name I get the variables ({#advimage_dlg.filename}) and the images are not inserted.</p>
<p>Can you send me the correct version of TinyMCE maybe that will help?</p>
<p>Greetings,<br />
Jeffrey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary</title>
		<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/#comment-107</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Tue, 19 May 2009 12:49:38 +0000</pubDate>
		<guid isPermaLink="false">http://precompiled.wordpress.com/?p=15#comment-107</guid>
		<description>Hi,

I just downloaded your file but me being new to the world of code I do not know how to make it work on my stie, can you please send me detailed instructions on how to use it?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I just downloaded your file but me being new to the world of code I do not know how to make it work on my stie, can you please send me detailed instructions on how to use it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Problem with preview and insert image to textarea</title>
		<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/#comment-106</link>
		<dc:creator>Problem with preview and insert image to textarea</dc:creator>
		<pubDate>Sat, 16 May 2009 11:46:31 +0000</pubDate>
		<guid isPermaLink="false">http://precompiled.wordpress.com/?p=15#comment-106</guid>
		<description>Hi, Bonjour,

I am a physician and a i ambuilding an asp intranet for non commercial association. I have used aspimage for an integration to tinymce. I have made somme modification to your program for accessing to a local directory upload. But i find problerm with preview an insert the choosed pic to tinymce textarea.

Can you help a phusician with non profit aim ?!!

Here is my image.asp :


&lt;!-- #include file=&quot;freeaspupload.inc&quot; --&gt;



 1 Then
		For I = 1 to 2
			Dim X 
			For X = Len(strFilename) To 1  Step -1 
				If Mid(strFilename, X, 1) = &quot;\&quot; Then Exit  For 
			Next 
			If Len(strFilename) &gt; 1 Then
				strFilename = Left(strFilename, X - 1)
			Else
				strFilename = &quot;\&quot;
				X = 2
			End If
		Next 
	   	ExtractDirName = Left(strFilename, X - 1)
    End If
End Function

Function ShowImageForType(strName)
&#039; For the &#039;explorer&#039;: shows file-icons
	Dim strTemp
	strTemp = strName
	If strTemp  &quot;dir&quot; Then
		strTemp = LCase(Right(strTemp, Len(strTemp) - InStrRev(strTemp, &quot;.&quot;, -1, 1)))
	End If
	Select Case strTemp
		Case &quot;asp&quot;, &quot;aspx&quot;
			strTemp = &quot;asp&quot;
		Case &quot;dir&quot;
			strTemp = &quot;dir&quot;
		Case &quot;htm&quot;, &quot;html&quot;
			strTemp = &quot;htm&quot;
		Case &quot;gif&quot;, &quot;jpg&quot;
			strTemp = &quot;img&quot;
		Case &quot;txt&quot;
			strTemp = &quot;txt&quot;
		Case Else
			strTemp = &quot;misc&quot;
	End Select
	strTemp = &quot;&quot;
	ShowImageForType = strTemp
End Function

function SaveFiles(PathToSaveTo)
&#039; Saves potentially uploaded files - any errors are in the returnvalue
    Dim Upload, fileName, fileSize, ks, i, fileKey
    Set Upload = New FreeASPUpload
    Upload.Save(PathToSaveTo)
    SaveFiles = &quot;&quot;
    ks = Upload.Errors.keys
	&#039; if errors ar returned by the component
    if (UBound(ks)  -1) then
        SaveFiles = &quot;&quot;
        for each fileKey in Upload.Errors.keys
            SaveFiles = SaveFiles &amp; Upload.Errors(fileKey)&amp;&quot; &quot; 
        next
    end if
end function
%&gt;

 1 Then  
&#039;	if right(Request.QueryString(&quot;dirpath&quot;),1)=&quot;\&quot; then
&#039;		strPath = Request.QueryString(&quot;dirpath&quot;)
&#039;	else
&#039;		strPath = Request.QueryString(&quot;dirpath&quot;) &amp; &quot;\&quot;
&#039;	end if
&#039;end If

If Len(strPath) &gt; 1 Then  
	if right(strPath,1)=&quot;\&quot; then
		strPath = strPath
		else
		strPath = strPath &amp; &quot;\&quot;
	end if
end If


&#039; on submit - save files
if Request.ServerVariables(&quot;REQUEST_METHOD&quot;) = &quot;POST&quot; then
Dim uploadmessage
	uploadmessage = SaveFiles(strPath)
End If
%&gt;


	{#advimage_dlg.dialog_title}
	
	
	
	
	
	
	&lt;!--
	function FileChosen(FileName)
	{
	// fill the path - textbox and show a preview of the image
	 document.forms[0].elements[&#039;src&#039;].value=&#039;&#039; + FileName;
	 ImageDialog.showPreviewImage(&#039;&#039; + FileName);
	}
	//--&gt;
		
	
	



&lt;form name=&quot;filebrowser&quot; method=&quot;POST&quot; enctype=&quot;multipart/form-data&quot; action=&quot;image.asp?dirpath=&quot; onsubmit=&quot;&quot;&gt;
 


	
		&lt;a href=&quot;mcTabs.displayTab(&#039;general_tab&#039;,&#039;general_panel&#039;);&quot; rel=&quot;nofollow&quot;&gt;{#advimage_dlg.tab_general}&lt;/a&gt;
		&lt;a href=&quot;mcTabs.displayTab(&#039;appearance_tab&#039;,&#039;appearance_panel&#039;);&quot; rel=&quot;nofollow&quot;&gt;{#advimage_dlg.tab_appearance}&lt;/a&gt;
	




	
		
			{#advimage_dlg.directory_browser}
			
				
					
						{#advimage_dlg.filename}
						{#advimage_dlg.filesize}
						&lt;!--{#advimage_dlg.filetype}--&gt;
						{#advimage_dlg.filemodified}
					
					
						&#160;&lt;a href=&quot;?dirpath=&quot;..&quot;&gt;..&lt;/a&gt;
						&#160;
						&lt;!--&#160;--&gt;
						&#160;
					

				&lt;tr class=&quot;darkRow&quot;&gt;
					&#160;&lt;a href=&quot;?dirpath=&quot;&gt;&lt;/a&gt;
					
					&lt;!----&gt;
					
				


				&lt;tr class=&quot;darkRow&quot;&gt;
					&#160;&lt;a href=&quot;Javascript:FileChosen(&#039;&#039;)&quot;&gt;&lt;/a&gt;
					
					&lt;!----&gt;
					
				

				
			&lt;!-- end explorer --&gt;
		
			
				{#advimage_dlg.upload}
				&lt;input type=&quot;hidden&quot; name=&quot;chosendir&quot; value=&quot;&quot;&gt;
				
			
					
		&lt;!-- end leftcolumn --&gt;
		
			{#advimage_dlg.preview}
			
										
		

	&lt;!-- end general panel --&gt;

	
		
			{#advimage_dlg.tab_appearance}

			
				 
					{#advimage_dlg.alt} 
					 
				 
				 
					{#advimage_dlg.title} 
					 
				
				 
					{#advimage_dlg.align} 
					 
							{#not_set} 
							{#advimage_dlg.align_baseline}
							{#advimage_dlg.align_top}
							{#advimage_dlg.align_middle}
							{#advimage_dlg.align_bottom}
							{#advimage_dlg.align_texttop}
							{#advimage_dlg.align_textbottom}
							{#advimage_dlg.align_left}
							{#advimage_dlg.align_right}
						 
					
					
						
							
							Lorem ipsum, Dolor sit amet, consectetuer adipiscing loreum ipsum edipiscing elit, sed diam
							nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Loreum ipsum
							edipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam
							erat volutpat.
						
					
				

				
					{#advimage_dlg.dimensions}
					
						 x 
						 px
					
				

				
					&#160;
					
							
								
								{#advimage_dlg.constrain_proportions}
							
						
				

				
					{#advimage_dlg.vspace} 
					
					
				

				 
					{#advimage_dlg.hspace} 
					 
				

				
					{#advimage_dlg.border} 
					 
				

				
					{#class_name}
					
				

				
					{#advimage_dlg.style} 
					 
				

				&lt;!-- 
					{#advimage_dlg.classes} 
					 
				 --&gt;
			
		
	&lt;!-- end appearance panel --&gt;
	
 &lt;!-- end panel_wrapper --&gt;


	
		
	
	
		
	


 
</description>
		<content:encoded><![CDATA[<p>Hi, Bonjour,</p>
<p>I am a physician and a i ambuilding an asp intranet for non commercial association. I have used aspimage for an integration to tinymce. I have made somme modification to your program for accessing to a local directory upload. But i find problerm with preview an insert the choosed pic to tinymce textarea.</p>
<p>Can you help a phusician with non profit aim ?!!</p>
<p>Here is my image.asp :</p>
<p><!-- #include file="freeaspupload.inc" --></p>
<p> 1 Then<br />
		For I = 1 to 2<br />
			Dim X<br />
			For X = Len(strFilename) To 1  Step -1<br />
				If Mid(strFilename, X, 1) = &#8220;\&#8221; Then Exit  For<br />
			Next<br />
			If Len(strFilename) &gt; 1 Then<br />
				strFilename = Left(strFilename, X &#8211; 1)<br />
			Else<br />
				strFilename = &#8220;\&#8221;<br />
				X = 2<br />
			End If<br />
		Next<br />
	   	ExtractDirName = Left(strFilename, X &#8211; 1)<br />
    End If<br />
End Function</p>
<p>Function ShowImageForType(strName)<br />
&#8216; For the &#8216;explorer&#8217;: shows file-icons<br />
	Dim strTemp<br />
	strTemp = strName<br />
	If strTemp  &#8220;dir&#8221; Then<br />
		strTemp = LCase(Right(strTemp, Len(strTemp) &#8211; InStrRev(strTemp, &#8220;.&#8221;, -1, 1)))<br />
	End If<br />
	Select Case strTemp<br />
		Case &#8220;asp&#8221;, &#8220;aspx&#8221;<br />
			strTemp = &#8220;asp&#8221;<br />
		Case &#8220;dir&#8221;<br />
			strTemp = &#8220;dir&#8221;<br />
		Case &#8220;htm&#8221;, &#8220;html&#8221;<br />
			strTemp = &#8220;htm&#8221;<br />
		Case &#8220;gif&#8221;, &#8220;jpg&#8221;<br />
			strTemp = &#8220;img&#8221;<br />
		Case &#8220;txt&#8221;<br />
			strTemp = &#8220;txt&#8221;<br />
		Case Else<br />
			strTemp = &#8220;misc&#8221;<br />
	End Select<br />
	strTemp = &#8220;&#8221;<br />
	ShowImageForType = strTemp<br />
End Function</p>
<p>function SaveFiles(PathToSaveTo)<br />
&#8216; Saves potentially uploaded files &#8211; any errors are in the returnvalue<br />
    Dim Upload, fileName, fileSize, ks, i, fileKey<br />
    Set Upload = New FreeASPUpload<br />
    Upload.Save(PathToSaveTo)<br />
    SaveFiles = &#8220;&#8221;<br />
    ks = Upload.Errors.keys<br />
	&#8216; if errors ar returned by the component<br />
    if (UBound(ks)  -1) then<br />
        SaveFiles = &#8220;&#8221;<br />
        for each fileKey in Upload.Errors.keys<br />
            SaveFiles = SaveFiles &amp; Upload.Errors(fileKey)&amp;&#8221; &#8221;<br />
        next<br />
    end if<br />
end function<br />
%&gt;</p>
<p> 1 Then<br />
&#8216;	if right(Request.QueryString(&#8220;dirpath&#8221;),1)=&#8221;\&#8221; then<br />
&#8216;		strPath = Request.QueryString(&#8220;dirpath&#8221;)<br />
&#8216;	else<br />
&#8216;		strPath = Request.QueryString(&#8220;dirpath&#8221;) &amp; &#8220;\&#8221;<br />
&#8216;	end if<br />
&#8216;end If</p>
<p>If Len(strPath) &gt; 1 Then<br />
	if right(strPath,1)=&#8221;\&#8221; then<br />
		strPath = strPath<br />
		else<br />
		strPath = strPath &amp; &#8220;\&#8221;<br />
	end if<br />
end If</p>
<p>&#8216; on submit &#8211; save files<br />
if Request.ServerVariables(&#8220;REQUEST_METHOD&#8221;) = &#8220;POST&#8221; then<br />
Dim uploadmessage<br />
	uploadmessage = SaveFiles(strPath)<br />
End If<br />
%&gt;</p>
<p>	{#advimage_dlg.dialog_title}</p>
<p>	&lt;!&#8211;<br />
	function FileChosen(FileName)<br />
	{<br />
	// fill the path &#8211; textbox and show a preview of the image<br />
	 document.forms[0].elements['src'].value=&#8221; + FileName;<br />
	 ImageDialog.showPreviewImage(&#8221; + FileName);<br />
	}<br />
	//&#8211;&gt;</p>
<p>&lt;form name=&#8221;filebrowser&#8221; method=&#8221;POST&#8221; enctype=&#8221;multipart/form-data&#8221; action=&#8221;image.asp?dirpath=&#8221; onsubmit=&#8221;"&gt;</p>
<p>		<a href="mcTabs.displayTab('general_tab','general_panel');" rel="nofollow">{#advimage_dlg.tab_general}</a><br />
		<a href="mcTabs.displayTab('appearance_tab','appearance_panel');" rel="nofollow">{#advimage_dlg.tab_appearance}</a></p>
<p>			{#advimage_dlg.directory_browser}</p>
<p>						{#advimage_dlg.filename}<br />
						{#advimage_dlg.filesize}<br />
						&lt;!&#8211;{#advimage_dlg.filetype}&#8211;&gt;<br />
						{#advimage_dlg.filemodified}</p>
<p>						&nbsp;&lt;a href=&#8221;?dirpath=&#8221;..&#8221;&gt;..<br />
						&nbsp;<br />
						&lt;!&#8211;&nbsp;&#8211;&gt;<br />
						&nbsp;</p>
<p>				&lt;tr class=&#8221;darkRow&#8221;&gt;<br />
					&nbsp;&lt;a href=&#8221;?dirpath=&#8221;&gt;</p>
<p>					&lt;!&#8212;-&gt;</p>
<p>				&lt;tr class=&#8221;darkRow&#8221;&gt;<br />
					&nbsp;&lt;a href=&#8221;Javascript:FileChosen(&#8221;)&#8221;&gt;</p>
<p>					&lt;!&#8212;-&gt;</p>
<p>			<!-- end explorer --></p>
<p>				{#advimage_dlg.upload}<br />
				&lt;input type=&#8221;hidden&#8221; name=&#8221;chosendir&#8221; value=&#8221;"&gt;</p>
<p>		<!-- end leftcolumn --></p>
<p>			{#advimage_dlg.preview}</p>
<p>	<!-- end general panel --></p>
<p>			{#advimage_dlg.tab_appearance}</p>
<p>					{#advimage_dlg.alt} </p>
<p>					{#advimage_dlg.title} </p>
<p>					{#advimage_dlg.align} </p>
<p>							{#not_set}<br />
							{#advimage_dlg.align_baseline}<br />
							{#advimage_dlg.align_top}<br />
							{#advimage_dlg.align_middle}<br />
							{#advimage_dlg.align_bottom}<br />
							{#advimage_dlg.align_texttop}<br />
							{#advimage_dlg.align_textbottom}<br />
							{#advimage_dlg.align_left}<br />
							{#advimage_dlg.align_right}</p>
<p>							Lorem ipsum, Dolor sit amet, consectetuer adipiscing loreum ipsum edipiscing elit, sed diam<br />
							nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Loreum ipsum<br />
							edipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam<br />
							erat volutpat.</p>
<p>					{#advimage_dlg.dimensions}</p>
<p>						 x<br />
						 px</p>
<p>					&nbsp;</p>
<p>								{#advimage_dlg.constrain_proportions}</p>
<p>					{#advimage_dlg.vspace} </p>
<p>					{#advimage_dlg.hspace} </p>
<p>					{#advimage_dlg.border} </p>
<p>					{#class_name}</p>
<p>					{#advimage_dlg.style} </p>
<p>				&lt;!&#8211;<br />
					{#advimage_dlg.classes} </p>
<p>				 &#8211;&gt;</p>
<p>	<!-- end appearance panel --></p>
<p> <!-- end panel_wrapper --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pliz22</title>
		<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/#comment-105</link>
		<dc:creator>pliz22</dc:creator>
		<pubDate>Fri, 08 May 2009 17:49:16 +0000</pubDate>
		<guid isPermaLink="false">http://precompiled.wordpress.com/?p=15#comment-105</guid>
		<description>Well I might as well give this a go.  I&#039;ve fixed my errors, etc.  I changed image.js to what fyrye has above, so now I get dialogs instead of {#advimage......} in IE.  So that&#039;s done.

I can&#039;t upload though.  This is structure:
c:\extranet\_images\stories\
c:\extranet\_tiny_mce\plugins\aspimage\

URL is
http://localhost/extranet/
http://localhost/extranet/_images/stories/

In IIS, the directory security is set to Anonymous Access, IUSR.
And the security for the folder has Internet Guest Account, Full Control.

Image.asp has this folder: /extranet/_images/stories/
So it shows the folder, I can browse, and click upload.
But the file is never sent to c:\extranet\_images\stories\

Thanks for any ideas and help and your time!</description>
		<content:encoded><![CDATA[<p>Well I might as well give this a go.  I&#8217;ve fixed my errors, etc.  I changed image.js to what fyrye has above, so now I get dialogs instead of {#advimage&#8230;&#8230;} in IE.  So that&#8217;s done.</p>
<p>I can&#8217;t upload though.  This is structure:<br />
c:\extranet\_images\stories\<br />
c:\extranet\_tiny_mce\plugins\aspimage\</p>
<p>URL is<br />
<a href="http://localhost/extranet/" rel="nofollow">http://localhost/extranet/</a><br />
<a href="http://localhost/extranet/_images/stories/" rel="nofollow">http://localhost/extranet/_images/stories/</a></p>
<p>In IIS, the directory security is set to Anonymous Access, IUSR.<br />
And the security for the folder has Internet Guest Account, Full Control.</p>
<p>Image.asp has this folder: /extranet/_images/stories/<br />
So it shows the folder, I can browse, and click upload.<br />
But the file is never sent to c:\extranet\_images\stories\</p>
<p>Thanks for any ideas and help and your time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PrinceValiant</title>
		<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/#comment-103</link>
		<dc:creator>PrinceValiant</dc:creator>
		<pubDate>Mon, 27 Apr 2009 01:18:53 +0000</pubDate>
		<guid isPermaLink="false">http://precompiled.wordpress.com/?p=15#comment-103</guid>
		<description>Hi precompiled. Your plugin is great. I used to use it but get the same errors as posted. And after finding that .dom. part makes it clear, i get strange error which said again &quot;Object needed&quot; and even after i did everything &quot;fyrye&quot; said. So i decided disable debugging of scripts in browser Tools-&gt;Internet options-&gt;Advanced Tab and everything is ok for now. :D But may be u have some time to watch this bug. May be this is because of w3c non-compliant coding? By the way i&#039;m using stupid explorer version of IExplorer 7.0.5730.11 :D . Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi precompiled. Your plugin is great. I used to use it but get the same errors as posted. And after finding that .dom. part makes it clear, i get strange error which said again &#8220;Object needed&#8221; and even after i did everything &#8220;fyrye&#8221; said. So i decided disable debugging of scripts in browser Tools-&gt;Internet options-&gt;Advanced Tab and everything is ok for now. :D But may be u have some time to watch this bug. May be this is because of w3c non-compliant coding? By the way i&#8217;m using stupid explorer version of IExplorer 7.0.5730.11 :D . Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pliz22</title>
		<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/#comment-102</link>
		<dc:creator>pliz22</dc:creator>
		<pubDate>Wed, 22 Apr 2009 17:48:51 +0000</pubDate>
		<guid isPermaLink="false">http://precompiled.wordpress.com/?p=15#comment-102</guid>
		<description>never mind.  i&#039;m an idiot.  i just had to remove advimage in the plugins list.  as mentionned elsewhere on this website, to replace advimage by aspimage.
sorry.
sorry.
sorry.</description>
		<content:encoded><![CDATA[<p>never mind.  i&#8217;m an idiot.  i just had to remove advimage in the plugins list.  as mentionned elsewhere on this website, to replace advimage by aspimage.<br />
sorry.<br />
sorry.<br />
sorry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pliz22</title>
		<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/#comment-101</link>
		<dc:creator>pliz22</dc:creator>
		<pubDate>Wed, 22 Apr 2009 17:40:16 +0000</pubDate>
		<guid isPermaLink="false">http://precompiled.wordpress.com/?p=15#comment-101</guid>
		<description>Hello, I&#039;d like to try this out, really, really badly.  But I can&#039;t.  The toolbar button for aspimage never shows up.  Ever.  I can&#039;t get it to appear.

Folder structure C:/extranetv1/_tiny_mce/plugins/aspimage/

This is my tinyMCE.init

tinyMCE.init({
			mode : &quot;textareas&quot;,
			theme : &quot;advanced&quot;,
			plugins : &quot;aspimage,safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager&quot;,

			plugin_preview_width : &quot;500&quot;,
			plugin_preview_height : &quot;600&quot;,
			plugin_preview_pageurl : &quot;../../plugins/preview/example.html&quot;,

			// Theme options
			theme_advanced_buttons1 : &quot;bold,italic,underline,strikethrough,&#124;,justifyleft,justifycenter,justifyright,justifyfull,&#124;,formatselect,fontselect,fontsizeselect,&#124;,forecolor,backcolor&quot;,
			theme_advanced_buttons1_add : &quot;image&quot;,
			theme_advanced_buttons2 : &quot;cut,copy,paste,pastetext,pasteword,&#124;,search,replace,&#124;,bullist,numlist,&#124;,outdent,indent,blockquote,&#124;,undo,redo,&#124;,link,unlink,anchor,cleanup,code,&#124;,insertdate,inserttime,preview&quot;,
			theme_advanced_buttons3 : &quot;tablecontrols,&#124;,removeformat,&#124;,sub,sup,&#124;,charmap,iespell,advhr,&#124;,print,&#124;,ltr,rtl,&#124;,fullscreen,&#124;,cite,abbr,acronym&quot;,
			theme_advanced_toolbar_location : &quot;top&quot;,
			theme_advanced_toolbar_align : &quot;left&quot;,
			theme_advanced_statusbar_location : &quot;bottom&quot;,
			theme_advanced_resizing : true
		});

The image button for tinymce image appears.  Nothing resembling the screenshot above.  Using tinymce 3.2.  Tried all the fixes above with lang and getclasses.  Using FF 3 and IE 6.

Don&#039;t know if someone wants to help but it&#039;d be appreciated.  Thanks!</description>
		<content:encoded><![CDATA[<p>Hello, I&#8217;d like to try this out, really, really badly.  But I can&#8217;t.  The toolbar button for aspimage never shows up.  Ever.  I can&#8217;t get it to appear.</p>
<p>Folder structure C:/extranetv1/_tiny_mce/plugins/aspimage/</p>
<p>This is my tinyMCE.init</p>
<p>tinyMCE.init({<br />
			mode : &#8220;textareas&#8221;,<br />
			theme : &#8220;advanced&#8221;,<br />
			plugins : &#8220;aspimage,safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager&#8221;,</p>
<p>			plugin_preview_width : &#8220;500&#8243;,<br />
			plugin_preview_height : &#8220;600&#8243;,<br />
			plugin_preview_pageurl : &#8220;../../plugins/preview/example.html&#8221;,</p>
<p>			// Theme options<br />
			theme_advanced_buttons1 : &#8220;bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,fontselect,fontsizeselect,|,forecolor,backcolor&#8221;,<br />
			theme_advanced_buttons1_add : &#8220;image&#8221;,<br />
			theme_advanced_buttons2 : &#8220;cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,cleanup,code,|,insertdate,inserttime,preview&#8221;,<br />
			theme_advanced_buttons3 : &#8220;tablecontrols,|,removeformat,|,sub,sup,|,charmap,iespell,advhr,|,print,|,ltr,rtl,|,fullscreen,|,cite,abbr,acronym&#8221;,<br />
			theme_advanced_toolbar_location : &#8220;top&#8221;,<br />
			theme_advanced_toolbar_align : &#8220;left&#8221;,<br />
			theme_advanced_statusbar_location : &#8220;bottom&#8221;,<br />
			theme_advanced_resizing : true<br />
		});</p>
<p>The image button for tinymce image appears.  Nothing resembling the screenshot above.  Using tinymce 3.2.  Tried all the fixes above with lang and getclasses.  Using FF 3 and IE 6.</p>
<p>Don&#8217;t know if someone wants to help but it&#8217;d be appreciated.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JameNewton</title>
		<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/#comment-100</link>
		<dc:creator>JameNewton</dc:creator>
		<pubDate>Wed, 22 Apr 2009 11:25:16 +0000</pubDate>
		<guid isPermaLink="false">http://precompiled.wordpress.com/?p=15#comment-100</guid>
		<description>Everything works fine; upload, file nav, preview… but when I click on “INSERT” nothing happens and Firefox is not firing off an error. 

IE does show an error in “image.asp” at line 181 as “Object doesn’t support this property or method” but this error is BEFORE I click INSERT. After clicking INSERT, the same error is shown at line 97.

I used the latest tinymce

Why can you upload both that tinymce and aspimage file

If possible , send to me</description>
		<content:encoded><![CDATA[<p>Everything works fine; upload, file nav, preview… but when I click on “INSERT” nothing happens and Firefox is not firing off an error. </p>
<p>IE does show an error in “image.asp” at line 181 as “Object doesn’t support this property or method” but this error is BEFORE I click INSERT. After clicking INSERT, the same error is shown at line 97.</p>
<p>I used the latest tinymce</p>
<p>Why can you upload both that tinymce and aspimage file</p>
<p>If possible , send to me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: precompiled</title>
		<link>http://precompiled.wordpress.com/2008/02/02/the-all-new-aspimage-plugin-for-tinymce/#comment-98</link>
		<dc:creator>precompiled</dc:creator>
		<pubDate>Sun, 29 Mar 2009 10:05:31 +0000</pubDate>
		<guid isPermaLink="false">http://precompiled.wordpress.com/?p=15#comment-98</guid>
		<description>@JuanVeron: this works in any IIS installation that can run classic ASP. So if you run ASP.NET on IIS6 or IIS7, just be sure classic asp is also enabled, you should be able to run the plugin just fine.</description>
		<content:encoded><![CDATA[<p>@JuanVeron: this works in any IIS installation that can run classic ASP. So if you run ASP.NET on IIS6 or IIS7, just be sure classic asp is also enabled, you should be able to run the plugin just fine.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
