Programming :: CSS Formatted Textarea Fails W/ Transparent Background?

Mar 19, 2011

I have a textarea in an html form, formatted with css. It works fine but when I use a transparent background the viewer can only activate the cursor by clicking the left or upper edge of the textarea (I should specify this only occurs in IE; it works fine in Firefox).

View 2 Replies


ADVERTISEMENT

Programming :: Insert Text Message In Textarea Using Php?

Dec 13, 2010

i trying to add text messge in textarea and i got error in connection and i don't know if it correct syntax. and i wonder when i was install xamp server it no password required. but i dont know what password that i input in my php connection.?

PHP Code:

<?php
$con = mysql_connection("localhost","root","123");
if(!$con)
{

[code]....

PHP Code:

<textarea rows="3" cols="30" name="txtcomment" wrap="physical">Leave a Comment

View 4 Replies View Related

Software :: Konsole 2.3.1: Transparent Background?

Mar 7, 2011

I have always used Konsole, I love it. In this new Konsole, I am unable to find any option for setting the transparent background! Its vanished?! It used to be there in older Konsoles

View 2 Replies View Related

Debian :: Set Terminal's Background Completely Transparent

Apr 14, 2011

i want to know a couple of things

1) how can i set my terminal's background completely transparent like opensuse and not just show desktop wallpaper.

2) how can i set its default height and width from 80x24 to 80x38.

debain 6.0 gnome.

View 7 Replies View Related

Ubuntu :: Nautilus Transparent Background Patch?

Mar 4, 2011

Nautilus transparent background patch by pr3ddi � Wed Mar 02, 2011 11:10 pm here you go. a nautilus transparent background patch for everone who is not afraid to compile nautilus from source

new version available here --- http://ubuntuforums.org/showthread.php?t=1814132

what you will get: - a transparent nautilus desktop window in compiz, which has the usual desktop integration (icons and context menu) - a working wallpaper plugin, that can be set to show a different wallpaper on every screen - you can even use mplayer to play a video on your background

how it's done: - the nautilus desktop window is modified to render a transpart background, if a composited screen is detected - window type is changed from _NET_WM_WINDOW_TYPE_DESKTOP to _NET_WM_WINDOW_TYPE_NOTIFICATION - window is set to be keept below all other windows and the mouse wheel event is proxied to the root window the patch was developed for nautilus 2.28.1 (Ubuntu 9.10) first and then applied to nautilus 2.30.1 (Ubuntu 10.04) the only difference in 2.28.1 is that there is one more row (below set_image_properties) in the original eel-background.c

View 8 Replies View Related

General :: Transparent Background In Editor But Solid Text?

Jan 26, 2011

Is there a way to make the background to an editor e.g. gedit transparent without affecting text's transparency? Is there any other program that supports this?

View 1 Replies View Related

Ubuntu :: Panel Icon Boxed (background Not Transparent)?

Dec 11, 2010

The CheckGmail icon's background is not transparent...is this an application issue or there is something I could do to fix it?

View 2 Replies View Related

Ubuntu :: Make Background Image In Terminal Non-transparent

Jun 6, 2011

Does anyone know how to set the background of a terminal to be an image, and not have it slightly transparent? I've set an image as my Terminal background, but now when I open a terminal over other applications I can see those applications through my Terminal background. Is there any way to stop this from happening?

View 9 Replies View Related

Ubuntu :: Transparent Gnome Tray Icons Have White Background?

Mar 12, 2010

This is how my Firestarter and Pidgin icons appear in the tray against a panel using an image background, even though the icons are transparent. What can be done to fix this? According to this five year old thread, GTK libraries didn't support transparency in the tray area back then, but surely this must've been fixed by now? There are even some links to bugfixes in that very thread, but I'm hesitant to apply something that old. What to do?

View 9 Replies View Related

Ubuntu Multimedia :: Kdenlive: Title Clips With Transparent Background?

Aug 23, 2010

Another hair-pulling WTF moment... All I wanted to do is add a title to the start of a screencast, nice words overlaying the screen vid. In kdenlive:

1. Project menu > Add title clip
2. Format text etc.
3. Set the title clip's background opacity to 0 = (should be?) fully transparent.
4. Put the clip on the timeline, on a higher track than the screen vid.
5. kdenlive obliterates the screen and displays the text with a black background.

There has got to be an easy way to do this. kdenlive.org documentation seems outdated (their screenshots look different from the version I got from synaptic). Do I really have to make the title in GIMP like some webpages say? I can do it, but that's idiotic. kden should be able to do it.

View 2 Replies View Related

Ubuntu :: Banshee Notification Area Icon Background Not Transparent?

Feb 25, 2011

I am having a minor annoyance with the Banshee music note icon that is in the notification area. For some reason, it won't have its background be transparent like the rest of the icons on the panel. I know it's not a major thing,

View 3 Replies View Related

Debian Multimedia :: Gnome 3.14.1 - Background Tries To Start On External Monitor But Then It Fails To Load

Dec 28, 2014

I upgraded to jessie today and I am having problems with my background. When I log in, the background tries to start on the external monitor but then it fails to load. I can change the background in settings but it does not show up. The background just becomes black and I am not sure why.

View 3 Replies View Related

Programming :: Run Function In Background?

Mar 26, 2010

I wrote a spinner in Perl and when I did a spinner in shell I could just run the subroutine in the background.

[code]...

In Perl, how do you run a function in a background and get the PID for that? I know PID in Perl is $$

View 2 Replies View Related

Programming :: Getting Return Value From Program Ran In Background?

Mar 10, 2010

I think my title pretty much explains it. I am writing a script and I want to start a program in the background, and when that program finishes I want to check the return value to make sure there was no error.For example normal I would do something like this:

#!/bin/sh
program
if [ ! $? -eq 0 ]; then
echo "There was an error"
exit 1
fi

Now I want to do something like this:

#!/bin/sh
PRTN=`program1 &`
program2
if [ ! $? -eq 0 ]; then

[code]....

In this case if program2 finishes before program1, I don't think the return value from program1 $PRTN would be valid at the time it is checked.

View 3 Replies View Related

Programming :: Ncurses: Filling Window With Background?

Apr 6, 2010

I have some ideas about writing a small game in terminal ( just for fun ) using ncurses library. I want to use some kind of menus (in Midnight Commander's style), but there are some problems with rendering windows, that I don't understand. I create a window with newwin(), assign a color pair to it calling wattron() (for example, I want to fill a window with blue background), and then I call my own function wnd_fill() :

Code: void wnd_fill (WINDOW* wnd)
{
int i;

[code]...

View 9 Replies View Related

Programming :: Running Program In Background From Script

Mar 27, 2011

I have a script that calls another program/script, xxx, to run in the background. Supposedly this program at most should finish within five (5) minutes so after five (5) minutes, I run some other steps to run the script into completion. My problem is sometimes the program takes longer than five (5) minutes and this is causing problems when running the rest of the steps in the scripts. Can anyone suggest how to re-program my script. At the moment, the KSH script, i.e. test.ksh, is doing as below:

test.ksh:
.....
.....
xxx/xxx.ksh <--- program/script called by the script
sleep 300
..... run the rest of the script .....
..... problem is sometimes xxx/xxx.ksh takes longer than 300 seconds .....
..... any way that I can monitor that xxx/xxx.ksh finishes before I run .....
..... the rest of the scripts .....

View 3 Replies View Related

Programming :: Process Does Not Write To Disk While On Background

May 18, 2011

I am doing a program that reads data from a gps and some other devices and writes some files with all the information. When I run it normally it works fine, but if I run the program in the background (with the ampersand) files are not created until I bring it to foreground or close it. I am confused, the program should run the same way with and without the ampersand. (Could it be that the main process that creates all the threads does not create them when it is executed in background? It seems like if the program is stopped until I take it to the foreground).

View 4 Replies View Related

Programming :: Bash Background - & - With Control Operators -&&

Feb 11, 2009

I have a set of files to copy and decompress, and want to do these operations concurrently with a script.

Manually it would be something like:

Code:

The single & is intended to background the processes, while the && is intended to execute the gzip process if and only if the cp completes successfully.

My script is:

Code:

When I run it, bash gets angry with the following error:

Code:

So what is the proper syntax to accomplish this?

View 1 Replies View Related

Programming :: Gracefully Exit A Background Process?

Jun 7, 2011

I am using a program that reads in data from a serial port and then sends that data out over a TCP connection. The problem I'm having is that the only way I know to exit the program is to do a 'kill PID', but doing this means the program doesn't go through the motions of closing the TCP connection properly so I have to wait some random period of time for the port to free itself or else when I try to start it back up it tells me that it can't bind to the specified port.The general structure of the program is as follows

Code:
int main(){
// initialize some stuff

[code]...

View 1 Replies View Related

Programming :: Change The Background Of A Webpage In Ajax?

Jan 22, 2011

when the "Submit" button is clicked on a form in the webpage, I'd like the background tiled image to be changed to another one (downloaded from the server, and "activated"), and the logo that I have there also replaced by another one, which will also have to be downloaded from the server.

View 1 Replies View Related

Programming :: Java: Set Background Image JFrame?

Jul 19, 2011

I am learning some Java programming, and I've run into a problem. I am trying to set a background for JFrame, so that I can put text and buttons on it. I've tried searching the internet, and the only code that I found that was a full code (I lost it, and don't remember the link) had so much other stuff, such as text and buttons, that I couldn't find the part I needed.

View 4 Replies View Related

Programming :: Get Background Jobs To Execute Sequentially?

May 4, 2009

I'm looking for a general pointer, or label for what I am trying to do. Not a specific line of code. I've written a couple of small sh script that gets some user input, then calls several programs to run in the background with the &. My problem is, they all run at the same time. Is there some way to get these jobs to run sequentially rather than consecutively? If yes, what is this process called? I'm thinking there should be a way to line up background jobs in a job queue, similar to how a print queue works, one job at a time. After searching for a couple of hours, I'm thinking there must be a name for this, but I don't know what it is.

View 11 Replies View Related

Programming :: SSH Timeout - Stays Infinitely In The Background

Nov 24, 2008

I have a program that calls a program on a remote host via SSH in the background. In the command similar to the following:

But the problem is, this program stays infinitely in the background. Is there any method of implementation so that I can kill it? like after 10 seconds of trying?

I am trying to refrain from using TCPKeepAlive or sshd_config stuffs configurations. I was thinking of a fork() implementation where the parent sleeps for 10 seconds and then, if the child still haven responds to it, kill it.

View 4 Replies View Related

Programming :: Printf() In C Being Able To Specify Foreground / Background Colors?

Nov 21, 2010

I got curious during the construction of my program to search for blocks of text that contain certain words, and wanted to print out blocks of text with the words I was searching for, initially, in ALL CAPS and seperated by tabs for easy identification. That got boring, though, so I thought, "Can printf do colors, too?" Yes it can.... Who knew?

[Code],,,

View 8 Replies View Related

Programming :: [HTML/CSS/Javascript] Moving Background Image?

Jun 10, 2011

I am trying to set up a webpager that contains a background of the skylouds uperimposedin the center will be an image of an airplane with a transparent background.I want the sky to scroll continuously to the left behind the airplane. I am having problems with the background not being visible, not moving as expected, the airplane not being visible, and just disappointment in general.I think the background of a div will not be visible if there are no internal contents because it will be sized to zero. So I introduced another transparent image to force the size of the main div. Still no joy.Here is my code. Note that I don't have my timers set up yet, just a button to test background movement.

Code:
<!DOCTYPE html>
<html>

[code]...

View 2 Replies View Related

Programming :: Scripting, Perl Or Bash; Run A Background Process, Get Pid?

Apr 1, 2010

pretty simple. how would you background a process from a script and get its process id at the same time?

View 6 Replies View Related

Programming :: Capturing The Exit Status Of The Script Running In Background

Apr 10, 2010

I have a scenario where I am executing some child shell scripts in background (using &)through a master parent script.

Is there a way I can capture the exit status of each individual child script after the execution is completed.

View 7 Replies View Related

Programming :: Continue Execution Of A Python Program While A Background Task Is Going On?

Aug 28, 2010

I'm trying to figure out how to continue execution of a Python program while a background task is going on.

In bash, it is adding "&" to the end as in:

Code:
#! /bin/bash
find / -iname "*.py" > /tmp/all_pys &
echo "looking for all python scripts and putting them in /tmp/all_pys"
(yes, I know I could just put the echo BEFORE the find but I just use it for example)

Say I do that in python (not necessarily running the shell, but perhaps using scriptutil.ffind or something similar), but want to allow the user to be doing something else while running that search in the background, how would I thread, fork, subprocess (not to be confused with the module and Popen) [or whatever I should call it] that?

View 14 Replies View Related

Programming :: Loading Images - Java - Just See The JPanel With Black Background

Jul 19, 2010

I am making a simple snake game and have problem when loading the images (apple, snakes head, snakes body). When running this code, I just see the JPanel with black background which I have created. where is my mistake?

I highlighted my code with image and paint method.

Code:

View 4 Replies View Related

Ubuntu :: Boot Up The Machine The Cube Background Image Goes Away And The Background Colour Is Left?

Apr 15, 2011

Anyone know why each time I boot up the machine the cube background image goes away and the background colour is left. This image i am placing is in Apparency/Skydome

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved