Setup TinyMCE

<script language="javascript" type="text/javascript" src="Scripts/editors/tiny_mce/tiny_mce.js"></script>	

	<script language="javascript" type="text/javascript">
	// Notice: The simple theme does not use all options some of them are limited to the advanced theme
	//tinyMCE.init({
	//	mode : "textareas",
		//theme : "advanced",
		//valid_elements : "a[href|target=_blank],b/strong,div[align],br,ol,li,ul,p,blockquote",
		//entity_encoding : "utf-8"

	//});

	tinyMCE.init({
		mode : "textareas",
		theme : "advanced",
		entity_encoding : "utf-8",
		content_css : "http://www.domain.gr/css/style.css",
			entities : "160,nbsp,38,amp,34,quot,162,cent,8364,euro,163,pound,165,yen,169,copy,174,reg,8482,trade,8240,permil,60,lt,62,gt,8804,le,8805,ge,176,deg,8722,minus",
		plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,paste,directionality,fullscreen,noneditable,contextmenu",
		theme_advanced_buttons1_add_before : "save,newdocument,separator",
		theme_advanced_buttons1_add : "fontselect,fontsizeselect",
		theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor,liststyle",
		theme_advanced_buttons2_add_before: "cut,copy,paste,pastetext,pasteword,separator,search,replace,separator",
		theme_advanced_buttons3_add_before : "tablecontrols,separator",
		theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print,separator,ltr,rtl,separator,fullscreen",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_statusbar_location : "bottom",
		plugin_insertdate_dateFormat : "%Y-%m-%d",
		plugin_insertdate_timeFormat : "%H:%M:%S",
		extended_valid_elements : "hr[class|width|size|noshade]",
		file_browser_callback : "fileBrowserCallBack",
		paste_use_dialog : false,
		theme_advanced_resizing : true,
		theme_advanced_resize_horizontal : false,
		theme_advanced_link_targets : "_something=My somthing;_something2=My somthing2;_something3=My somthing3;",
		apply_source_formatting : true
	});

	function fileBrowserCallBack(field_name, url, type, win) {
		var connector = "../../filemanager/browser.html?Connector=connectors/php/connector.php";
		var enableAutoTypeSelection = true;

		var cType;
		tinymcpuk_field = field_name;
		tinymcpuk = win;

		switch (type) {
			case "image":
				cType = "Image";
				break;
			case "flash":
				cType = "Flash";
				break;
			case "file":
				cType = "File";
				break;
		}

		if (enableAutoTypeSelection && cType) {
			connector += "&Type=" + cType;
		}

		window.open(connector, "tinymcpuk", "modal,width=600,height=400");
	}
</script>

25 Rounded Corners Techniques with CSS

http://www.cssjuice.com/25-rounded-corners-techniques-with-css/

 
Rounded corners is one of the most popular and frequently requested CSS techniques even the father of internet Google also launch the rounded corners style markup with her Google Adsenseand let users to custom their ads recently. Actually, there are a lot of methods and techniques to create rounded corners with Cascading Stylesheets. Some are quite simple just need pure CSS, and a part of them need 2 to 4 background corner images and Javascript. So i select some quality and usable rounded corners with CSS techniques for you to have the best choices.

Techniques Continue reading “25 Rounded Corners Techniques with CSS”

Greek problem Crafty Syntax Live Help (version 2.15.0)

Crafty Syntax Live Help
Version (version 2.15.0)

Download and replace this file

This is strange to me.. it seems that some browsers are auto encoding the characters?

download the following file:

http://www.craftysyntax.com/security_functions.txt

rename it to .php “rather then “.txt” and upload it.

security_functions

FCK editor Greek Character

Open The fckconfig.js

code:
FCKConfig.AutoDetectLanguage   = true ; 
FCKConfig.DefaultLanguage = ‘el’ ; 
FCKConfig.ContentLangDirection   = ‘ltr’ ; 
FCKConfig.EnableXHTML = true ; 
FCKConfig.EnableSourceXHTML   = true ; 
FCKConfig.ProcessHTMLEntities   = true ; 
FCKConfig.IncludeLatinEntities   = true ; 
FCKConfig.IncludeGreekEntities   = false ; 
FCKConfig.FillEmptyBlocks   = true ; 
FCKConfig.FormatSource = true ; 
FCKConfig.FormatOutput = true ; 
FCKConfig.FormatIndentator = ‘    ‘ ;


code:
FCKConfig.FullPage = false ;

Create Effective Auto Attendants and Voicemail Greetings

There are many kinds of people who call your company. Some have never called you before; others may call your system frequently and just want to reach their party quickly without having to listen to the entire menu. Keep this in mind as you review the following sample scripts and create your own Auto Attendants and Voicemail Greetings. Continue reading “Create Effective Auto Attendants and Voicemail Greetings”