Dynamic status bar in swf

HI,
In swf file how to show a status bar with status messages
dynamically.
Thanks,
Suman Puli

Which Status Bar?
Post your question in the forum for Adobe Reader.

Similar Messages

  • Dynamic status bar

    I made up a status bar, but couldn't get it to be updated while some other task is being executed, like several printing jobs. The bar is a simple JPanel with a JLabel. I tried to revalidate the panel and another thread.
    What do I have to do to get the message updated?

    but couldn't get it to be updated while some other task is being executed, like several printing jobs.Its probably because you aren't using Threads. If your printing jobs are executing in the Event Thread then the GUI can't be updated until the printing is finished. The printing code should be moved to a separate Thread.

  • Persistant Status Bar Notification ... error 'SP.UI.Status' is null or not an object

    I want to show a status bar that needs to be persistent on a page. for this I used the following in my master page
    function ShowStatusBarMessage(title, message)
    var statusId = SP.UI.Status.addStatus(title, message, true);
    SP.UI.Status.setStatusPriColor(statusId, 'yellow'); /* Set a status-color */
    HTML, call the JS method:
    <a onclick="ShowStatusBarMessage('Title'!','Awesome message!')">
    Display Status Bar message!
    </a>
    ref:
    http://www.zimmergren.net/archive/2010/03/17/sp-2010-dynamically-displaying-messages-to-your-users-with-the-notification-and-status-bar-areas-in-sharepoint-2010.aspx
    But what I want is
    to call the function on load. So I used pushed ny function to _spBodyOnLoadWrapper using _spBodyOnLoadFunctionNames.push("YourFunctionName");,
    it throws an error 'SP.UI.Status' is null or not an object
    Next I created and
    deployed a webcontrol and did a registerclientscript, that too gives me 'SP.UI.Status' is null or not an object
    // Define the name and type of the client scripts on the page.
    String csname1 = "AlertScript";
    Type cstype = this.GetType();
    // Get a ClientScriptManager reference from the Page class.
    ClientScriptManager cs = Page.ClientScript;
    // Check to see if the startup script is already registered.
    if (!cs.IsStartupScriptRegistered(cstype, csname1))
    StringBuilder cstext1 = new StringBuilder();
    cstext1.Append("<script type=text/javascript> alert('Hello World!');");
    cstext1.Append("var statusId = SP.UI.Status.addStatus('title', 'message', true);");
    cstext1.Append("SP.UI.Status.setStatusPriColor(statusId, 'yellow'); </");
    cstext1.Append("script>");
    cs.RegisterStartupScript(cstype, csname1, cstext1.ToString());
    What am I missing ?
    How can I get to show a status bar on load of any page, just as you get a health analyzer message when you get into the Central Admin?
    Thanks, Mano
    Mano Mangaldas | Blog : http://howtosharepoint.blogspot.com 

    Ok, for some reason, it is not working for me. Below are the code that didnt work for me
    <script type="text/javascript">
    function ShowStatusBarMessage(title, message)
    var statusId = SP.UI.Status.addStatus(title, message, true);
    SP.UI.Status.setStatusPriColor(statusId, 'red');
    ShowStatusBarMessage('Title!','Awesome message!');
    </script>
    This too didnt work
    <script type="text/javascript">
    function ShowStatusBarMessage()
    var statusId = SP.UI.Status.addStatus('Some title', 'Some message', true);
    SP.UI.Status.setStatusPriColor(statusId, 'red');
    _spBodyOnLoadFunctionNames.push("ShowStatusBarMessage");
    </script>
    I did try to register client script block programatically, that too didnt work
    String csname1 = "AlertScript";
    Type cstype = this.GetType();
    // Get a ClientScriptManager reference from the Page class.
    ClientScriptManager cs = Page.ClientScript;
    // Check to see if the startup script is already registered.
    if (!cs.IsStartupScriptRegistered(cstype, csname1))
    StringBuilder cstext1 = new StringBuilder();
    cstext1.Append("<script type=text/javascript>");
    cstext1.Append("var statusId = SP.UI.Status.addStatus('title', 'message', true);");
    cstext1.Append("SP.UI.Status.setStatusPriColor(statusId, 'yellow'); </");
    cstext1.Append("script>");
    cs.RegisterStartupScript(cstype, csname1, cstext1.ToString());
    Any help appreciated.
    But the below code works..
    <script type="text/javascript">
    function ShowStatusBarMessage(title, message)
    var statusId = SP.UI.Status.addStatus(title, message, true);
    SP.UI.Status.setStatusPriColor(statusId, 'yellow'); /* Set a status-color */
    </script>
    <a onclick="ShowStatusBarMessage('Title!','Awesome message!')" href="#">
    Display Status Bar message!
    </a>
    Thanks
    mano
    Mano Mangaldas | Blog : http://howtosharepoint.blogspot.com 

  • Status bar in oa framework

    hi mukul,
    my requirement is to show some info in the status bar which i get it from the database. this should be done onmouseover of each row in a table in page.
    i know that it can be done using javascript like
    window.status = 'some text';
    but can it be done in java? or even i do it in javascript how can i pass the value from the query to the javascript .
    please some one help on this regard. i will be greatfull
    prabhakaran.p
    Message was edited by:
    user630121
    Message was edited by:
    user630121

    prabhakaran.p,
    As you need to show some information on mouse over on row in tbale based om db, u can show dynamic tooltip using databound values api., Refer the thread:
    Dynamic tooltip for a link
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Download Status Bar Not Working

    Hi. When I am downloading iStore songs, the status bar stays blank, and does not display the active marker bar showing the file progress. It has never worked. Is this famiiar to anyone? The downloads seem to be fine in every other respect. Thanks!

    It seems ever since i downloaded the latest version
    of iTunes, my status bar has stopped working. I
    can't seem to be able to control the volume from
    iTunes either. I have to control it from my
    keyboard. When playing songs, the status bar does
    nothing and even the name of the song does not get
    updated on the status bar. Also the equalizer visual
    thingy (dynamic range monitor or whatever it's
    called) does not do a thing. And finally,
    downloading songs has become painfully slow. What I
    used to download in 20 to 30 seconds now takes 3
    minutes!
    Anyone know what's going on? Anyone else having
    these problems?
    I am having the same exact problems after downloading 7.0.2. Sorry I have found no solution as yet.

  • Displaying a status bar through swings

    Hi everybody,
    My problem is that i want to display a status bar, using Java Swings. In this regard i am facing somwe difficulty, and i would be really thankful to those, who in some way can help me.
    thanks

    Create a Static JLabel in the main application constructor and add it to the South position of your main window.
    Now set the text dynamically whereever u want to show a status message to this static label.
    I hope this can solve your problem

  • IE browser loading status bar

    When attempting to load the following page using IE (v6), the
    SWF loads fine but the status bar at the bottom of the browser
    indicates "1 item remaining....."
    http://lakeplacid.com/flash/f/map/lodgingmap.cfm
    The status bar will eventually complete, but it's not an
    accurate alert.
    The movie is fully loaded once the first frame is displayed.
    Has anyone encountered this before?
    This isn't THAT important, but I've had some complaints from
    clients regarding the "misleading" information.
    Thanks!

    Some of the early workarounds for the recent Internet
    Explorer changes (regarding active controls) cause the appearance
    of incomplete loading. Flash 8 and Dreamweaver 8 now have officlal
    updates that create new JavaScript and HTML publishing code, so
    that pages containing SWFs load completely on all browsers, and
    don't create the annoying warnings on IE.

  • Dstatus - dwm status bar

    Hey guys,
    for quite some time I've been working on dstatus for my own desktop. To share and improve dstatus I'd like to introduce it to the ArchLinux community now. dstatus is a small but expandable status application designed for use with dwm. While it certainly doesn't fit the suckless approach due to its use of plugins it now works rather nice.
    Features:
    - dstatus features a plugin system. This makes it easy to add new plugins that add information not accessible right now.
    - dstatus features groups. Groups bind together parts of your status line. If a dynamic part of that group becomes undisplayable (muted volume for example) the whole group will be hidden.
    - dstatus' format can be configured via config.h. It's syntax is described in the project's README.
    - dstatus' plugins can be configured via config.mk. It enables to exclude certain plugins from compilation and installation
    Currently there aren't many plugins, just some basic stuff for time, volume, mpd and battery. I'd be happy to accept contributions for new plugins.
    If you're interested compile and try this small application and provide some feedback. The project can be found at Bitbucket.
    Here's a link to the dstatus AUR package.
    Regards,
    Patrick
    Last edited by pks (2013-06-06 17:15:03)

    mauritiusdadd wrote:
    derrickcope wrote:What I am asking is shouldn't it be able to do it already without patching? Bash can output color so why do I have to patch?
    No. Bash can show colours because it can parse and interpret the escape sequences. Dwm code lacks of that feature and for this reason you have to apply a patch.
    Thanks, that's what I was asking. If xsetroot -name can accept bash sequences then wouldn't it be simple just to use this to show color. @jasonwryan is right, I do need to read up more on dwm. Since I am in China it is problematic to search for things on the web even with a vpn and the suckless website is sparse on infomation.
    Seems that this would be the easiest way to add color to the status bar but maybe "xsetroot -name" doesn't output in color even though it does have "-fg -bg" switches.

  • How to hide column link URL on status bar?

    Apex 4.1
    I have IR wit one column link target to URL, and it uses
    javascript:my_function(#COLUMN_VALUE#)as URL, that is, calls some function and passes the value of that column to the function;
    everything works fine;
    but when I place a cursor over the link, bottom line of IE9 browser (is it called a 'status bar'?) clearly shows:
    'javascript:my_function(<actual value>)'
    Is there any way to prevent it from showing function name and parameter value?
    I tried
    onmouseover="window.status='';"but it does not work

    Don't name the function in your link and hide the code in a dynamic action. See this example:
    http://apex.oracle.com/pls/apex/f?p=31517:296
    and the empno column which is a link. Explanation further down.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Dynamic title bar

    Hi
    experts , can any body tell me how to create dynamic title bar in interactive report
    ,i.e, suppose we have 17 pages,every page should contain the same heading,
    and i have one more question
    what are the mandatory things required in data Dictionary for creating table.

    top-of-page triggers after every right statement triggers
    in basic list,
    top-of-page during line selection triggers after every
    secondary list display........
    see the simple example code :
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Check with below links :
    interactive report
    http://www.erpgenie.com/abap/ireports.htm
    http://www.erpgenie.com/sap/abap/example_code.htm
    Check the below link and it explian about top-of-page during line-selection
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/top_of_p.htm
    Mandatory thing for creation of table
    1. Description of table
    2. Delivery class
    3 Table should have atelast one field ,should have one primary key
    4. Data class ,size category
    Thanks
    Seshu

  • Status bar for multiple preloaded levels (kglad are you there?)

    OK, ive been building a site for about a month now and slowly piecing it together- so far ive managed to get all my various different levels loading and unloading the way i want them to, but now id like a little status bar to load on screen as my multiple levels are loaded in the background.
    The way ive been accomplishing this without the load bar is like so:
    on first frame of main movie
    loadMovieNum("dl_web.swf", 3);
    loadMovieNum("dl_illustration.swf", 4);
    loadMovieNum("dl_retouching.swf", 5);
    (the first frame of each of those movies has a stop function on it)
    And i have buttons on the main movie that make each of those levels visible and play.
    NOW, ive just created a movie clip ive named "bar" which is a thin rectangle, and i would like to have that movie clip load lengthways as my multiple levels are loaded in the background. So, my question is how do i accomplish this? I've looked all over and it seems like all the good preload tutorials are loading into movieclips whereas i am loading into levels.
    Right now my site is technically working, but there will be pauses for people with slower internet connections and i need my bar graphic to pop up so they dont think they are dealing with a broken site....

    that code should be in a frame (like 1), that plays once.  the playhead should not return to that frame.
    oops, we also need:
    loadMovieNum("test.swf", 3);
    loadMovieNum("dl_illustration.swf",  4);
    loadMovieNum("dl_retouching.swf", 5);
    preloadI=setInterval(preloadF,200);
    function  preloadF(){
    var  bl:Number=0;
    var  bt:Number=0;
    if(_level3.getBytesTotal()>0){
    bl+=_level3.getBytesLoaded();
    bt+=_level3.getBytesTotal();
    if(_level4.getBytesTotal()>0){
    bl+=_level4.getBytesLoaded();
    bt+=_level4.getBytesTotal();
    if(_level5.getBytesTotal()>0){
    bl+=_level5.getBytesLoaded();
    bt+=_level5.getBytesTotal();
    if(bt>0){
    bar._xscale  = 100*bl/bt;  //<- adjust this to suit your needs.
    if(bl>0&&bl>=bt&&_level3.getBytesLoaded()>0&&_level4.getBytesLoaded()>0&&_level5.getBytesL oaded()>0){
    clearInterval(preloadI);

  • How to hide status bar and get fullscreen?

    Hello,
    I have compiled to .ipa and loaded my app onto my iphone.  I have set the app to be fullscreen in the descriptor file, but it does not display fullscreen on my phone.  Initially the UIStatusBar gets hidden like it should, but after the Default.png goes away and the app loads, the status bar comes back.  I have tried setting the UIStatusBarHidden property in the InfoAdditions section, but when I do the PFI throws an error and does not compile my .swf to .ipa.
    Any ideas?  I have compile another app and successfully set it to fullscreen mode by making sure the fullscreen property is set to true.  For some reason it does not work on the current app I am working on.

    Hello,
    I have compiled to .ipa and loaded my app onto my iphone.  I have set the app to be fullscreen in the descriptor file, but it does not display fullscreen on my phone.  Initially the UIStatusBar gets hidden like it should, but after the Default.png goes away and the app loads, the status bar comes back.  I have tried setting the UIStatusBarHidden property in the InfoAdditions section, but when I do the PFI throws an error and does not compile my .swf to .ipa.
    Any ideas?  I have compile another app and successfully set it to fullscreen mode by making sure the fullscreen property is set to true.  For some reason it does not work on the current app I am working on.

  • Status bar while Xcelsius is processing

    The Xcelsius file I have created takes a few seconds to process when the user makes a selection.  I would like to add a status bar similar to the one in the link below in between selections.  I have been unsuccessful in finding this in the help topic.  I am currently using Xcelsuis Professional 4.5 - is this component available in this version?
    http://resources.businessobjects.com/support/cx/samples/download_45/banking_dashboard/Banking%20Dashboard.swf

    1.) In one instance of Xcelsius 4.5, produce your model.
    2.) Export the model to SWF (File --> Export --> Macromedia Flash).  Remember the location where the swf file is saved.
    3.) Open another instance of Xcelsius 4.5
    4.) Drag an External SlideShow component to the canvas.  This can be found in Web Connectivity component folder.
    5.) Open the SlideShow's property sheet.  Enter the location of the previously exported SWF
    6.) Preview the model.  Depending on how big the model actually will increase the amount of time the progress bar is visible.
    Bind - If you have a property value set in the Excel sheet, you can set the component property to read from the Excel cell.
    Host - The SWF file resides on a file server.  This is also known as a "hosted file".
    Hope that helps.

  • Palm TX - STATUS BAR

    Hi, the STATUS BAR (the that appears right below in the screen) doesn´t work: I can´t minimize it anymore when I´m using Documents To Go, Isilo, Ereader, and almost the other applications I have in my Palm. What can I do? 
    Thank you,
    elizabethpk 
    Post relates to: Palm TX
    Post relates to: Palm TX

    There are some software packages that have a DIA (dynamic input area) plug-in that was written for the Tungsten T3 that is in compatible with other Palm OS 5 handhelds that have DIAs, such as the LifeDrive and the TX.  iSilo is one of those applications, if I recall correctly.
    If you have successfully performed a Hard Reset, then that software conflict state would have been cleared as a hard reset erases a Palm device and restores the software to its out of the box factory settings.  If your status bar problem was related to a software issue, a hard reset would have corrected it.  If the problem came back after a HotSync, then you would know for sure that it was a software problem.
    If afte a hard reset, you start a new memo, and you are still unable to close the DIA, then you may have a problem with the digitizer not registering for the section of the screen that has the open/close button.  Are you expereiencing any stylus tap or Graffiti handwriting tracking issues with your digitizer?
    Alan G

  • How do I turn off and on the icon size slider bar at the lower right status bar of a folder window.

    I have been trying for days to help a friend with a new iMac to turn on the icon size slider bar that on my iMac appears at the bottom of ever folder when it is open when in the "view" > "icon" mode.  I cannot find anything that discusses this slider bar.  I can turn this status bar off and on on both my machine and my friends machine, but I cannot turn off or on the slider on either machine. 

    This did not help.  I am a Mac User since 1984 and generally I am never stymied buy the Mac OS, but this one has me.   I can open and close the lower status bar, as you described, and that works fine for me because I have the icon slider bar already there and it works fine; however when I open the lower status bar on my friends machine there is no icon size slider bar, and I can't seem to find out how to get it there, as it is on my machine or at all. The icon size can be controlled from the View menu, but as a photographer, it is really handy to have it at the bottom of the folder window.  Thanks for trying. 

Maybe you are looking for