Help: commandLink does not work.

commandLink does not work. It just simple refreshes the page, and not enter the Listener,( he listener work pretty well in other page).
Is it dataTable problem? If I not use dataTable but just use JSTL & JSF commandLink and it works fine.
--------------CODE---------------
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<link rel="stylesheet" type="text/css" href='<%= request.getContextPath() + "/style/styletable.css"%>'/>
<f:loadBundle basename="bundle.admin.Attribute" var="bdlAttribute"/>
<f:subview id="AttributeListView">
<h:form id="AttributeListForm">
<center>
<h:outputText escape="false" value="Text Here"/>
<br>
<h:dataTable id="AttributeTable"
columnClasses="list-column-center,list-column-right, list-column-center, list-column-right"
headerClass="list-header"
rowClasses="list-row"
styleClass="list-background"
value="#{list}"
var="attribute">
<f:facet name="header">
<h:outputText value="#{bdlAttribute.TitleList}"/>
</f:facet>
<h:column>
<f:facet name="header">
<h:outputText value="#{bdlAttribute.Category}"/>
</f:facet>
<h:outputText id="category" value="#{attribute.category}"/>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="#{bdlAttribute.Value}"/>
</f:facet>
<h:outputText id="value"
value="#{attribute.value}"/>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="#{bdlAttribute.DataType}"/>
</f:facet>
<h:outputText id="dataType" value="#{attribute.dataType}">
</h:outputText>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="#{bdlAttribute.Edit}" />
</f:facet>
          <h:commandLink action="#{Action.action}" styleClass="link">
               <f:actionListener type="my.AttributeListener"/>
               <h:outputText value="Edit"/>
               <f:param name="ID" value="#{attribute.attributeId}"/>
               <f:attribute name="COMMAND" value="getAttribute"/>
          </h:commandLink>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="#{bdlAttribute.Delete}"/>
</f:facet>
     <h:commandLink action="#{Action.action}" styleClass="link">
          <f:actionListener type="my.AttributeListener"/>
          <h:outputText value="Delete"/>
          <f:param name="ID" value="#{attribute.attributeId}"/>
          <f:attribute name="COMMAND" value="deleteAttribute"/>
     </h:commandLink>
</h:column>
</h:dataTable>
<h:messages styleClass="validationMessage"/>
</center>
</h:form>
</f:subview>

Hi,
I was casually reading your code and noticed the line:'
<h:commandLink action="#{Action.action}" styleClass="link">
I recall from other posts that if you want the method on the bean (of the clicked/ selected row) to be called, you probably need:
<h:commandLink action="#{attribute.action}" styleClass="link">
Ofcourse you would need to have a method called action in the class of instance "attribute". This method should return string for navigation etc.
Looking at your code again:
<h:commandLink action="#{Action.action}" styleClass="link">
<f:actionListener type="my.AttributeListener"/>
<h:outputText value="Delete"/>
<f:param name="ID" value="#{attribute.attributeId}"/>
<f:attribute name="COMMAND" value="deleteAttribute"/>
</h:commandLink>
I don't understand why you need:
<f:actionListener type="my.AttributeListener"/>
As I am not coding a lot of JSF I am only answering from what I have read.
All the best,
Vinay

Similar Messages

  • JSF : Dynamic link generated by commandLink does not work

    In the following code, without <f:verbatim>, it is giving "Duplicate ID in the view" Exception. But with <f:verbatim>, the links generated by commandLink does not work. Please help me to solve this problem.
    Thank you in advance.
    Regards
    Abdul
    <%-- jsf:pagecode language="java" location="/src/pagecode/eservice/DisplayMoreEServices.java" --%><%-- /jsf:pagecode --%>
    <%@ include file="/includes/g_common_include.jsp" %>
    <%@page import="java.util.Map"%>
    <%@page import="bh.com.cio.egov.EGOVConstants"%>
    <%@page import="javax.portlet.PortletSession"%>
    <%@page language="java"%>
    <%
         PortletSession ses = renderRequest.getPortletSession();
         Map eServiceCatMap = (Map) ses.getAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT);
         renderRequest.setAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT,eServiceCatMap);
    %>
    <%@page import="bh.com.cio.egov.vo.EServiceVO"%>
    <f:view>
         <script type="text/javascript">          
              function blinkThis(id, color, timeout)
                   var idElem = document.getElementById(id);
                   if(idElem)
                        idElem.getElementsByTagName('span')[0].style.color = color;
                        setTimeout('switchColor(\'' + id + '\', \'#8A7C5B\', ' + timeout + ')', timeout);
              function switchColor(id, color, timeout)
                   var idElem = document.getElementById(id);
                   if(idElem)
                        idElem.getElementsByTagName('span')[0].style.color = color;
                        setTimeout('blinkThis(\'' + id + '\', \'#FF3030\', ' + timeout + ')', timeout);
         </script>
    <f:loadBundle basename="nls.egovresource" var="nls"/>
    <hx:scriptCollector id="scriptCollector1">
         <h:form id="form2">     
    <f:verbatim>
              <div class="header-top">
                   <h:outputText value='#{nls["eservice_label_title"]}'></h:outputText>
              </div>
              <c:forEach items="${requestScope.REQ_ESERVICE_LIST_BY_CAT}" var="categoryVOs" varStatus="catIndex">
                   <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                        <tr>
                             <td> </td>
                             <td class="gray1" height="30px">
                                       <c:out value="${categoryVOs.value.category.categoryName}" escapeXml="false"></c:out>
                             </td>                
                        </tr>
                        <tr>
                             <td width="2">
                                  <div align="right">           
                                       <img src='<%= imageRootDir + "dot.png"%>' width="4" height="1" />
                                  </div>
                             </td>
                             <td width="100%" >
                                  <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                                       <c:forEach items="${categoryVOs.value.eservice}" var="service" varStatus="serviceIndex">
                                       <%
                                            EServiceVO serviceObj = (EServiceVO) pageContext.getAttribute("service");
                                            String action = null;
                                            int serviceId= -1;
                                            if(serviceObj!=null)
                                                 action = serviceObj.getServiceAction();
                                                 serviceId = serviceObj.getServiceId();
                                            if(action!=null && action.startsWith("$"))
                                       %>
                                       <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                       <c:set var="jstl_to_jsf_url_en" value="${service.serviceAction}" scope="request"/>
                                       <c:set var="jstl_to_jsf_url_ar" value="${service.serviceActionAr}" scope="request"/>
                                       <tr>
                                            <td height="17">                         
                                                 <table width="100%" border="0" cellspacing="0" cellpadding="0">                              
                                                      <tr>
                                                           <td width="95%" id="extMoreCell_${catIndex.index}_${serviceIndex.index}">                                                                      
                                                                <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>
                                                                <h:commandLink styleClass="links menu-txt" action="#{pc_EServiceView.doExternalLinkAction}">
                                            <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"/>
                                                 <f:param name="PARAM_ESERVICE_URL_EN" value="#{jstl_to_jsf_url_en}"></f:param>
                                                 <f:param name="PARAM_ESERVICE_URL_AR" value="#{jstl_to_jsf_url_ar}"></f:param>
                                                 <f:param name="JSP_ACTION" value="ACT_EXTERNAL_ESERVICE"></f:param>
                                            </h:commandLink>
                                                           </td>
                                                      </tr>                                             
                                                 </table>
                                                 <script type="text/javascript">
                                                      <c:if test="${service.serviceId eq '53'}">
                                                           blinkThis('extMoreCell_7_3', '#FF3030', 1000);
                                                      </c:if>                                        
                                                      <c:if test="${service.serviceId eq '54'}">
                                                           blinkThis('extMoreCell_7_4', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '55'}">
                                                           blinkThis('extMoreCell_7_5', '#FF3030', 1000);
                                                      </c:if>          
                                                      <c:if test="${service.serviceId eq '56'}">
                                                           blinkThis('extMoreCell_0_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '57'}">
                                                           blinkThis('extMoreCell_8_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '59'}">
                                                           blinkThis('extMoreCell_1_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '58'}">
                                                           blinkThis('extMoreCell_5_6', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '28'}">
                                                           blinkThis('extMoreCell_1_4', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '20'}">
                                                           blinkThis('extMoreCell_5_3', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '60'}">
                                                           blinkThis('extMoreCell_7_6', '#FF3030', 1000);
                                                      </c:if>     
                                                 </script>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>'><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                       </tr>     
                                       <%}
                                       else if(action!=null)
                                       %>                                                                                               
                                       <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                       <wps:urlGeneration contentNode="${service.serviceAction}" allowRelativeURL="false" keepNavigationalState="true">
                                       <%
                                       //String urlC = "http://"+renderRequest.getServerName()+":"+renderRequest.getServerPort()+wpsURL;
                                       String urlC = "" + wpsURL;
                                       %>
                                       <c:set var="url" value="<%=urlC%>" scope="request"/>
                                  </wps:urlGeneration>
                                       <tr>
                                            <td height="17">                         
                                                 <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                                      <tr>
                                                           <td id="intMoreCell_${catIndex.index}_${serviceIndex.index}">
                                                           <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>     
                                                           <hx:outputLinkEx styleClass="links menu-txt" value="#{url}">
                                                                <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"></h:outputText>
                                                           </hx:outputLinkEx>
                                                           </td>
                                                      </tr>                                                                                                                             
                                                 </table>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>' ><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                       </tr>     
                                       <%
                                            %>               
                                       </c:forEach>                                             
                                  </table>
                             </td>
                        </tr>
                   </table>                                                                                                                                                                     
              </c:forEach>
              </br>
              <h:messages styleClass="messages" id="messages1"></h:messages>
              </f:verbatim>     
              </h:form>
         </hx:scriptCollector>
    </f:view>

    1) Throw your code away and use h:dataTable instead of c:forEach to render a table of dynamic size.
    or:
    2) Hand-assign every UIInput and UICommand element inside the loop an unique ID. E.g. "commandLinkId" + loopIndex

  • Help viewer does not work after update to 10.4.4

    Since updating to 10.4.4 my Help viewer does not work, and all of the troubleshooting fixes suggested in other threads have not had any success in resolving this. I've noted that when I go to Users>Library>Documentation>Help there is no mac.help file - can someone tell me if that means that I've lost the file altogether and need to reinstall it? I get to the first screen of the viewer, but the links from there don't work. Thanks for any help that you can provide!

    Thanks for your suggestion. I downloaded OnyX and ran the cleaning function. After restarting, I opened Help and once again the first screen appeared fine. But again most of the links did not work, though those under the "What's New" heading did work. I might add that I had previously tried a variety of suggestions posted in another thread, which included deleting from the caches folder in Home>Library several files such as com.apple.helpui and help.plist in the Preferences folder. (As noted in my previous post this evening, I also created another user but that also did not have any effect.) Any other ideas? Thanks

  • Just updated my laptop to itunes 10.5,the help feature does not work.also updated my ipad2 3g wifi 64gig to ios5, now none of my purchased apps are working?? please help?

    I JUST UPDATED MY ITUNES TO ITUNES10.5 ON MY LAPTOP(WIN7)
    THE HELP FEATURE DOES NOT WORK.
    I ALSO UPDATED MY IPAD2 3G WIFI 64GIG TO IOS5 AND NOW NONE OF MY PURCHASED APPS WORK??????????

    I have seen this before. You need to update the apps in your app store, and once they are updated, they will work again.

  • HELP - BBM does not work on Playbook (Bridged)

    Hi Folks,
    Looked into other threads but all problems seem to be related to older versions.
    I am new to the whole Blackberry Lifestyle.
    Currently own, Playbook (wireless) and Torch 9860 for about two weeks - enjoying them independently.
    ANY HELP would be appreciated.
    Just tried the Bridge function but the BBM does not work.
    It is funny cause my Playbook does get a notification for any BBM I receive, the remote works, the contacts can be seen on playbook but when I click on BBM notification it I get a message "Your Version of Blackberry Messenger is not compatible with Blackberry Bridge. Download the latest version of BBM to use it on your playbook.
    I did what I normally do - googled it. Found out the specs and I do have all updated apps.
    On my 9860 I have
    7.1.0 System
    Bridge 2.0.0.35
    BBM 6.1.0.55
    This is not linked to BES or anything - purely personal.
    I have already restarted my phone and playbook with no luck.
    I am new, so not sure of the difference between stuff like hard set, shutdown etc  etc or other technical terms - so would appreciate if you assume that I am a complete dummy.

    Hi playbookfun and welcome to the BlackBerry Support Community Forums!
    Have you tried updating to the latest version of BBM™?  If not, I would recommend trying that by going to www.blackbery.com/bbm from your BlackBerry® Browser.
    Thanks.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Input Help (F4) does not work for Planning Functions in Web

    Hi Gurus,
    I am working in BI-Integrated Planning.
    When I execute a planning function from web layout (through Web Application Designer), the "Input Help" does not work. When I give F4 it takes me to the initial planning layout screen from the planning function variable screen without any action being performed.
    But the "Input Help" works fine when I have to select for the variable from the initial selection to open the planning layout.
    Can anyone suggest me any fix for this...
    Thanks!!!

    Hi All,
    Can somebody help me here what went wrong with indesign cc extension so that copy/paste does not work in input type element text
    Regards,
    Alam

  • HELP CREATEBLOCKONEQ DOES NOT WORK!

    I have been pulling my hair out trying to get the SET CREATEBLOCKONEQ command to work in my calc scripts. I have been to the Essbase Calculate Databases training class and it does not work like it did in the class. I even sent a code snippet to my instructor and it worked for him but not for me. See my example below:
    Outline:
    611055 - Dense
    BegBal - Sparse
    61100011 - Sparse
    Q3Forecast - Sparse
    FY2010 - Sparse
    This should create a block without the SET CREATEBLOCKONEQ according to my class book and the tech reference guide but it does NOT!!!!
    FIX("61100011", "611055","Q3Forecast","FY2010")
         "BegBal" = 1;
    ENDFIX;
    This should create a block using the SET CREATEBLOCKONEQ according to my class book and the tech reference guide but it does NOT!!!!
    FIX("61100011", "611055","Q3Forecast","FY2010")
         SET CREATEBLOCKONEQ ON;
         "BegBal"="Actual"->"FY2009"->"Dec";
    ENDFIX;
    Is there a database setting that needs to set to a certain value for this stuff to work?! This is driving me crazy and is causing me to create extravegant work arounds just to do what should be simple calculations according the all the documentation I have seen.
    PLEASE HELP!!!

    Don't panic! Advice from Douglas Adams and me (I am somewhat less well known, but still good advice). :)
    Quick question, that will invalidate all of the below -- are you absolutely sure that BegBalance is in a sparse dimension? That's (generally) pretty unusual. If BegBalance is in a Time/Period dimension that is dense, it would explain why your code doesn't work. You could flip the code to say:
    FIX("61100011", "611055","BegBal","FY2010")
    SET CREATEBLOCKONEQ ON;
    "Q3Forecast" = "Actual"->"FY2009"->"Dec";
    SET CREATEBLOCKONEQ OFF ;
    ENDFIX
    Scenario is more likely (I don't know your db's layout, but this is common) to be sparse. If the above works, you can jump out of this post.
    Failing success, however, read on.
    More advice:
    1) Copy your database to something you know can't be in production -- I like Bozo.Bozo, but to each his own.
    2) Clear out the data from Bozo.Bozo.
    3) Go into EAS and edit the properties of the Bozo.Bozo database. It should say that it has zero blocks.
    4) Connect to Bozo (I am dropping the app name -- you get the idea) in Excel and navigate to your 61100011, 611055, Q3Forecast, Fy2010, and BegBalance intersection.
    5) Type in a 1, and lock and send. Delete the 1 from the spreadsheet, and retrieve again to prove that the number went in.
    6) Now go back into EAS and Bozo and Edit->Properties. You will see one block. There can only be one as you cleared out the db in step 2 and proved that there were zero blocks in step 3.
    Okay, having established that indeed, you can create a block by assigning a data value, I would now look go see if 61100011->61055->Actual->FY2009->Dec has data in your real database. Can you pull it into a separate sheet (obviously not the Bozo connected sheet)?
    If you can do that, connect your first sheet to your original db. Now lock and send the number 1 back to the db. Retrieve to make sure it works. If you were feeling feisty, you might do a before and after block count, but it may be difficult to tell what the real block count is as you may very well have been creating the block and didn't realize it.
    Ignoring SET CREATEBLOCKONEQ, try your second code block. You're just proving that you can assign data. Does that work?
    The only reason I can see CREATEBLOCKONEQ not working in your example is if in fact BegBalance is not sparse. It won't work on a dense dimension.
    Good luck and breath deeeeeeeply.
    Regards,
    Cameron Lackpour

  • Help: Firefox does not work in XP Pro limited account

     Firefox 3 only works in administrator accounts. I tried:
    - To grant full control to Firefox folder and to grant limited user to run Firefox
    - To change the type of limited user ABC to administrator account and installed Firefox 3, then change ABC back to limited account. Firefox does not work.
    I have similar problem with Opera.
    Other programs such as IE, MS Office, Adobe,... work fine. Diskeeper and PC-Doctor require admin privileges.
    My machine is X61. I have Kaspersky IS 7.0 installed.

    Hi,
    Thanks for  your reply.
    Yes I know Firefox can work without admin privileges. I just have no clue why it does not work in my case.
    I installed Firefox from administrator account, following on screen instruction. I did not modify anything. It installed into Mozilla Firefox folder under Programs Files folder.
    By "does not work" I mean when in "limited account" (not in admin account) I doubleclicked the Firefox icon on the desktop nothing happened. Same situation with Opera.
    I found a way to run Firefox: I rightclick the Firefox icon and choose "run as..." In the dialogbox I choose "administrator" and key in the password. It works normally. Also work with Opera.
    I know Thinkpad has its own security system. I just can not figure out whether this system could intervene XP Pro operations or not. I think this should not happen.
    Hi admin,
    I'm sorry I accidentally post the above reply creating a new thread. Please help delete. Thank you.

  • F4 help key does not work in ESS on ITS in Portal

    Hello All,
    F4 help key is not working in all iviews in ESS in Portal.When i try to press it nothing happens and no pop up appears,kindly please suggest wt might be the cause of this error? Iam tired struggling with this issue and not able to trace out reason for the same.My Email Id is [email protected] .Plz revert at earliest.
    regards,
    Saumya

    Hi,
      This kind of problem is known when webgui is being started from an IAC, e.g. HRWPC_FC_EXEC
    You have to set parameter ~webgui_popups 1 in the service file of this IAC.
    BR,
    Disha.
    Pls reward points for helpful answers.

  • H:commandLink does not work on Safari

    Hi,
    I'm using JBoss AS 4.2.2.GA with Seam 2.0.1.GA and all its standard libs. But this seems to be a JSF-RI issue which is used by JBoss 4.2.2.GA
    It seems as if <h:commandLink> don't work on Safari 3/Mac OS Leopard, which they did in earlier prjects with jboss 4.0.5.GA and Seam 1.2.1.GA. In this version myfaces was used.
    The commandLink in the following example produces a JavaScript error "Undefined value". It doesn't matter if the action or the form is empty. I've simplified the example but this also happens with a "complete" form.
    The starange thing is that if I copy the generated HTML source into an html file, open that file and click the "command" link, it works (however an error page is shown since this is not a legal Seam request).
    I've no idea why this browser makes a difference between these two files since I have used <h:commandLink> in many earlier projects with earlier versions of the components. Firefox works without a problem.
    I've already changed the extension of JSF/Seam from .seam to .html. Same error.
    Anyone can help here?
    Alex
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core">
    <head>   
    </head>
    <body>
    <f:view>
         <h:form id="aForm">
              <h:commandLink id="theId" >abc</h:commandLink>
         </h:form>
    </f:view>
    </body>
    </html>This is the generated HTML. The JavaScript error points to the line with the link.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>   
    </head>
    <body>
    <form id="aForm" name="aForm" method="post" action="/leadspot/test.seam" enctype="application/x-www-form-urlencoded">
    <input type="hidden" name="aForm" value="aForm" />
    <script type="text/javascript" language="Javascript">
    //<![CDATA[
    function dpf(f) {var adp = f.adp;if (adp != null) {for (var i = 0;i < adp.length;i++) {f.removeChild(adp
    );}}};function apf(f, pvp) {var adp = new Array();f.adp = adp;var ps = pvp.split(',');for (var i = 0
    ,ii = 0;i < ps.length;i++,ii++) {var p = document.createElement("input");p.type = "hidden";p.name = ps
    ;p.value = ps[i + 1];f.appendChild(p);adp[ii] = p;i += 1;}};function jsfcljs(f, pvp, t) {apf(f, pvp)
    ;var ft = f.target;if (t) {f.target = t;}f.submit();f.target = ft;dpf(f);};
    //]]>
    </script>
    <a id="aForm:theId" href="#" onclick="if(typeof jsfcljs == 'function'){jsfcljs(document.forms['aForm'],'aForm:theId,aForm:theId','');}retu
    rn false">abc</a><input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="_id7" />
    </form>
    </body>
    </html>

    alxsde wrote:
    What I still don't understand is why the same HTML code works when loaded from a file and is not generated by JSF.Hi. I committed the fix. For what it's worth, I hand-coded the JS in a static file for testing and was able to reproduce the problem and test the fix there before altering the Mojarra code. Why are you seeing different behavior? * shrug * :P
    Glad it got you going though. :)

  • HELP iSight does not work online or with Chat Roulette

    So I have tested the iSight with photo booth, skype and other things like that. They all detect the camera, and work with the program fine. I was on Chat Roulette yesterday (the first night with my macbook) and it worked fine. The next day I tried to go on and it didn't work. For some reason it will not detect it. I have tried everything! I keep hitting allow and adjusting settings and nothing seems to work. I would really appreciate some help. Oh ad flash is updating and working correctly.

    Drew hearts apple wrote:
    So I have tested the iSight with photo booth, skype and other things like that. They all detect the camera, and work with the program fine. I was on Chat Roulette yesterday (the first night with my macbook) and it worked fine. The next day I tried to go on and it didn't work. For some reason it will not detect it. I have! I keep hitting allow and adjusting settings and nothing seems to work. I would really appreciate some help. Oh ad flash is updating and working correctly.
    So welcome to Discussions, Drew hearts apple
    Other users have made Chatroulette work using the suggestions in the following topics:
      http://discussions.apple.com/thread.jspa?messageID=12116447&#12116447
      http://discussions.apple.com/thread.jspa?messageID=12015522&#12015522
    Perhaps Chatroulette was merely down for a while and will work next time you restart your Mac.
    Chatroulette worked for me just now, but I could not find any link for on-line help. Therefore, if you are determined to continue trying to get Chatroulette working again although these suggestions do not help you, a web search might let you find other ideas in a third-party Chatroulette discussion forum.
    Chatroulette previously worked for you but now does not, and you have already tried everything. If you are still cannot make Chatroulette work, the only remaining thing you can do is use a different website, at least to test whether your system is working with Flash-based browser chat sites. If neither mebeam nor tokbox work for you either, you may need to restart your modem and router/wireless access point again.
    Message was edited by: EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz w/Mac OS X (10.6.4)  MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.4)
    LED Cinema Display  G4 PowerBook  1.67GHz (10.4.11)  iBookSE 366MHz (10.3.9)  External iSight

  • I installed Firefox today but it will not open and the icon on the taskbar will not close and I cannot uninstall it and the helper app does not work either?

    I have tried everything that I know to uninstall the new version of Firefox. I also installed Aurora beta and it had the same behavior and I was able to uninstall that. I cannot open a ff browser to work on it using much of your support information. I click on icon but it does not start on the desktop but task manager shows it as running. I have to end task in task manager to close it. I can't uninstall it and have tried system restore but that also doesn't work because of another issue with my antivirus program.

    If this is on a Windows computer, check this Microsoft link;
    '''''[http://support.microsoft.com/mats/Program_Install_and_Uninstall Fix problems that programs cannot be installed or uninstalled]'''''

  • Help, swf does not work in html file.

    why is the swf (
    http://happynick.com/sheflash/openingvideo.swf)
    not showing up in the html page? I see only the black center and
    not swf.
    see http://happynick.com/sheflash/index3.html where this page
    should be located.
    how can I make it run automatically when I open the html
    page?

    Not sure what is happening, but it seems to be working-ish
    for me.
    It sits for a minute, then the page redirects to main.html -
    I assume that is a reaction from something in the SWF.
    When I download the SWF to my desktop, and run it outside of
    the browser, all I get is a black box as well.

  • Tried to reduce to no border on iPhoto after help still does not work,please explain in full how to do it

    as abve in simple instructions peter uk

    See my answer to your previous duplicate question
    And note that you reall need to share details to get better help. With only a statement that you have a problem without sharing the software version, your detailed workflow, results and error messages only guesses can be made
    LN

  • I Tunes error message and URL help page does not work!!

    I have, sincea previous update, a constant error message when I start up Itunes: error -42032 and when I try to open the helppages , ths URL is not available!!!
    I ust ordered a new Iphone4 S, so I want to get rid of this problem!!! Who can help me?

    Hello, LovinThe Tunes
    You will find this article helpful in troubleshooting the error that you are receiving.
    iTunes for Windows: "Error 7" message when opening iTunes
    http://support.apple.com/kb/ts3074
    Regards,
    Jason H.

Maybe you are looking for