prosoxi.com | Archive | November

Archive | November, 2008

nano basic commands

1. Nano Basics

Purpose

This guide was written to cover basic operations in nano, and is meant to be very concise. For more information about nano check out: Continue Reading

Posted in Linux0 Comments

Extract images from PDF

How To extract an Individual Graphic
  1. Open the PDF document you want to extract a graphic.
  2. On the Basic toolbar click the down arrow beside the Select Text button.
  3. Choose the Select Image.
    • Your cursor should be resemble cross hairs.
  4. Click once on the graphic to select it.
  5. Right click on the graphic.
  6. Choose Save Image As.
    • A Save As dialog box appears.
  7. Choose the appropriate location to save the image file in.
  8. If needed, change the name of the file.
  9. In the Save as Type box, select JPEG Image File.
    • This file type will allow you to use it in most applications.
  10. Click Save.
  11. Repeat as needed for each graphic.
How To extract all the Graphics
Acrobat 6 contains a new feature to extract all images from a PDF file. Each image will be it’s own image file.

  1. Open the PDF document you want to extract graphics.
  2. From the Advanced menu choose Export all Images.
  3. In the Export All Images As dialog box, choose the location and correct file type for the images.
  4. You can also give a general name to the images that will be downloaded.
    • Each will be named the same but will include the page number and image number.

Posted in Graphics, Tutorials0 Comments

Trixbox change Apache port

 

The idea is to use the apache server on trixbox to host a home page on port 80 other than trixbox’s default home page, but being able to access the latter via an alternate port. I have a static ip address, and without purchasing an additional domain name I wanted to set something like this up for testing purposes. So using Webmin, you must go to servers –> apache webservers
–>click on ‘edit config files’ which allows you to easily edit /etc/httpd/conf/httpd.conf as follows Continue Reading

Posted in Trixbox0 Comments

Feature Codes for Trixbox

Handset Feature Code Action
*30 Blacklist a number
*31 Remove a number from the blacklist
*32 Blacklist the last caller
*52 Call Forward No Answer/Unavailable Activate
*53 Call Forward No Answer/Unavailable Deactivate
*72 Call Forward All Activate
*73 Call Forward All Deactivate
*74 Call Forward All Prompting Deactivate
*90 Call Forward Busy Activate
*91 Call Forward Busy Deactivate
*92 Call Forward Busy Prompting Deactivate
*70 Call Waiting – Activate
*71 Call Waiting – Deactivate
*28 Day/Night Control Toggle
*78 DND Activate
*79 DND Deactivate
*97 My Voicemail
*98 Dial Voicemail

Posted in Trixbox0 Comments

Making scrolling text with the use of the marquee tag on DIV

Scrolling upward text or vertical text.

<div
align=”center”> <marquee bgcolor=”#000080″ scrollamount=”2″
direction=”up” loop=”true” width=”35%”> <center>
<font color=”#ffffff” size=”+1″><strong> THIS
IS A COOL WAY<br> TO MAKE YOUR TEXT<br> SCROLL UPWARDS<br> <br>
IT IS EASY AND FAST LOADING </strong></font> </center> </marquee></div>

Posted in HTML - XHTML0 Comments

CSS Alternate Colors Table Loop

CSS

.rol_1{
background-color:#FFFFFF}
.rol_2{
background-color:#CCCCCC}
.rol_Hover{
background-color:#FFFF99}

PHP Script On <TR>

<?php do { ?>
<tr class=”<?php echo ($ac_sw1++%2==0)?”rol_1″:”rol_2″; ?>” onmouseover=”this.oldClassName = this.className; this.className=’rol_Hover’;” onmouseout=”this.className = this.oldClassName;”>

<td>loop</td>
</tr>
<?php } while ($row_travel_schedule = mysql_fetch_assoc($schedule)); ?>

Posted in CSS, PHP0 Comments

CSS default Link Styles

<style type=”text/css”>
<!–
body,td,th {
color: #FFFFFF;
}
a {
font-size: 10px;
color: #FFFFFF;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #FFFFFF;
}
a:hover {
text-decoration: none;
color: #CCCCCC;
}
a:active {
text-decoration: none;
color: #FFFFFF;
}
–>
</style>

Posted in CSS1 Comment

Tiny MCE HTML editor Set Height / Width

<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”,

height : “380″,
width : “380″,

theme : “advanced”,
valid_elements : “a[href|target=_blank],b/strong,div[align],br,ol,li,ul,p,blockquote”,
entity_encoding : “utf-8″

});

</script>

Posted in HTML - XHTML, JavaScript - Ajax0 Comments

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>

Posted in HTML - XHTML, JavaScript - Ajax0 Comments

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

Posted in CSS, HTML - XHTML0 Comments

Domain Name Finder, Lookup, Whois

Domain Finder Tool by Truste.gr

read more for domains

Advertise

Sponsors

Wedstar all about wedding - gamos - γαμος
Κατασκευή ιστοσελίδων
Domain Names | Hosting