Sponsored Content
Top Forums Programming Issue Related to Splash Screen in Java Post 302307320 by smartgupta on Wednesday 15th of April 2009 05:37:03 AM
Old 04-15-2009
after adding it,I am still not getting the image.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

file related issue

Hi all, Anybody knows how to write a script to open a file and store the weekday(mon-sun) on first line and current datetime on the second line of the file. If file doesn't exist, create a new one and store the weekday and current datetime. If it already exists, open it and get both... (2 Replies)
Discussion started by: k_oops9
2 Replies

2. Programming

help me with the error of Java related to UNIX

Can you help me with my code? I wrote a Java program and ran it in gdb, the debugger said that : (gdb) run handhelditems 1 1000 Starting program: /home/wqq/crawl/handhelditems/crawl_what_i_want handhelditems 1 1000 Program received signal SIGPWR, Power fail/restart. (2 Replies)
Discussion started by: cf.george
2 Replies

3. Shell Programming and Scripting

Simple Shell Script Question.... [java related]

Hey guys! This is my first post, as im new here :S I have a simple problem for a big program. We have a .sh to install it, but when I run the .sh in terminal like i should, It says the class is not found. I believe it has to do with the syntax, as the person who made it is not a linux pro. I... (3 Replies)
Discussion started by: Drags111
3 Replies

4. Programming

Issue Related to Splash Screen

Hi Guys, I am working with Solaris 9 and we are developing the application which will work on different OS.So we develop the GUI using JAVA swings... we want to display a Splash screen before starting the installation of the application... 1st we develop our application for windows and it is... (1 Reply)
Discussion started by: smartgupta
1 Replies

5. Shell Programming and Scripting

Date related issue

Hi, I have TDATE=$(date '+%b %d') That stores "Sep 01" in the TDATE. How I can store "Sep 1"? Thanks in advance (3 Replies)
Discussion started by: dipeshvshah
3 Replies

6. Red Hat

grub splash screen not displayed

I re-installed grub on /dev/sdb on a 3ware raid machine and now the grub splash screen is not displayed when booting. Server when boots up comes and halt in the grub menu and I need to manually load kernel and initrd to get the machine up. I have not changed any grub setting. I used the command... (0 Replies)
Discussion started by: anil510
0 Replies

7. Emergency UNIX and Linux Support

XUbuntu Live CD customizing using uck-gui. - Splash screen not changing

Hi all, I am customizing the Xubuntu 12.04 live cd.. Using uck-gui , i extracted the iso file and mounted in a location. Can anyone please help me out how to proceed with removing the splash screen ( the screen that gives loading image with xubuntu logo) or to change the logo that is in the... (1 Reply)
Discussion started by: selvarajvs
1 Replies

8. UNIX for Advanced & Expert Users

XUbuntu Live CD customizing using uck-gui. - Splash screen not changing

Hi all, I am customizing the Xubuntu 12.04 live cd.. Using uck-gui , i extracted the iso file and mounted in a location. Can anyone please help me out how to proceed with removing the splash screen ( the screen that gives loading image with xubuntu logo) or to change the logo that is in... (1 Reply)
Discussion started by: selvarajvs
1 Replies

9. Shell Programming and Scripting

Need help in an issue related to mailx

Hello, I have a file temp.txt with the below contents : Sep 9 03:04:51 adcsdp01 MAPDR2_00: Unable to open trace file adpstartarv.log. (Error 110 Resource temporarily unavailable) Sep 9 03:05:35 adcsdp01 MAPDR2_00: SAP Service ADPMR2_00 successfully started. Sep 9 03:04:51 adcsdp01... (7 Replies)
Discussion started by: rahul2662
7 Replies

10. UNIX for Beginners Questions & Answers

IBM eServer X 335 stops boot process at Server splash screen

Hi there. I used to use linux a lot a number of years ago but it has been quite a while so ?I really consider myself a beginner again. I have an old IBM eServer X Series 335 machine and I want to get it back up and running for a number of reasons. I knew that one of the SCSI drives was bad and... (2 Replies)
Discussion started by: filch2
2 Replies
tile(n) 						       BLT Built-In Commands							   tile(n)

__________________________________________________________________________________________________________________________________________________

NAME
tile - Tiling versions of Tk widgets SYNOPSIS
tile::button pathName option value... tile::checkbutton pathName option value... tile::frame pathName option value... tile::label pathName option value... tile::radiobutton pathName option value... tile::scrollbar pathName option value... tile::toplevel pathName option value... _________________________________________________________________ DESCRIPTION
The tile widgets let you create textured backgrounds. The texture is a Tk image which is tiled over the entire background of the widget. INTRODUCTION
With the advent of Tk 4.0, images are now easy to create and use in applications. Images add interest to applications and they convey more information. But one area where Tk hasn't taken advantage of images is using images as textures for widgets. Since tiling is a standard feature of windowing systems, it's very easy to use images as textures. The tile widgets take the standard Tk 4.0 widgets and add tiling configuration options to them. Textures are specified by the name of the image you wish to be tiled across the background of the widget. EXAMPLE
To add tiling to a widget, you simply create an image using Tk's image command and use the image name as the value for the -tile configura- tion option of the widget. image create photo my_texture -file tan_paper.gif blt::tile::frame .f -tile my_texture The image my_texture is added to the frame. If my_texture is updated, so will the widget background. image create photo my_texture -file rain.gif The tile widget commands reside in the "blt::tile" namespace, so as not to collide with the normal Tk widgets. An easy way to add tiling to existing programs is to import the tile widget commands into the global namespace. image create photo my_texture -file tan_paper.gif namespace import -force blt::tile::* frame .f -tile my_texture To use one image for all texturing, you can use the "Tile" option class name to specify the same image for all tile widgets. image create photo my_texture -file tan_paper.gif option add *Tile my_texture OPTIONS
The following configurations options are added to the widgets. If a -tile or -activetile option is specified, it overrides the background color of the widget. -activetile image Specifies a textured background to display when the widget is active. This option is available for the tilebutton, tilecheckbutton, tileradiobutton, and tilescrollbar widgets. Image is the name an image created using Tk's image command. The background of the widget is tiled with image. If image is "", then the active background color is displayed. The default is "". -tile image Specifies a textured background to display for the widget. Image is the name an image created using Tk's image command. The back- ground of the widget is tiled with image. If image is "", then the normal background color is displayed. The default is "". KEYWORDS
tile, texture, button, label, radiobutton, checkbutton, scrollbar, frame, toplevel BLT
2.4 tile(n)
All times are GMT -4. The time now is 04:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy