Is there any way to swap out the 'Widget Note' icon or have it triggered?

Hi,
Is there any way to swap out the 'Widget Note' icon?
Not only is it bad artwork, I have a cool custom button that I wanted to bring up the Note widget. Also, when I put the Note Widget on top of my custom button, it blocks the button's glow for the mouse over state, wven when I choose the option of making the widget transparent.
Any way my custom button could trigger the Widget Note to launch?
Any help would be much appreciated.
cheers

Hi digitalnoob
To use your custom icon image instead of default Note icon, you would have placed your image on top of the "transparent" widget.
To make these objects available on click of some button:
Group these two objects.
Make this group invisible in output.
Add the button which should trigger this widget.
On the button, set the action to Show this group.
To hide this group on 2nd click you need to use some advanced action and variables. Else, you can have a different button to hide this group.
Sreekanth

Similar Messages

  • Is there any way to find out the serial number to an old ipod that i cannot find?

    theres a recall on the od ipod nanos the 1st generation ones and i purchased one and im not sure when and currently i am unaware of the whereabouts of the ipod. is there any way to find out the serial number without actually finding the ipod to confirm when i purchased it? thank you any help will be appreciated.

    iPod: How to find the serial number

  • Is there any way to stretch out the keyframes/action?

    So I created an animation with a guy swing his left arm back and forth. The problem is his arm is swinging too fast. Is there any way I can extend the whole action, rather than deleting all the keyframes and redoing it?
    Thanks!

    You should be able to click down and drag keyframes down the timelime to spread them out.  Also, you should be able to insert frames between keyframes (select frames between -> right click the selection -> Insert Frames).

  • Is there any way to find out the dependency information for column of view?

    Does Oracle provide some view / table / pl/sql pkgs to find out the dependency information for column of view ?
    For example, there are two table mytable1 (col1 varchar2(10), col2 date) & mytable2 (col1 varchar2(10), qty int), and there is one view myView as
    select mytable1.col1, col2, qty from mytable1 inner join mytable2 on mytable1.col1 = mytable2.col
    Can I get some information such as myView.col1 is come from mytable1.col, myView.col2 is come from mytable1.col2, myView.qty is come from mytable2.qty
    ?

    I can get the information about the columns list in table/view from ALL_TAB_COLUMNS table, but I wish to know the column in the view is come from which original table's column.
    Is there any way to find it out from Oracle meta data / through any PL/SQL packages ?

  • Is there any way to clear out the notifications from iMessage Beta?

    I installed iMessage beta to sync up my iPad and iChat chats... Except, now iMessage claims I have one new message but in actuality I don't. Does anyone know how to get it to stop saying 1?
    I've closed all the chat windows, I've restarted the app...

    I found this document on how to restrict imessage
    http://www.bewebsmart.com/ipod-ipad-iphone/how-to-restrict-imessage/

  • Is there any way to find out how much battery life you have on you're Bluetooth Magic Mouse and Apple Keyboard on your Windows Partion?

    I'm a avid gamer and for my gaming needs most of the games that I love require Windows ,but due to my constant clicking I drain my mouse battery very fast so I always have backups. Is there anyway I can check how much mouse battery I have left so I can be sure before I start a gaming session that I'll be fine? Switching back and forth between partions is an option ,but I find it as more of a last resort then something to do normally.
    Thanks in advance!

    call them, tell them you NEED a new battery installed, and they need to tell you when they can do it.  That is their job to help you! Give pushback if necessary.

  • Is there any way of finding out whether an e-mail I have sent has been opened?

    No further details - apologies if there's a simple solution, I'm new to this.

    Firefox doesn't do email, it's strictly a web browser.
    If you are using Firefox to access your mail, you are using "web-mail". You need to seek support from your service provider or a forum for that service.
    If your problem is with Mozilla Thunderbird, see this forum for support.
    [http://www.mozillamessaging.com/en-US/support/] <br />
    or this one <br />
    [http://forums.mozillazine.org/viewforum.php?f=39]

  • Is there any way to hook into the SQL report pagination process?

    I have a SQL report (based on EMP) with a radiogroup row selector.
    The scenario 1 and 2 are in place
    1) When the employee row radio group is clicked the P900007_JOB the text item is populated with the JOB for the employee.
    2) When the page is initially displayed or submitted via the button the first row’s radio group is programmatically clicked and therefore populates the additional job information in P900007_JOB
    Info (radio Group) Employee No Name
    (+) 7369 SMITH
    () 7499 ALLEN
    () 7521 WARD
    P900007_JOB CLERK
    1-3 Next>
    Once the report has been displayed and the next or previous pagination is used then none of the radio groups will be selected and the data in the P900007_JOB text item will still display the job of the last selected employee row.
    What I require is on pagination some sort of mechanism to either
    a) Call the page_init() that should then set the first row as selected and populate the text item via the programmatic click. (preferred option)
    b) OR blank out the additional text item P900007_JOB.
    Is there any way to hook into the pagination process?
    I have a work around – Set the ‘Enable Partial Page Refresh’ to ‘No’ but this means a full refresh every time the pagination is used.
    Details of my page
    Report Region (Based on EMP table) – radio group as a row selector
    select     APEX_ITEM.RADIOGROUP(1,EMPNO,'X21',null) CHECKRG, EMPNO,
         ENAME,
         JOB
    from     EMP
    Report Attributes -
    Report template :- P900007_ROWTEMPLATE (custom template see later)
    Report Attributes Substitution :- id="emp_report" (used in page_init see later)
    Enable Partial Page Refresh :- Yes
    Columns – All columns are selected as show but job is left out of the template below.
    P900007_JOB - Text item in report region (disabled does not save state). Populated with the employees job when the radio group is clicked.
    Control region :- HTML region that just holds a button <GO> just to submit the page and redirect back to the same page.
    P900007_ROWTEMPLATE (named column row template)
    Row template 1
    <tr style="cursor: hand; cursor: pointer;" onmouseover="row_mouse_over(this, 1)" onmouseout="row_mouse_out(this, 1)" #HIGHLIGHT_ROW# ">
    <td class="t15data" onclick="selectRow('#JOB#');">#CHECKRG# </td>
    <td class="t15data">#EMPNO# </td>
    <td class="t15data">#ENAME# </td>
    </tr>
    Before rows
    <table class="t15standard" summary="" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#" >
    <th class="t15header" #ALIGNMENT# >Info</th>
    <th class="t15header" #ALIGNMENT# >Employee Number</th>
    <th class="t15header" #ALIGNMENT# >Name</th>
    After Rows
    <tr>
    <td colspan="99" class="t15afterrows">
    <span class="left">#EXTERNAL_LINK##CSV_LINK#</span>
    <table style="float:right;text-align:right;" summary="pagination">
    #PAGINATION#</table>
    </td>
    </tr>
    </table>
    *Javascript in page Header*
    <script src="#WORKSPACE_IMAGES#apex_show_hide_region.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    function selectRow(pJob)
    /* console.log('pete got here!'+pJob)*/
    $x('P900007_JOB').value =pJob;
    /* Start Page init*/
    function *page_init*()
    /* Used to set radio groups on reports */
    /*console.log('START pete got here!');*/
    var is_checked = false;
    var l_check = $x_FormItems($x('emp_report'), 'radio');
    /*Loop and set flag if checked*/
    for(var i=0,len=l_check.length;i<len;i++)
    if(l_check.checked){
    is_checked = true;
    /*end loop*/
    /*If none checked force a click*/
    if(!is_checked){
    /*no longer need as doing click below*/
    l_check[0].checked=true;
    /*Force a click on the first radio group - extra details should then be
    populated*/
    var l_click = l_check[0].click();
    /* console.log('END pete got here!');*/
    /*END page_init*/
    // -->
    </script>
    *Application shared component.* – This fires a DB packaged procedure when the page is loaded.
    P330_PART_NO_HIST
    Process Point On load after Body region
    Process Text show_hide_memory.part_no_history_details();
    *Packaged Procedure* – This kicks off the page_init javascript in the header (earlier) to click on the radio group in the first row.
    PROCEDURE part_no_history_details AS
    BEGIN
    htp.prn('<script type="text/javascript">' || CHR(10));
    htp.prn('<!--' || CHR(10));
    htp.prn('page_init();'|| CHR(10));
    htp.prn('//-->' || CHR(10));
    htp.prn('</script>' || CHR(10));
    END part_no_history_details;
    Thanks Pete
    Edited by: Pete @ LSC on 26-Jan-2010 06:56

    Anybody any ideas? Should I be looking down the route of using my own pagination buttons and adding my code to this?
    There seems to be a routine $a_report that I can use for the pagination but I am finding it difficult to get the current first and last record values that I would need to pass. I've seen references to below in the form but when I'm using partial refresh they do not seem to change.
    wwv_flow.g_flow_current_min_row
    wwv_flow.g_flow_current_max_rows
    wwv_flow.g_flow_current_rows_fetched
    wwv_flow.g_request
    Thanks Pete

  • The other day I had to reset my phone because i pulled it out from my laptop when it was updating. I then tried to restore it but i clicked the wrong option and it has restored all of my stuff from 2 years ago, is there any way to get back the stuff I had

    The other day I had to reset my phone because i pulled it out from my laptop when it was updating. I then tried to restore it but i clicked the wrong option and it has restored all of my stuff from 2 years ago, is there any way to get back the stuff I had

    maggielou wrote:
    I thought that I had backed up my pictures to icloud, but when I looked online at icloud, I don't see pictures listed.  However, a few of the recent pictures have shown up on my phone.
    IHow could I get these from my MacBook to my phone?
    Thanks again.
    When you log into you icloud account on your computer you are viewing data that you sync to icloud not the backups.  You can't view the backups.
    Look at the two links I provided.
    You still didn't answer any of my two questions I asked.

  • I just downloaded a video in HD, but I found out after the download was over my computer doesn't play HD videos. Is there any way I can return the video and get the SD version, or upgrade my computer so it will play the HD video?

    I just downloaded a video in HD, but I found out after the download was over my computer doesn't play HD videos. Is there any way I can return the video and get the SD version, or upgrade my computer so it will play the HD video?

    From http://support.apple.com/kb/HT3209
    When you purchase an HD video on a supported device or computer, only HD video will be downloaded. To download the SD version, you need to download the video again from your Purchased page. Conversely, if you purchase an HD video on an unsupported device, the SD version will be downloaded. Then, you will need to download the HD version from your Purchased page. Learn more about downloading previous purchases.

  • Is there any way to put all the music FROM my iPod back onto my computer?  My school tech person not only wiped out my iTunes, the wiped out my back-up hard drive.

    Is there any way to put all the music FROM my iPod back onto my computer?  My school tech person not only wiped out my iTunes, the wiped out my back-up hard drive.

    Hello cgbuehling
    You can, but only the purchases that were made from the iTunes Store. Other content that was imported from a CD or other sources will not transfer over.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/ht1848
    Regards,
    -Norm G.

  • Hello&Help, Ive just swapped to firefox from Windows explorer, When i download music from (soundcloud) i cant seem to save the files in to my music documents, it goes striaght to windows player, Is there any way i could change the setttings?? Cheers

    Hello&Help, Ive just swapped to firefox from Windows explorer, When i download music from (soundcloud) i cant seem to save the files in to my music documents, it goes striaght to windows player, Is there any way i could change the setttings?? Cheers

    Hey Miramo, Ive got it sorted now. :-)
    Thanks for all ya help.

  • I bought an LG phone and a $35 dollar plan card. Less than a week later it said I was out of time for texts. Apparently it only gave me minutes, not the plan I wanted. Is there any way I can get the plan without paying again?

    I bought an LG phone and a $35 dollar plan card. Less than a week later it said I was out of time for texts. Apparently it only gave me minutes, not the plan I wanted. Is there any way I can get the plan without paying again?

    So you bought a plan and used it all and want another one for free? I understand you thought it had more texts or whatnot but they won't do that since you already used the other plan.
    That's like going to McDonalds and ordering a double cheeseburger, them giving you a double cheeseburger, you eating it and then realizing you wanted a double quarter pounder and expecting them to give it to you free.

  • Is there any way to print out information from the Health Dashboard such as Blood Pressure readings to take to doctor?

    I am having to keep track of my blood pressure for several weeks and then take them to the doctor just to make sure I'm doing okay.  Is there a way to print out the readings that I have entered into the dashboard on the Health App?  Or am I going to have to copy down all those weeks worth of readings by hand?

    Thanks for the reply. I hope in the near future they make it an option. Maybe that you can email it like you can with notes.
    I will have my phone with me but they will need a hard copy to scan in to my records or at least to enter manually in to their system. Maybe I will just start keeping track of my health info in the notes app again so I can email myself a copy to print.

  • Is there any way to swap aliases with another account?

    Hello,
    Is there any way to swap an alias from a dot mac account to a regular Apple ID?
    The Discussion alias that I would like is currently on an expired dot mac account which I have no intention of resubscribing to, and on the Apple ID I use for everything else (iTunes, Apple.ca Store) the discussion alias is somehow my mother's name (I guess it is because it is her credit card on iTunes). I can access to both accounts, is there any way I can delete the alias from the old dot mac account and then change my current Apple ID to said alias.
    Many Thanks,
    JJ MacLean

    Hi JJ!
    Although you can't change the Alias of the account you are using, you can create a new Discussions Account, with an Alias that you prefer.
    You cannot delete your present account. Just stop using it, after you have created a new one.
    You can use all of the same info in the new account, Email address, User name, etc, just be sure to insert a new Alias of your choosing. At this point you could try entering the expired .Mac Alias name.
    But your Level(0), Points(0), Total Posts(3), Total Posts Online(3) and Registered Date(9/7/05), will not be transferred.
    In the new account, your Post Counts, Points, & Level Status will all start at 0. Your Registered Date will be the date you create the new account.
    Your old account, with your previous counts & level, will still be viewable, under the old Alias.
    After you quit using the old account, those posts, will be archived. What that means is, that if there are no additional responses in the Threads they reside in, the Topics will get continually pushed down on the Topics list. After a certain amount of time, maybe 1 to 3 months, the Threads will be locked, so no responses can be entered. But the Threads will not disappear.
    The Topics that you started using the old account, will show your Old Alias, in the Author field of a main forum page, but eventually, readers will have to keep going to the succeeding pages to view them.
    If someone were to do a DiscussionsSearch, using these parameters:
    Restrict by Category or Forum: All Categories
    Restrict by Date Range: All
    Restrict by Username: Your Old Alias
    all of your posts, created since about 11/13/05, would be found.
    To create a new account,
    Log out of Discussions. You also may have to delete the Apple Cookies in your browser preferences, but I'm not sure this is necessary. Then follow either of these instructions.
    -How Do I Create My Account?
    If you haven't signed up for an Apple ID for the Apple Store or AppleCare Support website (or forgot your old one), you can create a new account on the My Info webpage. Just click the "create one" link on the right side of the My Info page. Choose your country location and preferred language from the appropriate pop-up menus, then click Create Account. In the resulting page, enter a unique name (such as your email address) in the Apple ID field and fill in your other relevant information accordingly (fields marked with * are required). Click Continue to complete the process.
    -To register, click Login in the sidebar on the right side of the Discussions page. In the resulting page, click the "create one" link at the bottom of the page, then click "create one" in the subsequent page and follow the instructions to create an Apple ID. For more information, see the Apple ID FAQ page.
    Those instructions, and more info, can also be viewed by clicking on
    ?Help & Terms of Use, in the right column of Discussions pages.
    ali b

Maybe you are looking for

  • Detect flash player version of published SWF

    Hi I have a swf file (let say child.swf). Once It loaded I want to know parent swf was published on flash player 9 or flash player 10. How to find that? Question: 1)parent.swf loades child.swf 2)after child.swf loaded --> need to check parent.swf is

  • Archive Data on XI ...how it helps

    Hi All, I have read that xi message are saved in certain cluster tables. So if we archive data on xi server, some file willbe created on XI server machine.. does on arvching XI messages are deleted from cluster tables. how does arching help in reduci

  • Page to import data

    What can i create one page to import data in my application?

  • Invalid checksum for 8.0.1 Linux updater

    I hope someone from Adobe is reading this - on the updates page http://www.adobe.com/support/coldfusion/downloads_updates.html the MD5           Checksum for 8.0.1 Linux updater http://download.macromedia.com/pub/coldfusion/updates/801/coldfusion-801

  • Reistallation

    i have a upgrade of to the creative suite 5.5 design premium and i am trying to reistall it as my computer crashed but now my seriel number is invalid it says