Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 05-06-2005, 02:24 PM   #1 (permalink)
Psycho
 
FaderMonkey's Avatar
 
Location: Orlando, FL
how to make those "insert" buttons

I need some help being pointed in the right direction. You know those buttons on this site that you click to "insert image" or "insert hyperlick" when you are posting? I'm trying to learn how to make those.

For example:

I have a section on my site where people can post. I'd like to make it possible where if someone posting wanted something to be italic they would click a button, a small window would pop up where they would enter what they want italicized, and that would insert the proper italic html tags around their text.

I know this may be pretty complicated, but I just have no idea where to start.
FaderMonkey is offline  
Old 05-07-2005, 12:38 PM   #2 (permalink)
Upright
 
Quote:
Originally Posted by FaderMonkey
I need some help being pointed in the right direction. You know those buttons on this site that you click to "insert image" or "insert hyperlick" when you are posting? I'm trying to learn how to make those.

For example:

I have a section on my site where people can post. I'd like to make it possible where if someone posting wanted something to be italic they would click a button, a small window would pop up where they would enter what they want italicized, and that would insert the proper italic html tags around their text.

I know this may be pretty complicated, but I just have no idea where to start.
HTML stuff:

<form name="myForm">
<textarea name="myTextArea"></textarea>
</form>

<input type="button" name="italicizeButton" onClick="italicize(document.myForm.myTextArea)">

Javascript stuff:

<script language=javascript>
<!--

//pass in the textbox you want to add italicized text to
function italicize(textbox) {
var answer=prompt("Enter text to italicize")
textbox.text += "<i>" + answer + "</i>"
}

-->
</script>
cmdrfunk is offline  
 

Tags
buttons, insert, make


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 09:35 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47