ICSS label values and validation messages

Hi All,
Can someone please let me know
1. Where are the label values stored for ICSS (i.e. is it in some properties file/ xcm config or CRM backend)
2. Where the validation error messages for ICSS stored.
Thanks,
Nikhil

Solved myself.

Similar Messages

  • Condition values and validity periods of a Scheduling agreement .

    Dear Friends,
    I have one querry .Where does (in  Database table) ,  the condition values and validity periods of a Scheduling agreement stored .
    Thanks and regards in advance.
    Vijay.
    Edited by: vij kot on Sep 9, 2008 12:09 PM

    Hi,
    Refer Tables
    KONH - Condition Header
    KONP - Condition Item
    KONV - Conditions (Transaction Data)

  • Label on custom validation message

    Hi,
    I�m trying to display a the label of a input on a custom validation message using h:messages, for example:
    "The field Email is required"
    I don�t want to use the requiredMessage attribute of the outputText because I wish to apply it for all fileds on my application.
    I�ve tried something like that:
    On the jsp:
    <h:outputLabel for="email" value="Email" />
    <h:inputText value={bean.email} required=true />On the bundle:
    javax.faces.component.UIInput.REQUIRED=The field {0} {1} is requiredBut, the {0} parameter is the component ID, and the {1} parameter resolves to null.
    Please help, this is very important to me.
    THanks

    The {1} should resolve to the label of the inputText component. Note that here (and in the documentation) 'label' refers to the value of the label attribute on the inputText component itself. It does not refer to the value of an outputLabel component that is 'for' the input component.
    So you want the following:
    <h:outputLabel for="email" value="Email" />
    <h:inputText id="email" value="#{bean.email}" required="true" label="Email" />Note I also added an id to pair with the for attribute.

  • Regarding Focus and Validation message on the JDialog

    Hi All,
    Can any body provide the Solution for the below scenario.
    I have a dialog ,on this i have some components like combobx , TextField and check box etc..... and also one OKButton and Cancel button.
    The problem is when i enter some invalid data or with out entering the values in any fields , if i click on ok button a validation message will be displayed stating that perticuler field is mandatory and if i click on that validation message the focus should go to the corresponding field.
    it is not happening some times(i.e the focus is not going to the corresponding field)
    but some times it is happening.
    can u provide a solution or suggest me on this regard.
    Thanks in Advance.
    Regards,
    jeevan.

    Put the request focus code inside this:
    SwingUtilities.invokeLater(new Runnable()
         public void run()
                 //Put the code here to set the focus
    });

  • How to Read Idoc - Segment fields values and status messages

    Hi,
      I am having one requirement as i want to read the segments along with the field values and also i want to read all the status messages.
    first i read the idoc data from EDIDS and segments data from EDID4 and the staus messges from T100. but still i am not getting all the status messages.
    is there any other table which contains the information of IDOC segments and field values and also the status messages.
    Regards,
    Kumar

    You need to use
    V_MSGNO = EDIDS-STAMNO.
    CALL FUNCTION 'MESSAGE_PREPARE'
      EXPORTING
        MSG_ID   = EDIDS-STAMID
        MSG_NO   = V_MSGNO
        MSG_VAR1 = EDIDS-STAPA1
        MSG_VAR2 = EDIDS-STAPA2
        MSG_VAR3 = EDIDS-STAPA3
        MSG_VAR4 = EDIDS-STAPA4
      IMPORTING
        MSG_TEXT = V_TEXT.
    WRITE: / V_TEXT.

  • How to show a field value and a message text in a message box

    Hi
    I have made a message box that shows the value of a text field when a button is clicked. I would like to add some message text to the message box as well, so that my message box will show something like:
    You have entered this data: "textField value"
    This script works to show the text field value but I cannot figure out how to combine it with an ordinary message box text message. I have tried various combinations of () and “ “ but no luck.
    if 
    (TextField1.rawValue != null){
    xfa.host.messageBox(TextField1.rawValue
    , "Message box title");}
    Kirstine

    you can use below code:xfa.host.messageBox("Word  you want to add in start "+TextField1.rawValue
    +" Word you want to add in the end","Message Box Title")
    Thanks

  • Dynamically calculating values and validating in reports

    Hi
    I need to be able to calculate and display the running total of column (representing a % - sales allocation) within an updatable report as the users steps off the row after making a change to the allocation.
    Greatful for your suggestions on ways of doing this.
    Thanks
    Dorian

    See
    http://htmldb.oracle.com/pls/otn/f?p=24317:57
    The region query is
    select
    ename,
    job,
    htmldb_item.text(1,sal,null,null,'onChange="Calc()"') sal,
    htmldb_item.text(2,comm,null,null,'onChange="Calc()"') comm,
    htmldb_item.text(3,sal+comm,null,null,'readonly=true') total
    from emp
    The Calc javascript function is in the Region header as
    <script type="text/javascript">
    function Calc() {
    var sal=document.wwv_flow.f01;
    var comm=document.wwv_flow.f02;
    var total=document.wwv_flow.f03;
    for (var j=0;j<sal.length;j++) {
       total[j].value=Number(sal[j].value)+Number(comm[j].value);
    </script>Note that you dont have access to each individual row, when you change either the sal or the comm field, the entire grid gets recalculated, sort of like a spreadsheet.
    Should be enough to get you started.
    Hope this helps.

  • JSF1.2 and validation

    Hi,
    I am a newbie to JSF, but I noticed (based on the book I am going though) that validation and validation messages are much better handled in 1.2, in comparison to 1.1. For example, you now get:
         Amount: Validation Error: Value is required.
    Instead of simply just an error. Assuming, of course, you set up a label. However, when I attach my own validation function, this does not happen. This leads me to the conclusion that either my validation classes need to do something before I can access this functionality or the common validation functions/convertors are poorly designed and are concatenating the label/field name. So my question is how do I get the message to print the label for my validation function?
    Thanks.

    Not too sure I want to override every possible error message that can come from the standard validators. What I want is a little explanation. What decides that the message is going to stick a label into the validation message. If it is the validator/convertor then, in my opinion, this is bad design. This is something that the message or messages component should do, not the convertor/validator.
    In fact, that is what I want to do. By what you are suggesting, it seems the only way is to override that message so it does not put the field name in is to override the messages.

  • Validation messages and displaying

    I am using JDeveloper 3.0 and not having an easy time with getting my validation error messages to show up. My Oracle contact is not a programmer and tends to give me an answer she doesn't understand herself.
    Anyway, I have tried creating a validator and per the oracle person, a domain. Either method does validate the field entry and prevent the data from being stored; however, both methods do not display the useful error message I threw back. I throw a jboexception that I want displayed and instead I get messages about how the validation failed or how it was unable to create, depending on whether the exception occurs in a validator or a domain.
    I am not familiar with the code and was hoping the documentation would give me a step by step of how to override whatever it is that I need to override or do whatever it is that I need to do. I want to use the functionality of the wizards by being able to set the validation or set the type of attribute to a domain. I think I could code this in the entity object java file, but I really want to make this sort of thing easy for another developer to choose my validation routine or domain while running the wizard.
    The example in Oracle's samples walks you through a simple edit on salary (salary > 1200). The validation catches all salaries below 1200 and throws back some ugly message about how the validation failed. What does one need to do to show their personal error message like "Salary must be greater than 1200"? Why is this simple concept so HARD?
    Please help me as I am ready to throw out JDeveloper and go with another product.
    Lisa

    In the setter method for an attribute on which you've installed a validator, (say for "Salary" attribute, in setSalary method), you could trap JboException and if the exception's error-code is 27011 (the one thrown from the compare validator as per your example), you could throw another JboException. Here's a sample code-snippet:
    public void setSalary (Number n)
    try
    setAttributeInternal(COMM, value);
    catch (JboException e)
    if (e.getErrorCode().equals("27011"))
    throw new oracle.jbo.JboException ("MY ERROR MESSAGE");
    // add logic for other exceptions
    throw e;
    Also, in the JDeveloper docs you could find more on how to customize exceptions. I've pasted some snippet from one of the docs.
    Programming with Exceptions
    Use exceptions to indicate serious or unexpected error conditions, conditions from which the program cannot easily recover. This topic presents the following
    information:
    About Java exceptions
    About exception classes
    Creating custom exception classes
    Localizing exception messages
    Marshaling exceptions
    About Java Exceptions
    Java exceptions fall into two categories: either they extend java.lang.RuntimeException (these are called implicit exceptions) or they do not (these are called
    explicit exceptions). When a method uses an explicit exception to indicate an error, a Java program requires:
    A throws clause in the method signature that declares the type of exception the method will throw when an error occurs.
    A throw statement in the method body that creates and throws an exception of the type specified in the signature.
    The following code shows a method getCustName that declares and throws a ValidationException.
    public String getCustName(Customer cust) throws ValidationException {
    String name = cust.mName;
    if (name == null) {
    throw new ValidationException();
    return name;
    When you write code that calls a method that throws an exception, enclose the call in a try...catch block. For example, the following code calls getCustName, a
    method defined to throw a ValidationException. The try keyword indicates that you are about to call one or more methods that throw exceptions. The catch
    keyword marks the beginning of a code block that executes only when an exception is thrown.
    public printName(Customer cust) {
    try {
    // Call the method(s) here.
    getCustName(cust);
    catch (ValidationException dae) {
    // Handle the error here.
    System.out.println(dae.getMessage());
    Java programs are more lenient about implicit exceptions: they do not have to be declared or caught. You can write a method that throws a RuntimeException (or a
    subclass of RuntimeException) without declaring it in the method signature (although you can do so, if you prefer).
    About Exception Classes
    The Business Components framework provides many exception classes (for example, ValidationException and NameClashException). These classes extend
    oracle.jbo.JboException, which extends java.lang.RuntimeException. Therefore, a Business Component method can throw a Business Component
    exception without a throws clause in the signature.
    Business Component exceptions have an attribute that stores an error message, and they support NLS translation and message formatting. JboException uses
    java.util.ListResourceBundle to format its messages. A resource bundle class defines constants and strings to use as error messages. The default format is
    {productCode}-{errorCode}: {messageBody}
    For example,
    ORA-10234: You cannot do that.
    Business Component exception messages are derived from the following generalized set of parameters:
    Parameter
    Example
    Product code
    "OBCJ"
    Error code
    "03101"
    ResourceBundle
    "oracle.jbo.CSMessageBundle"
    an optional set of parameters
    "Vendor", "Oracle"
    details
    Any exception thrown in low-level code that is transformed
    into a Business Component exception
    Messages may need to include information known only when the exception is thrown, so error message strings can include placeholders that refer to values in an array
    of Objects passed to the exception when it's thrown. When the message is formatted for display, these parameters are placed into slots in the message (the first slot is 0)
    using the standard formatting capabilities provided by java.text.MessageFormat. Following is a an entry from CSMessageBundle.java.
    public static final String EXC_VAL_ATTR_SET_FAILED = "03101";
    // Description: Generic Attribute validation failure.
    // set<Attribute> method failed to set the value.
    // Parameter 0: Ignored.
    // Parameter 1: Entity Object/View Object name.
    // Parameter 2: Attribute name.
    // Parameter 3: New value
    {EXC_VAL_ATTR_SET_FAILED, "Attribute set with value {3} for {2} in {1} failed."},
    The JboException class provides the following methods for working with exceptions.
    Method
    Description
    JboException(String message,
    String errorCode,
    Object[] params)
    Create a Formattable Exception Object.
    JboException(Class resBundleClass,
    String errorCode,
    Object[] params)
    Create a Translatable Exception Object.
    String getProductCode()
    Return the Product code for the Message.
    String getErrorCode()
    Return the Error code.
    String getLocalizedMessage(Locale loc)
    Return the Message in the specific Locale.
    Object[] getDetails()
    Details are usually used to accommodate
    lower-level exceptions. For example, if a
    SQLException is thrown in some low-level code, the Business Component
    framework can catch it and represent it as
    one of the Business Component exceptions.
    The original SQLException becomes
    the first entry in the detail.
    String getResourceName()
    Return the name of the ResourceBundle used to
    resolve messages.
    Object[] getErrorParameters()
    Return the Parameters to the Error.
    Creating Custom Exception Classes
    You can use Business Component exception classes in your own code to indicate errors, and you can create custom exception classes. For example, you can extend
    JboException and override the getProductCode method, making it return values appropriate for your exception.
    You can throw a JboException by using a statement like this:
    throw new JboException("Don't do that.", "101", null );
    The drawback to this approach is that the hard-coded error message is not easy to localize.
    Localizing Exception Messages
    To make an exception localizable into different national languages, use the NLS framework. First, create a resource bundle for your error messages. The following code
    example defines a bundle named MyMsgBundle that stores three error messages.
    import oracle.jbo.common.util.CheckedListResourceBundle;
    public class MyMsgBundle extends CheckedListResourceBundle
    // String Constants
    public static final String BAD_EMPNO = "101";
    public static final String DEPT_NOT_FOUND = "102";
    public static final String NOT_IN_DEPT = "103";
    * Private 2-D array of key-value pairs
    private static final Object[][] sMessageStrings = {
    { BAD_EMPNO, "Invalid employee number." },
    { DEPT_NOT_FOUND, "Department {0} does not exist." }
    { NOT_IN_DEPT, "Employee {0} not found in Department {1}." }
    Then you can use the resource bundle class to define a value to pass to the constructor for your exception class or JboException.
    throw new JboException(MyMsgBundle.class /* Class of Bundle */,
    MyMsgBundle.DEPT_NOT_FOUND /* String Constant */,
    new Object[1] { localVar1 } /* Arguments to message */
    JboException provides a getLocalizedMessage method which returns the message formatted for the specified locale.
    The framework translates the message text when the client calls getLocalizedMessage rather than at creation time because the client may need to present the
    message in a number of different languages. This mechanism provides a single point for localizing and formatting messages.
    Using JboExceptionHandler
    JboExceptionHandler is user-installable exception handler for three-tier applications. When exceptions are br ought over through the piggyback mechanism, the
    normal Java language throw does not quite work, because (among other things) the piggyback may have carried back more than one exceptions. Thus, instead of
    throwing the exception, a method on the JboExceptionHandler interface is invoked with each exception unloaded from the piggyback.
    JboExceptionHandler defines:
    void handleException(Exception ex, boolean lastEntryInPiggyback);
    Where ex is the exception unloaded from the piggyback and lastEntryInPiggyback is a flag indicating whether the exception was the last entry on the piggyback.
    (Note that for two-tier execution there is no piggyback.)
    If you do not install your own handler, the default handler is used. The default handler is implemented by the Application Module. (At the interface level,
    ApplicationModule implements JboExceptionHandler.) For jbo.client.remote, this implementation ignores the exception if lastEntryInPiggyback is
    false. If lastEntryInPiggyback is true, the exception is thrown.
    To install your own handler, call the following method on the Application Module interface:
    void setExceptionHandler(JboExceptionHandler hndlr);
    and pass in your own implementation of the JboExceptionHandler interface.
    Marshaling Exceptions
    JboException can marshal itself across a network. It handles NLS issues for the middle tier, enabling one instance of a middle-tier component to serve (for example)
    French users and English users at the same time.
    If your exception contains member data that need to be marshalled, extend JboException and override readObject and writeObject. The Java serialization
    mechanism uses these methods to serialize/deserialize an object. For example, suppose you have the class MyException (shown below), and you want to carry
    memberA and memberB across tiers.
    public class MyException extends JboException
    int memberA;
    String memberB;
    Write code like the following in MyException:
    private void writeObject(ObjectOutputStream out) throws IOException {
    out.writeInt(memberA);
    out.writeUTF(mEntityRowHandle);
    private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
    memberA = in.readInt();
    memberB = in.readUTF();
    null

  • I try to access my new Adobe Pro XI download to use it, and a message says "serial number not valid" or words to that effect.  I downloaded on Friday afternoon.

    I try to access my new Adobe Pro XI download to use it, and a message says "serial number not valid" or words to that effect.  I downloaded on Friday afternoon.  Why?  This should have been easy.

    Contact support by web chat to get your serial number issues sorted.
    Mylenium

  • Want to change length validator message and change field format.

    I want to override Length Validator Message as I want to tell the user that phone number
    must contain 10 numbers
    I've added this validator on the phone field
    af:validateLength minimum="10" maximum="10"
                                   hintMinimum="11" hintMaximum="22"
                                   hintNotInRange="33" messageDetailMinimum="44"
                                   messageDetailMaximum="55"
                                   messageDetailNotInRange="66" id="lengthval"/>and this when I enter less than 10 numbers the error message tell that you must enter 10 characters
    I want to override this message to be "you must enter 10 numbers"
    And I want to make this number format like
    XXXX,XXX,XX
    How can I make this.

    Strictly speaking a number in this format is no number. It's a phone number and you should use a regular expression validator for this.
    Check http://docs.oracle.com/cd/E15051_01/apirefs.1111/e12419/tagdoc/af_validateRegExp.html for more info.
    Timo

  • ISA order.jsp; message and validation for "Your reference" field

    Hi Everyone,
    I am new to ISA and working on java program to add message to "Your Reference" field in order.jsp page if this field is empty and clicked on "Check Out" button and user need to remain in the same page until user enters information in this field.
    Message is available in .xlf file.
    Please suggest me where to write this code for both message and validation for this field.
    Thanks in advance
    Prasad

    I fixed the requirement
    thanks
    Prasad

  • Customize Alert messages for checking duplicate value and Success alert

    Hi All,
    I want to show two alert against the same "Submit" button to--
    1. Alert messages for checking duplicate value and show the Duplicate value found alert and
    2. Success Alert if the form is success to commit and no duplicate value found.
    I did all thing but when alert-1 shows and i pressed the ok button of the alert then the second alert also shows which i don't want to show.
    Which i can do in this issue? Have there anyone to help me!
    Arif

    Hi Manu,
    I have placed the following code
    1. against the Submit button--
    if error_code=40508 then
         commit_form;
    elsif :USERDELETION.CANCELLATION_USERID is not null then
    do_key('COMMIT_FORM');
    else null;
    end if;
    2. Code against the key-commit trigger in the form level--
    commit_form;
    DECLARE
    vAlert NUMBER;
    BEGIN
    set_alert_property('ALERT_TO_VERIFY',ALERT_MESSAGE_TEXT, 'Your Form has successfully submitted and your Reference id is '||:USERDELETION.REF_NO);
    vAlert:=SHOW_ALERT('ALERT_TO_VERIFY');
    END;
    3. Code against the on-error trigger in the form level--
    DECLARE
    vAlert NUMBER;
    BEGIN
         if ERROR_CODE = 40508 then
    set_alert_property('ERROR_ALERT',ALERT_MESSAGE_TEXT, 'This user deletion request has already submitted of the user named '||'"'||:USERDELETION.FULLNAME||'"');
    vAlert:=SHOW_ALERT('ERROR_ALERT');
    elsif
              ERROR_CODE = 40202 then
    set_alert_property('ERROR_ALERT',ALERT_MESSAGE_TEXT, 'Existing userid must be filled-up !');
    vAlert:=SHOW_ALERT('ERROR_ALERT');
    else
                   message(error_type||to_char(error_text)||': '||error_text);
    end if;
    END;
    If there have any confusion, please ask me.
    Arif

  • Javascript and intl:message tag value rendering

    Hi,
    I would like to know whether is it possible to render key value of <intl:message> tag into javascript alert function. If yes, please provide me the solution.
    Ex: alert("<intl:message key=\"raisemsg\" />");
    Thanks in advance.
    Regards,
    Sudheer

    If that is the case then try using
    <?format-number:( substring-before(WEIGHT,'kg')*0.8);'9G990D00'?>

  • Add "*" infront of the label  in the error message popup window

    Dear all,
    I am new in ADF, I would like to add an "*" infront of the Salutation label in the error message popup,
    does anybody know how to do it? pls help me out in this...thanks
    PS: The Salutation is a af:selectOneChoice component with required validation,
    and if I modified the Salutation to af:inputText with required validation the "*" is shown automatically.
    http://dl.dropbox.com/u/11032207/screen%202012-12-18.jpg
    Edited by: user5638657 on Dec 18, 2012 6:04 PM

    Here is the jsf, thanks
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core">
    <af:panelBorderLayout id="pbl1">
    <f:facet name="start"/>
    <f:facet name="bottom">
    <af:panelGroupLayout id="pgl3">
    <af:popup id="p1">
    <af:noteWindow id="nw1">
    <af:outputText value="#{particularsBundle['TEXT.GENERAL.NOTE.SURNAME']}"
    id="ot13"/>
    </af:noteWindow>
    </af:popup>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="end"/>
    <f:facet name="top">
    <af:group id="g1">
    <af:outputText value="#{particularsBundle['TEXT.PARTICULARS.PAGE']}"
    id="ot2" inlineStyle="color:Black; font-size:large;"/>
    <af:spacer width="10" height="10" id="s3"/>
    </af:group>
    </f:facet>
    <af:panelGroupLayout id="pgl4" layout="vertical">
    <af:outputText value="#{particularsBundle['TEXT.GENERAL.REQUIRED']}"
    id="ot5"/>
    <af:spacer width="10" height="10" id="s5"/>
    <af:panelFormLayout id="pfl1" labelAlignment="start">
    <af:panelLabelAndMessage label="#{bindings.UserId.hints.label}"
    id="plam1" inlineStyle="color:Black;">
    <af:outputText value="#{bindings.UserId.inputValue}" id="ot1"/>
    </af:panelLabelAndMessage>
    <af:selectOneChoice value="#{bindings.UserSalutation.inputValue}"
    label="#{bindings.UserSalutation.label}"
    required="true"
    shortDesc="#{bindings.UserSalutation.hints.tooltip}"
    id="soc1">
    <af:selectItem label="#{particularsBundle['SELECT.SALUTATION.MR']}"
    id="si1" value="Mr."/>
    <af:selectItem label="#{particularsBundle['SELECT.SALUTATION.MRS']}"
    id="si2" value="Mrs."/>
    <af:selectItem label="#{particularsBundle['SELECT.SALUTATION.MISS']}"
    id="si3" value="Miss"/>
    <af:selectItem label="#{particularsBundle['SELECT.SALUTATION.DR']}"
    id="si4" value="Dr."/>
    <af:selectItem label="#{particularsBundle['SELECT.SALUTATION.PROFESSOR']}"
    id="si5" value="Professor"/>
    </af:selectOneChoice>
    <af:inputText value="#{bindings.UserSurname.inputValue}"
    label="#{bindings.UserSurname.hints.label}"
    required="#{bindings.UserSurname.hints.mandatory}"
    columns="#{bindings.UserSurname.hints.displayWidth}"
    maximumLength="#{bindings.UserSurname.hints.precision}"
    shortDesc="#{bindings.UserSurname.hints.tooltip}"
    id="it6">
    <f:validator binding="#{bindings.UserSurname.validator}"/>
    </af:inputText>
    <f:facet name="footer">
    <af:spacer width="10" height="10" id="s4"/>
    </f:facet>
    </af:panelFormLayout>
    <af:spacer width="20" height="10" id="s11"/>
    <af:panelGroupLayout id="pgl0" layout="horizontal">
    <af:commandButton text="#{particularsBundle['BUTTON.CONTINUE']}"
    id="cb1"
    action="#{updateProfileBackingBean.actionContinue}">
    <af:setActionListener from="#{bindings.UserEmail.inputValue}"
    to="#{bindings.email.inputValue}"/>
    </af:commandButton>
    <af:spacer width="20" height="10" id="s2"/>
    <!--af:resetButton text="#{particularsBundle['BUTTON.RESET']}" id="rb1"
    inlineStyle="height:19.0px;"/-->
    <af:resetButton text="#{particularsBundle['BUTTON.RESET']}" id="rb1" inlineStyle="background-position:center top;
    background-repeat:repeat-x;
    margin:0;
    padding-bottom:3px;
    padding-top:1px;
    text-decoration:none;
    white-space:nowrap;"/>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    <af:spacer width="20" height="10" id="s1"/>
    </af:panelBorderLayout>
    </jsp:root>

Maybe you are looking for

  • How to re-install Design Premium CS5.5 Student and Teacher Edition? Lost my serial number. [was: Hey]

    I bought a student and teacher edition of Creative Suite 5,5 Design Premium in 2011, I got my serial number and everything. But now I have changed computers and lost my serial number. I have tried to register my product on my old computer and it says

  • ISight problem with photobooth, skype, etc

    Hi everyone, I've been having a problem with iSight recently. Whenever I try to use it for Skype or PhotoBooth, the green light turns on but all I see is a black screen. It works with flash based websites on Chrome though. I have the Gmail video plug

  • How to set a default mail to send from mozilla?

    I would like to set gmail like my default mail in Mozilla Firefox. Is it possible? Regards

  • Timeline not working - is there a better way?

    First, what I'm trying to accomplish: I have a div layer the explains how to navigate the ensuing page. I want this to display for about 25 seconds and then hide while the other two divs on the page become visible. I set up a timeline with three laye

  • Sent emails also received in the inbox

    Hey everyone, so I've had a BB for just about ever now - but I've never seen this before. I just added a new email acct to my phone and whenever I send messages (with just that account) I get a copy in my inbox as an unread message. The email goes th