[SOLVED] wmii *interactive* status bar?

Hi to all!
I use to write infos in the /rbar of wmii, and everything works.
Now I would like to create buttons down there, like the tags' buttons in the bottom-left corner.
If you click on a tag, you get the corresponding screen. Analogously, I could put a status message for, say, my sound volume, and bind a program to it to increase or decrease the volume.
Is it possible?
Last edited by iosonofabio (2010-01-29 09:15:52)

iosonofabio wrote:
Actually, it is not so easy. I would like to generate different events depending on which button I clicked on, e.g.:
- change volume for button 1;
- change screen luminosity for butt 2.
So I need wmii to generate different events for different buttons, and not only a generic "RightBarClick 1 status" for the whole bar...
echo "Volume button" | wmiir create /rbar/volume
echo "Luminosity button" | wmiir create /rbar/luminosity
wmiir cat /event # Now click on then and observe the events.

Similar Messages

  • Wmii status bar code not updating.

    I use the wmii tiling window manager and its status bar abilities. The status bar all works fine except the section for getting the CPUMhz (CPU frequency). It does not get updated properly every 2 seconds as it should.
    My code is here:
    # Status Bar Info
    status() {
    echo -n 'CPUTemp:' `expr $(sensors | grep temp1 | awk '{print $2}' | cut -c2-3) + 15` '|' 'CPUMHz:' $(cat /proc/cpuinfo | grep MHz | awk '{printf "%.0f\n", $4}') '|' '/home:' $(df -h | grep sda5 | awk '{print $3}') '|' '/:' $(df -h | grep sda1 | awk '{print $3}') '|' 'RAM:' $(free -m | grep -i /cache | awk '{print $3}') 'MB |' $(uptime | sed 's/.*://; s/,//g') '|' $(date +"%a %b %d %H:%M")
    If anyone can point out my mistake it would be greatly appreciated.

    Are you sure that the CPUMHz is causing your problem?  When I do
    $ sensors
    on my machine, I get 2 lines containing 'temp1'.  If that is happening on your machine, then the `expr $(sensors ...) + 15` of your CPUTemp part will not work as you expect.
    Other than that, I don't know what is causing your problem, but you could replace
    ...'CPUMHz: ' $(cat /proc/cpuinfo | grep MHz | awk '{printf "%.0f\n", $4}')...
    with
    ..."CPUMHz: $(awk '/MHz/ { printf "%.0f", $4}' /proc/cpuinfo)"...
    If that doesn't help, you could try
    ..."CPUMHz: $(( $(</sys/bus/cpu/devices/cpu0/cpufreq/cpuinfo_cur_freq) / 1000 ))"...
    although on my system, that file is readable only by root.  I don't know why it is set up that way.
    You could also break up that long line so that it is easier to read.
    status() {
    echo -n "CPUTemp: $(( $(sensors | awk '/temp1/ {print $2}' | cut -c2-3) + 15 )) | "
    echo -n "CPUMHz: $(awk '/MHz/ { printf "%.0f", $4}' /proc/cpuinfo) | "
    echo -n "$(df -h | awk '/sda[15]/ {printf "%s: %s | ", $6, $3}')"
    echo -n "RAM: $(free -m | awk '/\/cache/ {print $3}') MB | "
    echo -n "$(uptime | sed 's/.*://; s/,//g') | "
    echo -n "$(date +"%a %b %d %H:%M")"

  • [SOLVED]Gnome: No network icon in the status bar

    So fresh install and no networking icon in the status bar.
    I also opened the network connections program and it didnt show any connections. I am using eth0 to write this.
    This suggests to me that a daemon hasnt been started (but doesnt necessarily explain no icon in status bar)
    here is the daemon section of my rc.conf
    DAEMONS=(hwclock syslog-ng network netfs crond networkmanager dbus gdm)
    i added network manager as a previous attempt (on advise of someone elsewhere on the internet(cannot remember where lol))
    Thanks.. I have nearly got my system how I want it (minus software i havent installed yet)
    Sorry if i have created a duplicate thread
    Last edited by olig1905 (2012-01-21 17:33:47)

    Thanks to both of you.
    I had already noticed the redundancy of network which was added in the install however hadnt considered the ordering
    wonder wrote:Did you really read the wiki?
    This is pretty much all i have seen people saying at the end of their posts on here. I agree with the point you have made, however i have been on the wiki all day, conisdering this is a newbie forum it is to be presumed that it is a pretty new installation. Therefore the user does not have time to read the entire wiki. As i said i have been on the wiki all day and used it countless times and have found it invaluable, so im only posting here when i am unable to find answers there.
    That aside this is a wonderfully helpful community so HI

  • [SOLVED] Problem with adding package update count to dwm's status bar

    Following http://www.andreascarpino.it/blog/posts … s-part-ii/, I added:
    $ crontab -l
    */10 * * * * ~/bin/tempdb
    Along with
    #!/bin/bash
    # ~/bin/tempdb
    fakedb=/dev/shm/fakepacdb
    realdb=/var/lib/pacman
    [[ ! -d $fakedb ]] && { mkdir -p "$fakedb/sync" || exit 1; }
    [[ ! -L $fakedb/local ]] && { ln -s "$realdb/local" "$fakedb" || exit 2; }
    exec fakeroot pacman --dbpath "$fakedb" -Sy
    pkgs=$(pacman --dbpath "$fakedb" -Qqu | wc -l)
    aurpkgs=$(cower -udf 2> /dev/null | wc -l)
    unset msg1
    unset msg2
    unset packages
    msg1="pacman: 0"
    msg2="aur: 0"
    if [[ ${pkgs} -gt 0 ]]; then
    msg1="pacman: ${pkgs}"
    fi
    if [[ ${aurpkgs} -gt 0 ]]; then
    msg2="aur: ${aurpkgs}"
    fi
    updb="UPDB: ${msg1}, ${msg2}"
    export updb
    The problems is with being able to export the variable updb, because exporting only exports to subshells. I also have my ~/bin/dwmstatus script:
    #!/bin/bash
    sep=" | "
    volsep="VOL"
    datesep="DATE"
    timesep="TIME"
    vol=$(amixer get Master | tail -1 | sed 's/.*\[\([0-9]*%\)\].*/\1/')
    volstat=$(amixer get Master | tail -n 1 | cut -d' ' -f 8-)
    sdate=$(date +"%B %d")
    stime=$(date +"%r")
    if [[ ${volstat} == "[off]" ]];
    then
    vol="--%"
    fi
    out="${updb} ${sep} ${volsep} ${vol} ${sep} ${datesep} ${sdate} ${sep} ${timesep} ${stime}"
    xsetroot -name "${out}"
    I only want the checking of updates to occur every few minutes (for now I tried 10), and just using the exported variable that contains the whole
    "UPDB: pacman:3, aur:1",..
    I'm not exactly sure how to fix my hacked-together scripts. When I simply run the tempdb script, it doesn't do much exept for updating to the fake database, but being able to use the updb variable has not worked yet. I also tried sourcing the script, but that just quits urxvt when running in dwm, and it logs me out when sourcing from plain X.
    I guess my main question is: what is the best way to show updates from the dwm status bar, or how can I fix what I am trying to do now?
    Last edited by wolfcore (2012-03-17 00:21:47)

    jasonwryan wrote:
    I use this:
    crontab -e
    @hourly /home/jason/Scripts/checkupdates
    grep ups Scripts/dwm-status
    ups(){
    ups="$(/tmp/aurupdates | wc -l)"
    if [ $ups = 0 ]; then
    echo "0"
    else echo -en "$ups"
    fi
    Script is keenerd's from here: http://www.mail-archive.com/pacman-dev@ … 08405.html
    Okay, I see it. But your ups() function checks /tmp/aurupdates; how do you check for AUR updates? I looked at your repos, and saw
    pac()
    pup="$(pacman -Qqu --dbpath /tmp/checkup-db-jason/ | wc -l)"
    if [ $pup == 0 ]; then
    echo "0"
    else
    echo -en "\x05$pup\x01"
    fi
    This is what you use along with keenerd's checkupdates, right?

  • [Solved] dwm status bar

    I am learning about DWM...slowly...
    So, I have conky piped to dzen2 as per the screenshot;
    But how do I now remove the 'dwm-6.0' from the status bar?
    Thanks for your patience.
    Last edited by ancleessen4 (2013-04-13 11:05:17)

    dzconky;
    #!/bin/sh
    FG='#aaaaaa'
    BG='#333333'
    FONT='-*-inconsolata-*-r-normal-*-*-90-*-*-*-*-iso8859-*'
    conky | dzen2 -e - -h '14' -w '1100' -ta r -x '750' -fg $FG -bg $BG -fn $FONT &
    conky;
    out_to_console yes
    #out_to_x no
    background no
    update_interval 2
    total_run_times 0
    use_spacer none
    TEXT
    #Arch 64 :: $kernel :: $uptime_short :: ^fg(\#60B48A)$mpd_smart ^fg():: ${cpu cpu1}% / ${cpu cpu2}% :: cpu0 ${execi 5 sensors | grep "Core 0" | cut -d "+" -f2 | cut -c1-2}C cpu1 ${execi 5 sensors | grep "Core 1" | cut -d "+" -f2 | cut -c1-2}C :: ^fg(\#DC8CC3)$memperc% ($mem) ^fg():: ${downspeed enp0s20} ${upspeed enp0s20} :: ${time %a %b %d %H:%M}
    $kernel :: Updates: ${if_match ${execi 1800 (checkupdates | wc -l)} == 0}${color2}up to date${color}${else}${color3}${execi 1800 (checkupdates | wc -l)} new packages${color}${endif} :: ^fg(\#60B48A)$mpd_smart ^fg():: ^fg(\#DC8CC3)$memperc% = $mem ^fg():: ${time %H:%M} :: ^fg(\#8CD0D3)${execi 300 /home/neil/bin/weather.sh "EUR|LU|LU001|Luxembourg"}
    I have tried changing '-x' and '-w' but no change to the layout...
    Just tried to recompile with '-x=850'...to try and push dzen output to the right but no change...
    makepkg -efi --skipinteg
    I am sure this is a simple solution that I am missing...

  • [SOLVED] Vimperator 2.0 CSS file to colorize the status bar

    With Vimperator's new stable release of 2.0, the old CSS file that controls the status line doesn't work anymore.
    I had a lot of trouble fixing it. I looked up the names of a lot of items and converted the old scheme. That wasn't enough, so I copied the default css into my css file (at the top) and changed everything in there too.
    Now I have a css file that is huge and has lots of duplicate data. It also has a white line between status bar and command line that I can't get rid of, and when you enter a : command the : is black on white, instead of red on gray like the rest of the line (there must be more items, I think I used an old CSS scheme (there wasn't one in the trunk)).
    Anyway, I wonder if this can be made simpler and it'd be awesome if the missing stuff above can be added too. And hopefully someone can benefit of the below CSS anyway.
    What it does: make the background light gray, give the status (top) line a dark gray top border, give status bar regular weight black text, and the command bar bold red text.
    #liberator-completions {
    -moz-user-focus: ignore;
    overflow: -moz-scrollbars-none !important; /* does not seem to work fully */
    border-width: 0px !important;
    /*-moz-appearance: none !important; /* prevent an ugly 3D border */
    margin: 0px !important;
    padding: 0px !important;
    /* the selected item in listboxes is hardly readable without this */
    #liberator-completion > listitem[selected="true"] > listcell,
    #liberator-bufferwindow > listitem[selected="true"] > listcell,
    #liberator-previewwindow > listitem[selected="true"] > listcell {
    color: black !important;
    background-color: rgb(230,230,230) !important;
    margin: 0px !important;
    padding: 0px !important;
    /* fixes the min-height: 22px from firefox */
    #status-bar, statusbarpanel {
    -moz-appearance: none !important;
    min-height: 18px !important;
    border: none !important;
    font-weight: bold;
    font-family: monospace;
    margin: 0px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    color: black !important;
    #status-bar
    border-top: thin solid rgb(100,100,100) !important;
    #liberator-statusline {
    font-family: monospace;
    margin: 0px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    #liberator-statusline > label {
    margin: 0px 5px 0px 5px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    #liberator-statusline > label:first-child {
    margin: 0px 5px 0px 5px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    #liberator-statusline-field-url {
    color: black;
    background-color: rgb(230,230,230) !important;
    margin: 0px !important;
    padding: 0px !important;
    /* no longer at the window's bottom right corner */
    .statusbar-resizerpanel {
    display: none;
    margin: 0px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    #statusbar-display, #statusbar-progresspanel {
    display: none;
    margin: 0px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    #liberator-commandline {
    margin: 0px !important;
    padding: 0px !important;
    font-family: monospace;
    background-color: rgb(230,230,230) !important;
    color: red !important;
    #liberator-commandline-prompt {
    margin: 0px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    color: red !important;
    #liberator-commandline-command {
    background-color: rgb(230,230,230) !important;
    color: red !important;
    margin: 0px !important;
    padding: 0px !important;
    #liberator-visualbell {
    border: none;
    margin: 0px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    color: red !important;
    #sidebar {
    max-width: 90% !important;
    min-width: 10% !important;
    margin: 0px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    /* highlight groups */
    .hl-Normal {
    background-color: rgb(230,230,230) !important;
    color: black;
    margin: 0px !important;
    padding: 0px !important;
    .hl-ErrorMsg {
    background-color: red;
    color: black;
    font-weight: bold;
    margin: 0px !important;
    padding: 0px !important;
    .hl-InfoMsg {
    background-color: rgb(230,230,230) !important;
    color: magenta;
    margin: 0px !important;
    padding: 0px !important;
    .hl-ModeMsg {
    background-color: rgb(230,230,230) !important;
    color: black;
    margin: 0px !important;
    padding: 0px !important;
    .hl-MoreMsg {
    background-color: rgb(230,230,230) !important;
    color: green;
    margin: 0px !important;
    padding: 0px !important;
    .hl-Question {
    background-color: rgb(230,230,230) !important;
    color: green;
    margin: 0px !important;
    padding: 0px !important;
    .hl-Title {
    background-color: rgb(230,230,230) !important;
    color: magenta;
    margin: 0px !important;
    padding: 0px !important;
    font-weight: bold;
    .hl-Warning {
    background-color: rgb(230,230,230) !important;
    color: red;
    margin: 0px !important;
    padding: 0px !important;
    .hl-StatusLine {
    background: none !important;
    background-color: rgb(230,230,230) !important;
    color: white !important;
    margin: 0px !important;
    padding: 0px !important;
    .hl-StatusLineSecure {
    background: none !important;
    background-color: #B0FF00 !important; /* light green */
    color: black !important;
    margin: 0px !important;
    padding: 0px !important;
    .hl-StatusLineBroken {
    background: none !important;
    background-color: #FF6060 !important; /* light red */
    color: black !important;
    margin: 0px !important;
    padding: 0px !important;
    .hl-URL {
    background-color: rgb(230,230,230) !important;
    color: green;
    text-decoration: none;
    margin: 0px !important;
    padding: 0px !important;
    /* NOTE: .aClass:hover not supported in quirks mode: http://developer.mozilla.org/en/docs/Mozilla_Quirks_Mode_Behavior */
    a.hl-URL:hover {
    text-decoration: underline;
    cursor: pointer;
    margin: 0px !important;
    padding: 0px !important;
    #liberator-completions, #liberator-multiline-output {
    overflow: hidden;
    background-color: rgb(230,230,230) !important;
    color: black;
    margin: 0px !important;
    padding: 0px !important;
    #liberator-completions-content, #liberator-multiline-output-content {
    white-space: pre;
    font-family: -moz-fixed;
    margin: 0px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    #liberator-completions-content *, #liberator-multiline-output-content * {
    font: inherit;
    margin: 0px !important;
    padding: 0px !important;
    background-color: rgb(230,230,230) !important;
    /*#liberator-commandline-prompt,#liberator-commandline,#liberator-commandline-command,#liberator-message */
    /*, #liberator-message,#liberator-container,#liberator-bufferwindow, #liberator-completion, #liberator-previewwindow */
    #liberator-container
    background: none !important;
    background-color: rgb(230,230,230) !important;
    -moz-appearance: none !important;
    margin: 0px !important;
    padding: 0px !important;
    #liberator-commandline, #liberator-commandline-prompt, #liberator-commandline-command, #liberator-message,
    #liberator-commandline *, #liberator-commandline-prompt *, #liberator-commandline-command *, #liberator-message *
    background: None !important;
    background-color: rgb(230,230,230) !important;
    color: rgb(255,44,44) !important;
    padding: 0px !important;
    margin: 0px !important;
    font-weight: bold !important;
    border: none !important;
    #liberator-statusline-field-inputbuffer,#liberator-statusline-field-progress,#liberator-statusline-field-tabcount,#liberator-statusline-field-bufferposition,#liberator-statusline,
    #liberator-statusline-field-inputbuffer *,#liberator-statusline-field-progress *,#liberator-statusline-field-tabcount *,#liberator-statusline-field-bufferposition *,#liberator-statusline *
    background: none !important;
    background-color: rgb(230,230,230) !important;
    color: black !important;
    font-weight: normal !important;
    margin: 0px !important;
    padding: 0px !important;
    #liberator-statusline
    background: none !important;
    background-color: rgb(230,230,230) !important;
    color: black !important;
    font-weight: normal !important;
    margin: 0px !important;
    padding: 0px !important;
    .hl-StatusLine
    background-color: rgb(230,230,230) !important;
    margin: 0px !important;
    padding: 0px !important;
    Last edited by Procyon (2009-04-04 22:45:25)

    @anrxc: I see, thanks!
    I didn't notice any speed difference between 2.0 and 1.2.
    Here is the colorscheme I used to get the same effect as above, everything works now:
    I changed some unrelated things and it gave some warning so I commented those out.
    " ==Vimperator_Color_Scheme==
    " name: my
    " ==Defult_Colorscheme_Settings==
    hi Bell border: 0 none; background-color: black;
    hi Boolean color: red;
    hi CmdLine font-family: monospace; padding: 0px;
    hi CmdOutput white-space: pre;
    hi CompDesc color: black; width: 50%;
    "hi CompGroup
    "hi CompGroup:not(:first-of-type) margin-top: 0px; "margin-top: .5em;
    hi CompIcon width: 16px; min-width: 16px; display: inline-block; margin-right: .5ex;
    hi CompIcon>img max-width: 16px; max-height: 16px; vertical-align: middle;
    "hi CompItem
    "hi CompItem>* padding: 0 0; ".5ex;
    "hi CompItem[selected] background: yellow;
    hi CompLess text-align: center; height: 0; line-height: .5ex; padding-top: 1ex;
    hi CompLess::after content: "3" /* Unicode up arrowhead */
    hi CompMore text-align: center; height: .5ex; line-height: .5ex; margin-bottom: -.5ex;
    hi CompMore::after content: "4" /* Unicode down arrowhead */
    hi CompMsg font-style: italic; margin-left: 16px;
    hi CompResult width: 45%; overfloaw: hidden;
    hi CompTitle color: magenta; background: white; font-weight: bold;
    hi CompTitle>* padding: 0 .5ex;
    hi ErrorMsg color: white; background: red; font-weight: bold;
    hi Filter font-weight: bold;
    hi FrameIndicator background-color: red; opacity: 0.5; z-index: 999; position: fixed; top: 0; bottom: 0; left: 0; right: 0;
    hi Function color: navy;
    hi Gradient height: 1px; margin-bottom: -1px; margin-top: -1px;
    hi GradientLeft background-color: magenta;
    hi GradientRight background-color: white;
    hi Hint font-family: monospace; font-size: 10px; font-weight: bold; color: white; background-color: red; border-color: ButtonShadow; border-width: 0px; border-style: solid; padding 0px 1px 0px 1px;
    hi Hint::after content: attr(number);
    hi HintActive background: #88FF00; color: black;
    hi HintElem background-color: yellow; color: black;
    hi HintImage opacity: .5;
    hi Indicator color: blue;
    hi InfoMsg color: rgb(255,44,44); background: rgb(230,230,230); font-weight: bold;
    hi LineNr color: orange; background: rgb(230,230,230);
    hi Message white-space: normal; min-width: 100%; padding-left: 2em; text-indent: -2em; display: block;
    hi ModeMsg color: rgb(255,44,44); background: rgb(230,230,230); font-weight: bold;
    hi MoreMsg color: green; background: rgb(230,230,230);
    hi NonText color: blue; min-height: 16px; padding-left: 2px;
    hi Normal color: rgb(255,44,44); background: rgb(230,230,230); font-weight: bold;
    hi Null color: blue;
    hi Number color: blue;
    hi Object color: maroon;
    hi Preview color: gray;
    hi Question color: green; background: rgb(230,230,230); font-weight: bold;
    hi Search font-size: inherit; padding: 0; color: blue; background-color: rgb(230,230,230); padding: 0;
    hi StatusLine color: black; background: rgb(230,230,230); border-top: thin solid rgb(100,100,100); border-width: 1px; font-weight: normal;
    hi StatusLineBroken color: black; background: #FF6060; /* light-red */
    hi StatusLineSecure color: black; background: #B0FF00; /* light-green */
    hi String color: green;
    "hi TabClose
    "hi TabIcon
    "hi TabIconNumber font-weight: normal; color: black; text-align: center; text-shadow: black -1px 0 1px, black 0 1px 1px, black 1px 0 1px, black 0 -1px 1px;
    hi TabNumber font-weight: bold; margin: 0; padding-right: .3ex;
    "hi TabText
    hi Tag color: blue;
    hi Title color: magenta; background: white; font-weight: bold;
    hi URL text-decoration: none; color: green; background: inherit;
    hi URL:hover text-decoration: underline; cursor: pointer;
    hi WarningMsg color: red; background: white;

  • Customizing the Home Screen Status Bar

    I know right now that the ability to customize the home screen is more or less limited to the arrangement of the icons, right?
    What I want is the ability to place a 'new mail' or 'new sms' icon at the top of the home screen, along the status bar where the time and signal strength are currently displayed.
    That way I can see at a glance if I have new messages, even when the phone is locked, by hitting the unlock button at the top of the phone.
    Luckily the SMS preview gives me that status, but I still need to manually unlock the phone with the passcode before I can see if I have any new email. I don't use an audible alert for incoming email.
    I'd also prefer the option to have new sms messages neither display a preview nor even display a name on the home screen.
    In short, I want more control over the behavior and display of the home screen. I've seen some rumblings that the Apple SDK disallows interaction with the home screen. If so, iPhone users are completely at the whim of Apple to include new home screen functionality.
    I'm not happy with that arrangement.
    Coming from the Windows Mobile word, I'm finding Apple to be a very closed system. I knew ahead of time that there would be some diminished flexibility, but I didn't expect this much of a drop.

    Apparently you do not have a question, but it seems that you have some feedback for Apple. As this is a users forum, populated by iphone users -not Apple, perhaps you need the address for feedback that Apple does receive:
    www.apple.com/feedback/iphone.html

  • The status bar on my Palm TX no longer is working

    The status bar on my Palm TX no longer is functional with the stylus. I have tried realigning the screen with the Pref/Touchscreen app; doing soft resets; and doing hard resets. I have, also, removed the screen protector. All with the same result: The status bar will not function. Any suggestions of how I can try to repair it myself.
    Post relates to: Tungsten TX
    Post relates to: Tungsten T

    Is it just the status bar only, or the bottom of the screen?  Are all the icons present, or have some disappeared?  There are some files for the T3 only that will remove some of the icons from the TX.  You might try searching for AppSlipRotate.prc, and StatusBarLib.prc on your device.  If present, delete them!
    It also sounds like your digitizer might be failing.  Repairs at fair prices can be found at usedpdaparts.com and directfix.com.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Weird message below status bar - icons move down and almost touch dock

    Ever since installing 3.0 on my 3g iphone I've had a weird problem. Roughly around an hour or so after the phone is on, the icons on the page move down (about an 1/8 of an inch) and the words "Revisar ADN" appear below the status bar. A little bit later the message will go away but the icons will remain shifted down. The only way to fix it is to turn the phone off and back on again, but again, roughly an hour later it happens again.
    I have restored several times but to no avail.
    Some more info about the situation: I purchased and activated the phone in Guatemala (where I live) and my carrier is Claro. The words "revisar ADN" mean "check DNA" in english. The phone is not jailbroken or anything like that. Even though the carrier is Claro, the international settings are in English with the exception of the spanish language added to the keyboard. I've had the phone for about 6 months and on 2.2.1 never got this message.
    Any help would be appreciated.

    Thanks so much for the information and the investigation on this (I saw you posting in other forums as well). Through some trial and error I think things are working finally. Here is the story for anyone else that might suffer from the same problem.
    I originally tried the SIM trick and took the SIM out, put it into another phone, added a contact, and then put the SIM back in. This unfortunately did not work. A few hours later the icons had moved again. I then noticed that the contact that I had added to the SIM was not in my iphone address book, so I imported the contacts from the SIM (Settings>Mail, Contact, Calendars>Import Sim Contact), hoping that this would fix the problem. That didn't work either. I turned the phone off and on again, and that didn't work either.
    Then I began to look into the "Claro Contactos" issue, and went looking for the SIM Applications (Settings>Phone). Now, I am almost positive that when I looked here earlier that day the SIM Applications button was not there. Maybe it was, but I'm thinking that by putting the chip into another phone and then putting it back into the iphone, this "unlocked" this feature. Or maybe it was the simple act of taking it out and putting it back in. Either way it was there now. I had never heard (or turned on) Claro Contactos so I went hunting for where to turn it off. After finding it "Utilidades Claro" it popped up a message asking if I wanted to turn it on. Obviously I had not used the feature before so I couldn't turn it off like the previous post had suggested. So I did the opposite and turned it on. I then touched the button "Respaldo Contactos" to back up that one contact to this service and then touched the button "Respaldo Automatico" and told it NOT to back up automatically. After doing all of this, I turned the phone off and on again, and now everything has been fine. It's been a full day and my icons are right where they should be.
    I mention the process because I'm not totally convinced that just by turning the Claro Contactos on was the issue. I think the whole process is the solution. Maybe someone else that has the same issue can try the process, but backwards and see if just switching the Claro Contactos on (or off) solves the problem.
    Thanks for the help and I hope this helps whoever else might have the same problem.

  • Form path in call_form and compilation error and status bar.

    Dear all,
    what should be the path in the call_form?
    my forms (developed in form 6i) give error when i run it in forms 9i. i have already compiled. with the form 9i.
    the status bar is invisible when running in the browser.
    i am new to developer 9i.
    thanks
    Muhammad Nadeem

    Hi:
    When you call the forms in the subdirectories, you need to use the full path. Example:
    CALL_FORM('c:\forms\D1\some_form');
    Of course, you realize that this makes your forms less portable and could in the future cause more problems than it solves. Is there any reason you cannot just keep all your forms in one directory and possibly use a prefix to manage them if they belong to different sub-applications?
    Thomas

  • Pages 5.0 - Status bar current page & page count?

    How do I show the status bar showing current page and page count? I do not need to see the full thumbnail bar.
    In all prior versions of pages, I could look at the bottom of my window and see my current page and how many pages are in my document.  Now, I glance to the bottom, and I have no idea.  I cannot find any way to turn this on and turning on the thumbnails view does not show this to me at-a-glance because I have to scroll all the way down (through documents hundreds of pages long) to find out how many pages I currently have.
    Please, what am I missing here, how can I make this show up again?
    I mean a quick display here, not adding the page count and numbers to a documents footer.  Although, that would be one way for me to solve this issue, but I do not always want that.

    I wrote a short AppleScript solution that informs about the current document page as a pop-up dialog. This is for Pages v5+ only. I created and saved an Automator Application named CurrentPage to my Desktop. Providing that Pages is running, it will produce the dialog shown in subsequent Automator screen shot.
    Double-click /Applications/Automator and choose New Document, Application, and Choose. Follow the Utilities > Run AppleScript (not Shell Script as shown), and drag Run AppleScript over into the larger window and drop it. Select all of its contents and remove them -- this is just boilerplate.
    Copy and paste the following AppleScript into the now vacant Run AppleScript workflow window. Click the hammer, and File > Save... pick a name, and location to save the application where it is handy. Quit Automator.
    Code:
    -- P
    -- Produce formatted dialog of document name, current page, and page count
    -- Pages v5+ only. Works whether typing in document or scrolling pages.
    -- VikingOSX, June 2014, Apple Support Community - Pages for Mac.
    if not ApplicationIsRunning("Pages") then
      display dialog "Pages must be running to use this utility."
      return quit
    end if
    tell application "Pages"
      activate
      tell front document
      set diagTitle to "Current Document Page"
      set docName to (name as text)
      set thePage to current page
      set curPage to 0
      set pageCnt to page count
      set pnList to its page
      repeat with ndx from 1 to count of pnList
      if thePage is equal to item ndx of pnList then
      set curPage to ndx
      end if
      end repeat
      set vformat to "Document: " & tab & tab & docName & return ¬
      & "Current Page: " & tab & curPage & return ¬
      & "Total Pages: " & tab & tab & pageCnt
      end tell
    end tell
    display dialog (vformat as text) giving up after 15 with title diagTitle
    on ApplicationIsRunning(appName)
      tell application "System Events" to set appNameIsRunning to exists (processes where name is appName)
      return appNameIsRunning
    end ApplicationIsRunning

  • Where is the Status Bar in FF 7.0.1?

    I have just updated to FF 7.0.1 from FF 3.6.16. I am unable to find the status bar in the new version, to know the progress of my web page downloads. How do I get the FF 3.6.16 Status Bar like function in this new version?

    The Status Bar was removed in an earlier version of Firefox and replaced with the Add-on Bar.
    *See --> https://support.mozilla.com/en-US/kb/common-questions-after-updating-firefox#w_what-happened-to-the-status-bar
    *See --> https://support.mozilla.com/en-US/kb/what-happened-status-bar
    You can regain some Status Bar functions by installing the Status-4-Evar extension.
    *Install the '''''Status-4-Evar''''' extension: https://addons.mozilla.org/en-US/firefox/addon/status-4-evar/
    *After install,
    *#Be sure the Add-on Bar is displayed; Options > Add-on Bar (or View > Toolbars > Add-on Bar), click to check "Add-on Bar"
    *#In View > Toolbars > Customize drag any or all of the 3 items to the position you want them on the Add-on Bar:
    *#*Status text (this is the URL information you want)
    *#*Download status (will display No Downloads or number of downloads in progress)
    *#*Progress meter (meter of page loading)
    *#Set the options for Status-4-Evar in Tools > Add-ons > Extensions
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Printing to pdf is stalled at the status bar stage under acrobat 9.5.4

    I have this issue about printing to pdf. No matter what program (Word, Notepad...) I use to print to pdf by selecting the Adobe PDF option under the choices of "Print" window, this is what would happen:
    1) New windown pops up OK for me to name the pdf file and location to save the file to
    2) Then, the status bar of the pdf printing progress pops up. However, this progress bar would get stuck for ever, not going all the way !!!!
    I have Adobe Acrobat Std 9.5.4 installed. My PC runs win7/home/64bit. I am not using AVG free anti-virus. Avira free anti-virus is running on my PC.
    Please help !!!!  Thanks much !!!!

    Hi, Thanks much for your reply. Unfortunately, it did not my issue:
    1) Print to file: "Print to file" did produce a file. However, this file could not be opened by acrobat.
    2) Restart AcroTray: I did this. Again, It did not solve my issue with printing to pdf. It gets stalled again in the process bar window.
    What is acrobat so difficult?
    Any other idea?  thanks.

  • Removing status bar from a frame window in Netscape

    Hi
    I am generating a window from an Applet, that window is showing as "Unsigned Applet" on the status bar of a frame in Netscape, but not in IE.
    After going through couple of news groups, I have signed jar and cab file. Still it behaves the same way.
    Problem here is, when there is a status bar, some of components are portially visible. If I increase the size of a width, it looks ugly in IE.
    Thanks in advance

    Take a look at reply#8 at the link shown below and see how the poster described the situation which is similar to yours and how he managed to solve the problem::
    http://forum.java.sun.com/thread.jsp?forum=31&thread=218446
    Hope this helps!
    V.V.

  • Status bar of Oracle from runtime applet is not displaying all of a sudden

    Hello,
    The status bar of Oracle form runtime applet is not displaying all of a sudden..It was displaying before but now its not......It helps me to see errors......how can I restore it?

    My console was set to a specific window name..it was not null at all....but the status bar wont show...
    But I solved it ...by changing the applet size...
    Applet container size is controlled by the HEIGHT and WIDTH parameters in the formsweb.cfg. To maximize the applet area to the size of the browser, do the following:
    HEIGHT=100%
    WIDTH=100%
    Thank you all for your help and support...
    Edited by: user10746194 on Feb 11, 2010 6:33 AM

Maybe you are looking for

  • Cannot determine comparator for Sortfield

    I have a DataGrid that gets its data from an HttpService. If the first row of the data from the http request has a null value for a given field, I get the "Cannot determine comparator for Sortfield" error. I think the simplest workaround would be to

  • Any recourse for a failed device?

    Help. I upgraded to a Droid RazR in 2012 which never worked. Twice, it died and wiped out all data.  I abandoned it to stop the "bleeding" & had my old Blackberry reactivated for phone service. Is there any recourse or credit for a failed device I'm

  • Nokia E66 software version 410.21.010 released????

    Hi, I have seen from http://europe.nokia.com/support/download-software/device-software-update/news, saying that E66 firm ware is updated to 410.21.010. But nokia software updater saying new version is 300.21.012. Which one is correct. My mobile model

  • Unable to convert files to pdf in network drives

    Hi Team Iam using adobe acrobat pro 11 in windows7 64 bit OS.When ever iam trying to convert files from text or word to .pdf iam getting the errro message in devices and printers. one thing i observed that when i choose local drive eg:c:drive iam the

  • Clearing recent history causes very long delay with message "a script has stopped responding"

    When I take option to "Clear Recent History" from tools dropdown, there is a very long delay EVERY TIME, followed by this message: A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue