getLightTW             package:tkWidgets             R Documentation

_F_u_n_c_t_i_o_n _t_o _c_r_e_a_t_e _a _l_i_g_h_t _w_e_i_g_h_t _w_i_d_g_e_t _s_h_o_w_i_n_g _a _t_e_x_t _s_t_r_i_n_g

_D_e_s_c_r_i_p_t_i_o_n:

     Given a text string and coordinations, this function creates a
     light weight tcltk widget with showing the text string passed.

_U_s_a_g_e:

     getLightTW(x, y, text)

_A_r_g_u_m_e_n_t_s:

       x: 'x' an interger for the horizontal position for the widget to
          appear

       y: 'y' an integer for the vertical position for the widget to
          appear

    text: 'text' a character string to be show in the widget

_D_e_t_a_i_l_s:

     When the function is invoked, a box containing the text will
     appear at the position specified by x, and y. Click the widget
     makes it disappear.

_V_a_l_u_e:

     This function does not return any value

_N_o_t_e:

     This function is part of the Bioconductor project at Dana-Farber
     Cancer Institute to provide Bioinformatics functionalities through
     R

_A_u_t_h_o_r(_s):

     Jianhua Zhang

_E_x_a_m_p_l_e_s:

     if(interactive()){
         getLightTW(200, 200, "Click Me!")
     }

