Simple question: Tcl button color


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Simple question: Tcl button color
# 1  
Old 06-03-2009
Simple question: Tcl button color

Hey,

Can anyone tell me what is the default tcl button color is?

I've already tried gray60/70/80/85/90/95.

None are the same.

Thanks,

Phil.

-----Post Update-----

You can disregard this question, found the color in #E0DFE3

Last edited by Phi01; 06-03-2009 at 11:14 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Solaris

This must be the dumbest question ever posted -T5140 power button

I have a T5140 and cannot find the power switch -is there an on/off button? Good grief ! Thank you in advance. joe (3 Replies)
Discussion started by: joboy
3 Replies

2. Red Hat

Syslog.conf: looking for a simple answer on a simple question

Cheers! In /etc/syslog.conf, if an error type is not specified, is it logged anywhere (most preferable is it logged to /var/log/messages) or not? To be more precise I am interested in error and critical level messages. At default these errors are not specified in syslog.conf, and I need to... (6 Replies)
Discussion started by: dr1zzt3r
6 Replies

3. Programming

Javascript question: using the image button

I have javascript that I want to use to build up a dynamic array: the user clicks on one or more images and when clicking the Show button, the list of image names is displayed that the user clicked. <script type="text/javascript"> var images = ; images =... (0 Replies)
Discussion started by: figaro
0 Replies

4. Shell Programming and Scripting

Python- Changing background color on Button click

Hi, I am trying to write a python program which changes background color on click of button. However i am stuck up. Instead of changing the color currently it is creating a new frame every time. please look at the code and let me know how to correct it #!/usr/bin/env python from Tkinter... (0 Replies)
Discussion started by: vickylife
0 Replies

5. Programming

Tcl question

Hello guys, please help me I want to use TCl to move the lines with line number as odd number to a new file source_odd.txt, and move the lines with character 'a' to another file source_a.txt. I also want to create a tcl function to list all the file names in a appointed directory. (1 Reply)
Discussion started by: kunleoyafajo
1 Replies

6. UNIX for Dummies Questions & Answers

Script for using the Back button and the Close button

Here's a question I have for anyone that might be able to help me: I can write a html script that will allow the user to return to the previous page using the back button, and I can write a script that will allow the user to return to the previous page using the close button, but...is there a... (1 Reply)
Discussion started by: mdgibson
1 Replies

7. Shell Programming and Scripting

few TCL question

Hello I am a TCL beginer, so please answer accordingly here are my question: 1. variable scope I built a text widget and gave it a textvariable: cmd_entry, I I sent it to a procedure where I declare it as “global cmd_entry” and give it a value The problem is that in the main program... (0 Replies)
Discussion started by: orid
0 Replies
Login or Register to Ask a Question
MsgBox(3)						User Contributed Perl Documentation						 MsgBox(3)

NAME
Tk::MsgBox - create and manipulate a message dialog SYNOPSIS
use Tk::MsgBox ... $d = $top->MsgBox(-title => "Title", -type => "okcancel"); ... $button = $d->Show; DESCRIPTION
MsgBox is a simple dialog with predefined buttons. OPTIONS
The options recognized by MsgBox are as follows: -icon Specify the icon of the MsgBox. Valid values are error, info, question, or warning. -type Specify the type of the MsgBox. Valid values are abortretryignore, ok, okcancel, retrycancel, yesno, or yesnocancel. The type determines the buttons to be shown. -default Specify the default button. This must be one of abort, retry, ignore, ok, cancel, yes, or no, depending on the type of the MsgBox previously specified. -detail Specify text for the detail region of the MsgBox. -message Specify the message text of the MsgBox. -title Specify the title of the MsgBox. METHODS
MsgBox supports only one method as of now: Show() Displays the MsgBox until the user invokes one of the buttons. Returns the name of the button invoked. AUTHOR
Translated from Tcl/Tk by Slaven Rezic srezic@cpan.org This code is distributed under the same terms as Perl. SEE ALSO
Tk::messageBox, Tk::DialogBox, Tk::Dialog. perl v5.12.1 2007-05-05 MsgBox(3)