How can I retain my counter button after editing page?

How can I retain the numberon my counter button after I have change information on my welcome page?

Since MobileMe will be discontinued on June 12, 2012, and with it the following features:
Features Unavailable When Publishing to a Non-Mac Server:
◼ Password protection
◼ Blog and photo comments
◼ Blog search
◼ Hit counter
◼ RSS Feed Widget
you might get ahead of the curve and use a 3rd party counter.  There are many counters that will give you much more than just the number of visitors and can be setup to not count your visits. I use  StatCounter which gives the following info on visitors:
Click to view full size
This tutorial describes how to add the counter using an HTML snippet: #13 - Adding a StatCounter as an HTML Snippet. 
OT

Similar Messages

  • How can i retain the trailing zeroes after decimal

    how can i retain the trailling zeros after decimal?
    values are showing in table like( 4.50,5.00) but i am trying to do some processing with these values then ithe zeroes are truncated like (4.5,5),
    how can i get values with zeroes

    If the values in the table have trailing zeroes, it's a character type column.
    Once you perform operations on them, they're implicitely converted to the number type, hence "losing" trailing zeroes.
    To get the trailing zeroes back, you have to convert them back to character data:
    TO_CHAR(1.5*3, '90d99')Have fun,
    K.

  • How can I use the find button in Edit ADF Table in JDeveloper 10.1.3

    Hi all,
    in JDeveloper 10.1.3
    How can I make the find button work in
    the same Edit ADF Table without adding new view ?
    thanks

    Hi there,
    it depends on what you mean by adding a new view object. You[b] don't have to create a new viewobject. You do have to add a second instance of your existing view object to your page.
    Form scratch works more or less like this. Drop your view object as ADF table on the form. Add the find and execute operations. Drop the same view object on your form but now as ADF search form. Place the fields form the search form in the corresponding columns next to the existing fields. For each #{row} field ,and the find button, set the rendered property
    #{bindings.testUserIterator.findMode ==false}. For each inputfield, and the execute, set the rendered property #{bindings.testUserIterator.findMode ==true}.
    Now it will work.
    I hope this is what you are looking for.
    Good luck
    Luc Bors

  • How can we create a OCA button for Overview page?

    Hi Experts,
       Please help me with all the steps for creating an OCA button for Overview page. I have already tried it for table view in Viewset and it is working fine but how to do that in Overview page.
    Thanks and Regard,
    Pranoy Kumar

    Hi Pranoy,
    You need to redefine two methods of OVP view's _IMPL class and paste this code:
    METHOD if_bsp_wd_toolbar_callback~get_buttons.
      DATA:  ls_button    TYPE  crmt_thtmlb_button_ext.
    Ls_button-on_click = 'EDIT'.
         ls_button-type = cl_thtmlb_util=>gc_icon_edit.
         ls_button-page_id = me->component_id.
         ls_button-enabled = abap_true.
        APPEND ls_button TO rt_buttons.
      ENDMETHOD.                    "if_bsp_wd_toolbar_callbacku2014get_buttons
    method IF_BSP_WD_TOOLBAR_CALLBACK~GET_NUMBER_OF_VISIBLE_BUTTONS.
    *CALL METHOD SUPER->IF_BSP_WD_TOOLBAR_CALLBACK~GET_NUMBER_OF_VISIBLE_BUTTONS
    *  RECEIVING
        RV_RESULT = 6.
    endmethod.
    And write the event handler method for here in my case EDIT, or you can write depending on your requirement.
    Regards,
    Vishal.

  • How can I add web counter into my Muse page?

    Normally with Dreamweaver I added the right code right before the end of body tag. How can I solve this problem with Muse?

    Hi,
    If you have the code for the web counter, you can add it to your Muse site using Insert HTML feature.
    Regards,
    Aish

  • How can i disable a link/button after clicked while content active

    hello all
    i am building a website all on one page and am using the
    spry framework so that it displays when clicked fades in
    the issue is i dont want the link to work again after its been
    clicked ie when the link is active then
    when another link is clicked it is re activated and
    can be used again!?
    i am using the behaviours panel in dreamweaver?
    cant seem to find an option to
    toggle this function
    i am not great at js or html
    but any help would be appreciated!
    many thanks
    ]p

    Because we are not privy to your code I shall answer this in general.
    You can use the Spry Element Selector to target your link and to disable that link. When clicking another link you could cycle through your links and enable them before disabling the newly clicked link.
    More info on the Spry Element Selector can be found here http://labs.adobe.com/technologies/spry/articles/element_selector/index.html and here http://labs.adobe.com/technologies/spry/articles/element_selector/selector_examples.html

  • How Can I Increment a Counter on a Master Page?

    I am working on a very complex form and have hit the proverbial wall. I have uploaded the file to the URL below and am seeking assistance in finalizing the form.
    Here is the URL for the file.   https://workspaces.acrobat.com/?d=66B5k8981-WUNHJB1epZXg
    There are three challenges that remain.  When I click on the "Click to Add Service Location" button on the bottom of page 2:
    I need to add an instance of "Service_Location_Page" on the following page.  Currently, it is adding it prior to the page I just completed.
    I need the value of "Service_Address_Type" on page 2 to change from the default value of "Primary" to "Secondary" on the new instance of "Service_Location_Page" and all subsequent instances.
    I need the "Service_Locaton" counter at the top of page 2 to increment by +1 for each new instance of "Service_Location_Page".
    Any suggestions for refinements will be greatly appreciated.
    Anokie1

    Hi,
    I don't see a problem with the first point in your request.
    For the second and third on you only need to add one script to the indexChange event of "Service_Location_Page".
    Provider_Data_Intake_Form.Service_Location_Page::indexChange - (FormCalc, client)
    if ($.index > 0) then
              Service_Locations.Service_Location.Service_Location_Header.Service_Address_Type = "Secondary"
    else
              Service_Locations.Service_Location.Service_Location_Header.Service_Address_Type = "Primary"
    endif
    Service_Locations.Service_Location.Service_Location_Header.Service_Location = $.index + 1

  • How Can i retain the Shared Variable Values after PC rebooting

    Hi all,
    I am facing a paculiar problem with Shared Variables. I have an application in which shared variables are used for data communication.
    One of the application requirement is to retain the variable values eventhough PC is rebooted or started after crashing. 
    As per the my understanding, the variable values will retain eventhough the PC is rebooted. But here i can observe a paculiar problem like some library variables are retaing the values while some others not. I enabled logging for all the variables.
    I tried many ways. like logging enabled, logging disabled, changing variable names, changing process names etc... But i am not getting a consistent behaviour.
    I hope some you can help me in solving this issue.. "How Can i retain the Shared Variable Values after PC rebooting"
    Thanks and Regards,
    Mir

    Hi Blackperl,
    Thanks for the post and I hope your well. 
    What do you mean by not getting consistent behaviour.. this will all depend on excatly when the crash happens i.e. before the write or after. 
    Surely a better method would be to log the data to a file during the reboot...
    I beleived the value read back
    will be the default value for the shared variable's data type.
    The LabVIEW DSC 8.0 module adds more functionality to the shared variable, including initial values and alarms.
    If you enable an initial value on a shared variable, when the variable
    engine comes back on-line it will default to this value. Setting a bad
    status alarm for the shared variable is also a good way of handling
    this type of event. Additionally, if you are using a LabVIEW Real-Time
    target such as Compact RIO or Compact FieldPoint, it is appropriate to
    consider hosting the shared variable engine on the real-time target.
    These devices have watch-dog capabilities and are typically the
    hardware controlling the critical pieces of an application. Most
    Windows or PC-based targets do not have these fail-safes.
    I guess, if you could explain to me again that would be great. From my point of view, if I have a cRIO and a Windows PC. If the windows PC crashes, the cRIO will still update its shared variables. Then once the PC has started up its own shared variable engine, and the bindings are loaded, it will once again continue to update its copies of the variables.
    Please let me know what you think,
    Kind Regards,
    James.
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

  • How can I retain hyperlinks while saving a webpage as PDF via Print?

    How can I retain hyperlinks while saving a webpage as PDF via Print?
    This is the title of an apple forum question, and it is a bug in both Safari 5.1.3 and under, and I find it to also occur in Firefox browser (at least 9.* 10.*, 11.0), running on Lion OS (10.7.2, 10.7.3). See:
    https://discussions.apple.com/thread/3212301?start=0&tstart=0
    Under the newer Mac OS mentioned, and Firefox 10.2, 11.0, 9.*, if I select:
    File -> Print -> PDF -> Open PDF in Preview"
    (and view / save the PDF in Preview, you will see none of the links in the original web page are active
    or using
    File -> Print -> PDF -> Save as PDF...
    same problem. Try this using any Wikipedia page, for example.
    When this problem was posed in Apple forums, by a user of the Safari browser, it was found to be a bug (since Aug 2011) fixed in a Safari browser build 5.1.4 circa Jan 2012. I tried the newer Safari browser and sure enough the problem went away (except that links embedded in the PDF no longer appeared as blue text - ARGH - but "hover over" with the cursor showed the link and clicking the link in Preview viewer activated the link in a browser window).
    So I post this to the Mozilla community, please fix this 'cause I don't want to have to switch over to Safari browser every time I want to archive a PDF with active links!!!!
    P.S. I did a spot-check and with the newer add-on Enjoy Reading 1.0.1 and FF11.0. When the Enjoy reading formatted version appears in the browser window, all URLs/links are preserved and highlighted in blue, but when I print that browser window as PDF, the links are dead (don't work) even though they appear in blue in the PDF.
    So, what's going on, can the Safari fix be researched and applied to FF?
    Also, on some forums, people are responding, Well, try installing Acrobat reader. Well, I don't want to, Preview reader has worked fine for me for years.

    Thanks jscher2000.
    RE: -- '''Generally speaking, PDF converters that work by intercepting a print job do not have access to the URLs behind links in the page.''' --
    I cannot say I agree. I could email you a PDF clipping or two (generated from Safari on Mac OS, in its native capability with no add-ons) that shows you otherwise. When I used PC platforms I did have to install PDF converters (tried both free and expensive ones) that did what I describe.
    I cannot try the add-on you mention, '''Print Pages to Pdf.''' in Firefox. It shows in my browser and Mac OS platform "Not available for your platform." So I am guessing it was written for the PC version of Firefox.
    The Mac OS has had a native PDF-creation functionality for as many years as I have been using it; I used PC prior to that, Win3.1 through XP and NT. And on my PC, I bought (and at work, my employer bought $$$, I had to justify three levels up to management the ability to create PDFs on my work PC) some Adobe functionality to CREATE pdf's (readin's free and easy, makin' em's costly on the PC).
    I've gone and dug through some of my (Mac) doc and clipping archives, and I find that stuff I created after about Dec 2008 or so seems to eliminate all link functionality. When viewed in the Apple native "Preview" application (sort of Apple's equivalent to Adobe Acrobat reader, ships with the OS): link tags are highlighted/tinted, clicking a link opens a (default) browser and takes you there; hover-over the tag text shows the actual link. (Of course, not all old links are still VALID or point to the desired source.)
    I could, in Safari or FF browser window and with no add-ons or Adobe paid products whatsoever, use the native OS method to create PDF's from any application (word processor, spreadsheet, browser, etc) via the menu File -> Print -> Save as PDF menu and create a PDF that had active hyperlinks. In Apple OS Lion 10.7.3, I still can't when it uses this broken WebKit interface, links are "dead" as a doornail until a fix is distributed in WebKit for a future Lion release. It seems this functionality died at least as far back as Leopard OS 10.6.8, but don't quote me on that. Also, my version of Pages 2009 version 4.1(923) (sorta like Word) STILL creates a PDF document that preserves (1) text hyper-links within the document, and (2) web links (in the PDF) that open the browser. I just made a test document.
    When all you can see in the PDF is the tag text, there is nothing to copy-paste to follow any link. Also, hypertext links are often used by authors to create links to other points in a document: now even *that* is broken in the PDF version of the documents I retrieve from the web and print from FireFox (Broken in Safari 5.1.3 and earlier but fixed in 5.1.4).
    Try this on the PC, in your browser and print a news clipping as PDF, do the links in the PDF work? What products do this, and what don't? I would bet the machine with a full Adobe suite this will work flawlessly. (Why should a PC user have to pay hundreds of $ to create this functionality in what I thought was an open standard (PDF)? But that's talkin' religion, let's not start that.)
    Some folks might say,
    go online and find the original source doc in your browser. Or,
    go and add those links manually using the Preview edit add-link capability (hunh? no thanks) , or
    save each item worth saving as an HTML archive instead of a PDF (argh, creating a whole directory in the process, I might add, including ads). Or,
    who needs PDFs, everything is online.
    Or, buy some Adobe product.
    I think they miss my point. This is a real strange dumbing-down of archival PDF documents, or at least a destruction of the ability to use PDF as an archive that retains its links and references.
    C.F. the guy who has archives of scientific papers, and the old material all cross-references nicely but after date X there are no working links.

  • We can't export as .m2ts files?? how can i retain full quality?

    so we can import .m2ts files into CS4, we can edit them in CS4, but we can't export them out of CS4?
    how can I retain full quality?

    i see, well i have the hdr-sr12. you can export to h264 blu-ray, then do the following - NTSC, 1920x1080, framerate(mostly you would want 29.97), Field order: UPPER, Profile: HIGH, LEVEL 4.0, VBR-2-pass: 16mbps target rate with max of 18mbps. After that, export and see how it looks like on VLC or windows media player.

  • How can I unfreeze my iphone 5 after trying to download OS update?

    How can I unfreeze my iphone 5 after trying to download OS update?
    I've got the black screen with the white Apple and the horizontal download bar (little white dot at the left end).
    I pllugged it in, selected the OS update and after about an hour nothing happened so I diconnected it from the charger.
    The phone won't start, stop, shut down, or continue.
    Can anyone help, make a suggestion?
    Thanks in advance....:)
    Marshall

    modular747,
    Had same problem, got answer from supprot community and it worked.
    Hold down your power bar (on top) and your Home button (on face at bottom) for about 10 - 20 sec. and your phone will be restored - nothing lost or changed.  Worked like a charm for me 20 sec ago.
    Good luck

  • How can I turn off the laptop after restoring it to factory settings?

    Hello everyone
    I am selling my Portege R830-10Q so I want to restore it to factory settings (out-of-box state) AND THEN TURN IT OFF.
    I have successfully brought the laptop to factory settings by using the _TOSHIBA Recovery Wizard_ and choosing *Recovery of Factory Default Software (Recover to out-of-box state)*. However, at the end of the recovery process and after everything is re-installed I was not able to TURN OFF the laptop. I was only given the option of restarting it. After restating it, the Windows set-up process starts.
    I don't want to set-up Windows, i.e. language, keyboard, user account, etc. I want to leave the Windows set-up for the person who buys the laptop from me. How can I switch off the laptop after the system recovery without having to set up Windows?
    I'd really appreciate your help.
    Regards
    Pedro

    When recovery procedure is finished and you are asked for restart just press power button and switch it off. I think it only thing you can do.
    Anyway, why not to start Windows and go through setup option. New owner can change this basic settings anyway. As username put Admin and language and keyboard can be set as default.
    For instance, if you have German recovery image set everything to German. New owner can change it anyway.

  • How can you get your submit buttons to be a single click instead of the default double click?  (The

    How can you get your submit buttons on the quiz template to be a single click instead of the default double click?  (The option to choose double click or not is not showing in properties for this).

    Hmmm... Submit button doesn't need a double click at all. Maybe you are talking about the two-step process? When you click on Submit, the feedback appears with the message to click anywhere or press Y. Is that what you are talking about? If you are talking about a real double-click, something must be wrong in your file. And which version are you using?
    http://blog.lilybiri.com/question-question-slides-in-captivate
    Lilybiri

  • How can we place a push button in ALV  report

    hi
    could anybody inform me
    how can we place a push button in ALV  report
    thanx
    regards
    kals.

    Hi kals.
    please have a look at demoprogram
    SALV_DEMO_TABLE_FUNCTIONS
    BCALV_GRID_05
    Regards
    Bernd

  • HT1414 how can i activate my iphone 3gs after upgrading to ios6? it could not activate....

    how can i activate my iphone 3gs after upgrading to ios6? it could not activate....

    If your phone was previously hacked to unlock it, when you updated the hack was removed and it's re-locked to the original carrier.  The phone will now activate and operate only with that original carrier.

Maybe you are looking for

  • My iTunes freeze when I connect my ipod classic

    I had to restore my iPod, unfortunately, because a notification that my iTunes couldn't read my iPod for an error appeared. Now I restored the iPod, and when I plug in it, my iTunes failed, freeze, didn't work. So I uninstalled the iTunes, reinstalle

  • Corrupt Pptx files. Need to repair them. Please help!

    Hey guys, there is big mess over here.  Here I quote: I made some presentation files for promoting our new business. I showed them to my boss. She was quite happy with my work and asked me to send them to our clients. Next day I sent them to all our

  • Error in SLG1 transaction in CRM system

    Hi exports, We are getting error in application log in SLG1 T.code in CRM system while the system monitoring. Error Conclusion  :Determinaiton of Component from SCR Failed" Details are:   USER   External ID                                    Object T

  • My computer crashed.  I bought a new Mac Book Air, but my Photoshop CS4 won't download.

    My computer crashed.  I bought a new Mac Book Air, but my Photoshop CS4 won't download.  It keeps wanting a serial number from my last product.  I put it in, but it isn't taken.  I am frustrated and furious!  What can I do?

  • Smartform - text module - qualifying event

    Hi all, Once more a question: E-recruitment 6.0 Smartforms with invitation letters (for example for an interview) In the recruiter's portal we use a 'qualifying event' to 'set' an appointment' , date, time, place etc. We use the input from this refer