Depressed Icon is not working for af:goImageLink

Hi All,
I am using JDeveloper 11.1.1.4.0 and trying to create a menu having some af:goImageLink components. I have given images in its Icon, hoverIcon and depressedIcon positions. Now everything is fine except depressedIcon.
Actually my requirement is when I click the af:goImageLink it should show the image available its depressedIcon position. Again when I click any other af:goImageLink then the previous should show the image available in its Icon position.
Is there any configuration required for implementing this or anything else which I am mission here? Request your suggestion.
I am providing the component source that I am using currently :
<af:goImageLink id="pt_gil4" icon="/images/test.jpg"
destination="/faces/pages/test/test.jspx"
hoverIcon="/images/test1.jpg"
depressedIcon="/images/test1.jpg"/>
Thanks,
Ayan

Hi Kaelekulin7,
Dictation is one of my favorites features on the iPhone as well!
If it is working in some apps and not others, I would suggest you:
1) Close the Notes app
2) Reset the iPhone
3) Restart the iPhone
iOS: Force an app to close
From the Home screen, click the Home button twice.
Tap and hold on the app.
When it starts to jiggle, tap the red dot with the white minus sign to close it.
Double-click the Home button and try opening the app again.
iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
Restarting your device
Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider.
Press and hold the Sleep/Wake button until the Apple logo appears.
Note: Reset your device only if you are unable to restart it.
Resetting your device
Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
I hope this information helps ....
Have a great day!
- Judy

Similar Messages

  • Today my iphone 5's microphone icon is not working for Notes.  Worked yesterday...

    I have been using my iPhone 5's app Notes to dictate my inventory and send it to my computer rather than typing in everything... until today. The microphone icon in Notes is gray.  I checked Messages and Mail to find that the microphone is operable within those apps.  Where do I go from here?

    Hi Kaelekulin7,
    Dictation is one of my favorites features on the iPhone as well!
    If it is working in some apps and not others, I would suggest you:
    1) Close the Notes app
    2) Reset the iPhone
    3) Restart the iPhone
    iOS: Force an app to close
    From the Home screen, click the Home button twice.
    Tap and hold on the app.
    When it starts to jiggle, tap the red dot with the white minus sign to close it.
    Double-click the Home button and try opening the app again.
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    Restarting your device
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider.
    Press and hold the Sleep/Wake button until the Apple logo appears.
    Note: Reset your device only if you are unable to restart it.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    I hope this information helps ....
    Have a great day!
    - Judy

  • Native deployment (self-contained) icon integration not working for .exe?

    I am having issues replacing the default icon that is used for the native installer. I referred to this guide: http://docs.oracle.com/javafx/2/deployment/self-contained-packaging.htm#BCGICFDB
    Using the latest stable v. of JavaFX and NetBeans. The tutorial only had sample instructions for Mac OSX, but I assume they are similar to Windows. What I did was create 2 directories inside my projects root folder (given that my project is called test ) and place an .ico file:
    test\package\windows\test.ico
    When I dist build the project I get the following message: +Using default package resource [application icon] (add package/windows/test.ico to the class path to customize)+
    Does this work for anyone? Any idea where the error might be in my case?

    Thank you kindly for you reply.
    Hmm, right on the tutorial page it is stated:
    *"_If you created a JavaFX project using Netbeans 7.2 or later, then the JavaFX Ant tasks are predefined, and "." is already added to the classpath by default._"*
    Is this an error in the tutorial then? Indeed quite odd in that case. What you're currently referring to is this:
    http://i.imgur.com/8f9Db.png
    right?

  • Icon preview not working for occaisonal file

    Hi y'all.
    I'm using Illustrator CS4 and there is a particular file that I cannot seem to save with an icon preview.
    And yes, I've selected pdf compatibility, with no success.
    Could it be that I'm resaving an old file that was originally created in Illustrator 10?  Could it be related to the use of many patterns?
    Any other suggestions?
    B.

    Hello to both of you.  Sorry for the delay in response!
    Yes, I've tried doing a "save as" - even to different places on my hard drive.
    And yes to the other suggestion: my folder prefs do say show icon preview.
    Any other thoughts?  Could it have something to do with the patterns I've used?  Patterns can do weird things, I hear....
    B.

  • Cascading Select Lists - Not Working for me

    I am trying to implement Denes Kubicek's Ajax Cascading Select List solution.
    http://apex.oracle.com/pls/otn/f?p=31517:119
    But it is not working for me.
    I'm a newbie to APEX and checked the forum for advice on cascading select lists. I saw the thread for
    "Cascading Select Lists - Not Working" posted by sue and the replies by Varad Acharya, but I'm still
    having issues of not seeing the alerts, not able to run the pl/sql process in SQL Workshop, and not
    getting the expected results.
    I have a list of countries (US - USA, CA - CANADA, etc.) and a list of states for each country. When a
    user selects a country I would like to show the list of states within that country.
    This is what I've done so far:
    Defined an application process:
    Process Point: On Demand: Run ... by a page process.
    Name: CASCADING_SELECT_LIST1
    Process Text:
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<select>');
    HTP.prn ('<option value="' || 99 || '">' || '- All States -'
    || '</option>'
    FOR c IN (SELECT state_code || ' - ' || state_desc d, state_code r
    FROM tbk_state
    WHERE country_code = :cascading_selectlist_item_1)
    LOOP
    HTP.prn ('<option value="' || c.r || '">' || c.d || '</option>');
    END LOOP;
    HTP.prn ('</select>');
    END;
    defined and application item:
    Name: CASCADING_SELECTLIST_ITEM_1
    Build Option: - No Build Option -
    Created a 'Form on a table with report' as follows:
    Page 5: Report on TBK_HARDWARE_LOCATION
    Page 6: Form on TBK_HARDWARE_LOCATION
    in HTML Header of the page attributes for 'Form on TBK_HARDWARE_LOCATION' I have:
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='"DELETE_CONFIRM_MSG"';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue)
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    On Page 6: 'Form on TBK_HARDWARE_LOCATION' I have the following items (plus some others):
    Name: P6_COUNTRY_CODE
    Display as: Select List
    HTML Form Element Attributes: onchange="get_select_list_xml1(this,'P6_STATE_CODE');"
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: COUNTRY_CODE
    Named LOV: LIST OF COUNTRIES
    Name: P6_STATE_CODE
    Display as: Select List
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: STATE_CODE
    Named LOV: - Select named LOV -
    List of Values definition:
         select state_code || ' - ' || state_desc d, state_code r
         from tbk_state
         where country_code = :P6_COUNTRY_CODE
         order by 1
    LIST OF COUNTRIES is defined as:
    select country_code || ' - ' || country_desc d, country_code r
    from tbk_country
    order by 1
    Now to the problem:
    I run page 5 (the report) to see the list of locations and then I try to edit a record (page 6). When I
    try to select a different country I get the following error (on IE):
    "Problems with this web page might prevent it from being displayed properly or functioning properly.
    In the future, you can display this message by double-clicking the warning icon displayed in the status
    bar.
    Line: 17
    Char: 5
    Error: Object expected
    Code: 0
    URL: http//cmrac4.cm.timeinc.com:7777/pls/htmldb/f?
    p=114:6:1413254636072443110::::P6_HARDWARE_LOCATION_ID:2
    I don't see any of the alert messages.
    I also tried to run the application process code in the SQL - Command Processor (I replaced
    :cascading_selectlist_item_1 with 'CA' or 'US') and got the following:
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh
    button, or try again later.
    Only one top level element is allowed in an XML document. Error processing resource
    'http://cmrac4.cm.timeinc.com:7777/pls/...
    <select><option value="99">- All States -</option><option value="X1">X1 - X1</option><optio...
    Can someone help me please?

    Varad,
    First, thank you for taking the time to try to help me with this problem.
    When I view the page's source code (here are the first few lines):
    <html lang="en-us">
    <head>
    <script src="/i/javascript/core.js" type="text/javascript"></script>
    <link rel="stylesheet" href="/i/css/core.css" type="text/css" />
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='Would you like to perform this delete action?';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    //alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    //alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue);
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    It looks like line 17 is:
    var l_Select = html_GetElement(pSelect);
    I'm still not sure why I'm getting this error and why it's not working?
    Thanks,
    Eti

  • My camera  icon is not working on my sms so i cant send picture with sms? what to do?

    My camera  icon is not working on my sms part?
    so i cant send picture with sms? what to do?

    Double tap Home button, delete Camera app in multitask-bar.
    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data
    By the way, picture go through as MMS not SMS, do you have a SMS/MMS plan with your carrier?
    Have you spoken with them?

  • Book mark Icon is not working in Adhco queries?

    Hi,
    There is an Adhoc query created by the end user.The book mark icon available is not working but the CONTEXT MENU on any of the values is producing the book mark properly.Can just any one help me to find the solution of this?
    Why BOOK MARK ICON is not working?

    Hi,
    I observed the same, Book Mark Button availabe on web report is not working but Book mark URL can be saved with the context menu -> bookmark.
    need to check the Web template for  Book Mark.
    Bookmark URL can be saved and that URL is used to go fastly to the requied navigation fastly, that is the use of Bookmark
    hope this helps
    Regards
    Daya Sagar

  • TS1702 After I updated my new Ipad  with IOS 6, now Map& Dictation icon are not working. please help me

    After I updated my new Ipad  with IOS 6, now Map& Dictation icon are not working. please help me

    Thank you wjsten for your soon reply. Unfortunately on these days I'm in a country that Apple don't have any retail store here and for sake of time I prefer to fix it myself to DHL it to the nearest country to use its warranty. Do you have any idea how can I fix it? Do you think it's a software issue?

  • My mail icon is not working after update ios 6.1.1 ????

    dear sir please give me soluction.
    my mail icon is not working after update of ios 6.1.1

    You can only purchase apps and other media for the county's sore in which yu are located. You account, included payment method, also must be associated with that country.
    Sam applies for updating apps. Note that not all apps are available in all country so y will not be able to update an app if you are in another country and that app is not available in that country or your account is not associated with that country.
    You can change the country and other things by:
    iOS: Changing the signed-in iTunes Store Apple ID account

  • Photoshop extension building not working for cs6, works for the rest

    I am building an extension for photoshop the manifest file is as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <ExtensionManifest Version="4.0" ExtensionBundleId="Kit" ExtensionBundleVersion="2.0.0"
      ExtensionBundleName="Kit" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <ExtensionList>
      <Extension Id="Kit.extension1" Version="2.0.0" />
      </ExtensionList>
      <ExecutionEnvironment>
      <HostList>
      <Host Name="PHSP" Version="[13.0,15.9]" />
      <Host Name="PHXS" Version="[13.0,15.9]" />
      </HostList>
      <LocaleList>
      <Locale Code="All" />
      </LocaleList>
      <RequiredRuntimeList>
      <RequiredRuntime Name="CSXS" Version="3.0" />
      </RequiredRuntimeList>
      </ExecutionEnvironment>
      <DispatchInfoList>
      <Extension Id="Kit.extension1">
      <DispatchInfo >
      <Resources>
      <MainPath>./index.html</MainPath>
      <ScriptPath>./Kit.jsx</ScriptPath>
      </Resources>
      <Lifecycle>
      <AutoVisible>true</AutoVisible>
      </Lifecycle>
      <UI>
      <Type>Panel</Type>
      <Menu>Beauty Retouching Kit</Menu>
      <Geometry>
      <Size>
      <Height>580</Height>
      <Width>250</Width>
      </Size>
      <MaxSize>
      <Height>580</Height>
      <Width>250</Width>
      </MaxSize>
      <MinSize>
      <Height>580</Height>
      <Width>250</Width>
      </MinSize>
      </Geometry>
      <Icons>
      <Icon Type="Normal">./pictures/thumb/Icon.png</Icon>
      <Icon Type="RollOver">./pictures/thumb/Icon.png</Icon>
      <Icon Type="DarkNormal">./pictures/thumb/Icon.png</Icon>
      <Icon Type="DarkRollOver">./pictures/thumb/Icon.png</Icon>
      </Icons>
      </UI>
      </DispatchInfo>
      </Extension>
      </DispatchInfoList>
    </ExtensionManifest>
    I tried this code for photoshop CC and CC 2014, it works for both but I couldn't get it to run for cs6 it gives the below error from the extension manager:
    so isn't Version="[13.0,15.9]" correct? why would it not work for cs6? thanks in advance.

    Hi,
    CS6 doesn't support HTML Panels but Flash ones, this should be the why the Adobe Extension Manager fails.
    You might find help here (Flash): Creative Suite Extension Builder and here (HTML): Extension Builder 3
    Davide Barranca
    www.davidebarranca.com
    www.cs-extensions.com

  • Brushes app question: does anyone know how to upload a brushes painting as a video? "Brushes Viewer" is not working for me ;-(

    Brushes app question: does anyone know how to upload a brushes painting as a video? "Brushes Viewer" is not working for me.
    Thanks! KAR

    Hi, Dave.
    If you're using the BlackBerry browser, you can't configure anything to bypass the RIM servers.  I believe you may do so by using the Opera browser, but I haven't tried it myself so cannot comment with authority.
    I hope that clears up the issue for you. 
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Mute icon is not working after the lollipop update

    Hi , I just found out that the mute icon is not working in my yoga tab . It used to work before the lolipop update This bug is troubling me alot while attending the official conference calls. Can anyone help me out with this? Regards, Deepika

    Hi Tokha,
    If you are having an issue with using AirPlay from your MacBook Air, I would suggest that you troubleshoot using the steps in this article - 
    iTunes: Troubleshooting AirPlay and AirPlay Mirroring - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Live Preview is not working for me

    Live Preview is not working for me.  I've read many other forums and tried everything and I still get the same issue that everyone else has mentioned.  I'm on Chrome  Version 34.0.1847.116 m .  I have multiple user profiles with Chrome so not sure if that makes a difference.
    Adobe Edge team, for a lightweight browser that should be easy to use, this does not make it easy.  Hopefully you can implement a fix soon that works for all cases as I was really looking forward to trying this out and I'm unable to.

    I am having issues as well.
    Running through the intro tutorials - Just the basic HTML tutorial files. When initiating live preview, I restarted Chrome as prompted for debugging, After restart the preview page loads fine a single time, works for about 10 seconds or so and then disconnects. I cannot get it to reconnect without restarting the program, but the same thing happens.
    Live Preview Error: Unable to Load Development Page
    The live preview icon remains orange - as if connected, but no changes write to the preview window in HTML or CSS.
    Ive seen the other threads, but none of those items seem to fix my issue.
    Anything I can do here besides wait for update? Love the basic product - the editing features are awesome, but until live preview + reliable FTP is set, I'll probably stick with current coding solutions.
    Running an Imac OSX 10.9.2
    Chrome 34.0.1847.116

  • I have an event in my calendar that was sent by someone who does not work for the company anymore and I am reminded 2 times a week. How can I remove it?

    I have an event in my calendar that was sent by someone that does not work for the company anymore and I am reminded 2 times a week. How do I delete it?

    Tap on the event to open the event. Click the 'Edit' button in the event bubble, then press the 'Delete Event' button at the bottom of the Edit pop-up. It's a little different for events that come through Microsoft Exchange, you tap the event to bring up bubble and click the 'Details' button, and then press 'Decline' to remove the event.

  • IPhone 6 External Mic not working for Siri/Dictation

    I am finding that the external mic on my iPhone 6 works for phone calls and voice memos, but does not work for Siri/Dictation.  When I plug in the earbuds, they work for everything (including Siri/Dictation).
    Was chatting to Apple support who had me reset all settings.  I thought that worked, but realized that after a reset, Siri is off and I was talking to "Voice control" (which works).  When I turned Siri back on, it does not work.
    I have two questions for the community to see if you can help:
    1- I have been assuming this must be a software problem since the mic does work for non-Siri access.  But is that true?  Is there a hardware component that Siri depends on which could be faulty here?
    2- If it is software, what action should I try to address it?  I have done a reset all settings already and that did not help.
    Doug

    Hi, everyone.  I talked to Apple Genius at Apple Store last week, she said it should be a software issue and I needed to reset my iphone 6 plus as a new device and I can not use the backup restore from my iCloud, it was because the microphone bug or glitch can be in the backup also. Ok, followed her advice, erased all contents and set my iphone as a new device , the microphone worked for an hour, but went bad again.  I used "voice memo" app from Apple to test the microphone. It is the best tool since it doesn't involve any provider's network and it doesn't need another person's phone to listen and test.  If you can hear your voice recording clearly, then the mic works.  I tested it 3-4 times a day for a few days now, half of the time the mic doesn't work.  So, set as a new device isn't working. The issue is intermittent and it comes and goes as it likes, so very annoying. I carry my Apple EarPods with me in these past few days ust in case I need to make important phone calls.  Will need to go back to Apple Genius this weekend for sure.  Will give update after the weekend.

Maybe you are looking for