[CS3] Radiobutton group problem

Hi, I'm creating a small quiz in Flash, and I have a nasty
problem I hope you can help me with.
I've set a group name like "group1" for the first group of
three radio buttons, and "group2" for the next, and so on. I have 2
groups per frame. The problem is that if I continue by having
"group3" and "group4" on frame 2, when it's exported; The first
frame is fine, but when I continue to the next frame, the radio
buttons label is gone, and the radio buttons are all selectable,
like check marks.
I would really appreciate some help on this

Anyone?

Similar Messages

  • How to Create Dynamic RadioButton Group by Index

    Hi to all,
                 I would like to create an Questionaire.For that, I have created one Text View & Radio button Group by index at design time. which will fetch the values(ie Values are Questions & Ans options ) from R/3. since I need to fetch N number of values which must be mapped with Multiple Text views & Radio Button Groups i want to create Text view & Radio button Group by index UI Elements dynamically.How to do that?
    Please bring me an solution to this problem.
    Thanks in advance.
    Regards,
    Malar.

    Hi Murtuza,
                        Thanks for ur solution...
    anyway again i got an same error. Option button not enabled...
    so i have created a dynamic context node & map it with the RadioButton Group by Index...Now it s working fine...
    if(firstTime){
           //Test2Node.invalidate();
              for(int i=0;i<wdContext.nodeQuestions().size();i++)
                        IWDNodeInfo nodeinfo=wdContext.getNodeInfo();
                        /* This will add a ValueNode */
                        IWDNodeInfo customerNode=nodeinfo.addChild("Questionaire"+i,null,true,true,true,false,false,true,null,null,null);
                        /* This will add a Attribute to the above Node */
                        IWDAttributeInfo custAttr=customerNode.addAttribute("Quest"+i,"com.sap.dictionary.string");
                        IWDAttributeInfo custAttr1=customerNode.addAttribute("Options"+i,"com.sap.dictionary.string");
                        IWDNode NodeQuest = wdContext.getChildNode("Questionaire"+i,0);
                        NodeQuest.getCurrentElement().setAttributeValue("Quest"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getQues());
              //     NodeQuest.getCurrentElement().setAttributeValue("Options"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getOptionA());
                   IWDTransparentContainer tc = (IWDTransparentContainer)view.getElement("TransparentContainer");
                        IWDTextView tv =(IWDTextView) view.createElement(IWDTextView.class,"MyTextView1"+i);
                      tv.setText(wdContext.nodeQuestions().getQuestionsElementAt(i).getQues());
                      tc.addChild(tv);
                     IWDNodeElement NodeElt= NodeQuest.createElement();
                     NodeElt.setAttributeValue("Options"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getOptionA());
                  NodeQuest.addElement(NodeElt);
                   IWDNodeElement NodeElt1= NodeQuest.createElement();
                                   NodeElt1.setAttributeValue("Options"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getOptionB());
                                   NodeQuest.addElement(NodeElt1);
                   IWDNodeElement NodeElt2= NodeQuest.createElement();
                                   NodeElt2.setAttributeValue("Options"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getOptionC());
                                   NodeQuest.addElement(NodeElt2);
                   IWDNodeElement NodeElt3= NodeQuest.createElement();
                                                  NodeElt3.setAttributeValue("Options"+i,wdContext.nodeQuestions().getQuestionsElementAt(i).getOptionD());
                                                  NodeQuest.addElement(NodeElt3);
                   IWDRadioButtonGroupByIndex rbg = (IWDRadioButtonGroupByIndex)view.createElement(IWDRadioButtonGroupByIndex.class,"RBG1"+i);
                             rbg.bindTexts("Questionaire"i".Options"+i);     
                             //IWDRadioButton rb = (IWDRadioButton)view.createElement(IWDRadioButton.class,"RBG1"+Iter);
                             //rb.bindText("Test2.RadioTest");          
                                tc.addChild(rbg);
                 This s the code....
    Thank you. anyway
    Regards,
    Thenmalar

  • Dynamic Radiobutton Group By key in Web dynpro Java

    Hi I am making an online exam application in that there is a question and four options.  But when i am trying to create radiobuttons i could not bind options with radiobuttons. I tried using all three types of radiobuttons i.e single radiobuttons, group by index and group by key but the problem is the same
    for(int j=0;j<4;j++)
        IWDRadioButtonGroupByIndex radioButtonGroupByIndex = (IWDRadioButtonGroupByIndex)view.createElement    (IWDRadioButtonGroupByIndex.class,"RadioButtonGroupByIndex1"ij);
    radioButtonGroupByIndex.bindTexts("Questions.option"+wdContext.nodeQuestions().getQuestionsElementAt(i).getOption());
    radioButtonGroupByIndex.setColCount(1);
    transparentContainer.addChild(radioButtonGroupByIndex);
    The problem is I get the same set of options in all the questions.
    I am confused at what code should i write in bindTexts in groupby index and bindSelectedKey in groupby key
    Please help
    Swapnil Indulkar

    That's absolutely genius, Armin !
    This didn't strike my mind. Wonderful solution.
    However i have managed to achieve it in a bit complex way as compared to yours.
    (I have hard-coded it for 3 questions with 4 options each.)
    //Code in wdDoInit() of View
         g_questionNode = wdThis.wdGetAPI().getContext().getRootNode().getChildNode("Questions", IWDNode.LEAD_SELECTION);
         g_optionsNode = wdThis.wdGetAPI().getContext().getRootNode().getChildNode("Options", IWDNode.LEAD_SELECTION);
         for(int i=0; i<3; i++){
              g_questionNode.getNodeInfo().addAttribute("Question"+i,"com.sap.dictionary.string");
              g_questionNode.getCurrentElement().setAttributeValue("Question"+i, "This is QuestionText["+ i+"] ?");
              g_optionsNode.getNodeInfo().addAttribute("Option"+i,"com.sap.dictionary.string");
              IModifiableSimpleValueSet optionsSet = g_optionsNode.getNodeInfo().getAttribute("Option"+i).getModifiableSimpleType().getSVServices().getModifiableSimpleValueSet();
              for(int j=0; j<4; j++){
                   optionsSet.put("Q"+i+"O"+j, "This is optionText[" +j +"] for QuestionText[" + i + "]");
    //Code in wdDoModifyView()
        if(firstTime){
              IWDTransparentContainer rootContainer = (IWDTransparentContainer) view.getElement("RootUIElementContainer");
              for(int i=0; i<3; i++){
                   IWDLabel label = (IWDLabel) view.createElement(IWDLabel.class, "label_"+i);
                   rootContainer.addChild(label);
                   label.bindText(g_questionNode.getNodeInfo().getAttribute("Question"+i));
                   label.setDesign(WDLabelDesign.EMPHASIZED);
                   IWDGridData labelGridData = (IWDGridData) label.createLayoutData(IWDGridData.class);
                   labelGridData.setCellBackgroundDesign(WDCellBackgroundDesign.PLAIN);
                   labelGridData.setHAlign(WDCellHAlign.CENTER);
                   IWDRadioButtonGroupByKey rbgbk = (IWDRadioButtonGroupByKey)view.createElement (IWDRadioButtonGroupByKey.class,"rbgbk_"+i);
                   rootContainer.addChild(rbgbk);
                   label.setLabelFor("rbgbk_"+i);
                   rbgbk.bindSelectedKey(g_optionsNode.getNodeInfo().getAttribute("Option"+i));
                   IWDGridData rbgbkGridData = (IWDGridData) rbgbk.createLayoutData(IWDGridData.class);
                   rbgbkGridData.setCellBackgroundDesign(WDCellBackgroundDesign.PLAIN);
                   rbgbkGridData.setHAlign(WDCellHAlign.CENTER);
    This works fine too.
    With regards,
    Amey Mogare

  • How to handle multiple radiobutton groups in a selection screen?

    Hi All,
    I have tabbed selection screen.
    * SELECTION SCREEN                                    *
    SELECTION-SCREEN BEGIN OF TABBED BLOCK TABB1 FOR 20 LINES.
    SELECTION-SCREEN TAB (20) TAB1 USER-COMMAND TAB1
                         DEFAULT SCREEN 1010.
    SELECTION-SCREEN TAB (20) TAB2 USER-COMMAND TAB2
                         DEFAULT SCREEN 1020.
    SELECTION-SCREEN END OF BLOCK TABB1.
    I have a radiobutton group in each of my tabs in the selection screen.
    SELECTION-SCREEN BEGIN OF SCREEN 1010 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK GUI WITH FRAME." TITLE TEXT-GUI.
    PARAMETERS: P_GUI1 RADIOBUTTON GROUP GUI,
                P_GUI2 RADIOBUTTON GROUP GUI,
                P_GUI3 RADIOBUTTON GROUP GUI,
                P_GUI4 RADIOBUTTON GROUP GUI,
                P_GUI5 RADIOBUTTON GROUP GUI,
    SELECTION-SCREEN END OF BLOCK GUI.
    SELECTION-SCREEN END OF SCREEN 1010.
    SELECTION-SCREEN BEGIN OF SCREEN 1020 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK REP WITH FRAME." TITLE TEXT-REP.
    PARAMETERS: P_REP1 RADIOBUTTON GROUP REP,
                P_REP2 RADIOBUTTON GROUP REP,
                P_REP3 RADIOBUTTON GROUP REP.
    SELECTION-SCREEN END OF BLOCK REP.
    SELECTION-SCREEN END OF SCREEN 1020.
    The issue is I want to be able to process only one of the tabs based on the checked radiobutton, but by default both the groups will have one of the radiobuttons checked. My piece of code is something like this.
    data : c_selected(1) value 'X'.
    case c_selected.
    when P_GUI1.
    * Process GUI 1
    when P_GUI2.
    * Process GUI 2
    when P_GUI3.
    * Process GUI 3
    when P_GUI4.
    * Process GUI 4
    when P_GUI5.
    * Process GUI 5
    when P_REP1.
    * Process Report 1
    when P_REP2.
    * Process Report 2
    when P_REP3.
    * Process Report 3
    endcase.
    How do I acheive this?
    Karthik
    Edited by: Karthik Boyapalli on Jun 16, 2008 9:10 PM

    The issue is I want to be able to process only one of the tabs based on the checked radiobutton, but by default both the groups will have one of the radiobuttons checked. My piece of code is something like this.
    You will be able to process the Radiobutton based on the tab. Use the sy-ucomm to determine the TAB that is selected on the selection screen. Then you can do further processing based on the radio button selected.
    Only one TAB will be available for User Interaction so there will be no issue with processing based on the radio button

  • Report design Grouping problem

    I'm currently designing a report, something like an invoice. The invoice number is usually on the page header. But now i want to create a report to list down all the invoice numbers in the 'details' but when i drag the 'invoice number' data to 'details'
    it only show 1 row of numbers, wheareas the data has few rows of it. How can i make it view all my numbers? 

    Hi Eugene,
    Thank you for posting in MSDN forum.
    Since this forum is discuss the VS test issue, so
    I’m afraid that it is not the correct forum for this issue.
    As you said that the report design grouping problem, I suggest you could try to consult this issue directly to the VS Report Controls forum:
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=vsreportcontrols , maybe you will get better support.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to use a radiobutton  group on table control ?

    In the selection screen ,i could define a variable as radiobutton group xxx .It's just so easy ,button when I want to use it in the table control through the the wizard ,but in the 4.6c version there is simply no such as radionbutton component in the panel .how could i do ?

    Hi Jack,
    It's a bit tricky to get the Radio Button in the Table Control. Only a few things needs to be done.
    1. Create a structure with an Checkbox field of TYPE CHAR 1.
    2. Create the Table Control with Wizard and mark the Checkbox field as CHECKBOX in one of the popup.
    3. In the Screen, right-click on the Checkbox field. You will get a list of options and there you should check the radio button option. You will get the selection as Radio button available across all the rows.
    You can check out the demo codes at SE38 by searching DYNPRO.
    Also have a look at this following link.
    http://www.esnips.com/doc/48bd95e8-facc-4932-b923-465ba59bad24/Table-Control
    Hope this will help.
    Thanks,
    Samantak.

  • At selection-screen on radiobutton group is triggering again on execute??

    Hi Friends,
    I want to show a Information pop up on selection of a radio button for that i have done
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RG.
      IF P_UPL = 'X'.
        CALL FUNCTION 'POPUP_TO_INFORM'
          EXPORTING
            TITEL = TEXT-017
            TXT1  = TEXT-015
            TXT2  = TEXT-016.
      ENDIF.
    I have two radio buttons and second radio button is P_UPL. Its working fine.
    But same event is getting triggered when execute button is pressed( i mean when report is executed ), which i don't want.
    How to restrict.
    Any help is greately appreciated.
    Thanks,
    Simha

    when the event is clicked for the first time .
    Initiate the before the popup is called .
    Now when again when you execute and p_upl = 'X'
    check the falg if value then don't call the pop-up .
    and clear the flag at that moment .
    So the Popup fun is ignored when you click execute event .
    SEE THE lines in bold .
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RG.
      IF P_UPL = 'X'.
    if v_flag is initial.
    v_flag = 'X'.
        CALL FUNCTION 'POPUP_TO_INFORM'
          EXPORTING
            TITEL = TEXT-017
            TXT1  = TEXT-015
            TXT2  = TEXT-016.
    ENDIF.
      ENDIF.

  • UME Roles/Groups problem

    UME Roles/Groups problem
    I have installed an ABAP +J2EE instance with the view of using it for Adobe Document Services.
    While following the Adobe Document Services configuration guide, Step 3.2.1.1:
    I'm creating a role in the ABAP engine, creating a user (ADSUser); creating and assigning the role (ADSCallers) to it.
    When I start visual admin, i expect the user to be shown under the 'group': ADSCallers.
    While I can see the user in visual admin, I'm unable to see the group (role in ABAP instance)
    I'm on SP19 NW2004. Any views???

    There is a delay before roles show up as groups on the Java side. The delay runs about 30 minutes. See http://help.sap.com/saphelp_nw04s/helpdata/en/45/af3ac012d32e78e10000000a155369/frameset.htm
    -Michael

  • DW CS3 site cache problem

    I upgraded to CS3 with no problems except I now find that if
    I attempt to delete a word of pdf file that I know is linked to an
    htm page, DW no longer gives me a warning message. This means that
    If I do a sync. any updated word or pdf files do not get uploaded
    to the server. If I do re-create the site cache the files still do
    not get "re-linked". Anybody got an idea what is going on? I have
    an awful lot of pdfs and docs linked from my site.
    Thanx in advance

    I figured out if I drag the file window to the left it will
    stay on the left. I thought
    before in previous version when you select files to be on the
    left the preferences menu they would go to the left. Problem
    solved.
    RazorTrak

  • Checking of Radiobutton Group selection

    Hi,
    I have a screen wherein i have 3 Radiobuttons wrapped in radiobutton group and  2 input fileds. Whenever i select  1st radiobutton on the screen then 1st imput field should be enabled and the other field should be disabled.
    if i click second radiobutton then 2nd field should be enabled and first one should be disabled. if i click 3rd radiobutton then two of the fields should be enabled.
    I have tried using onClick event for radiobuttongroup but ended up in Portal Runtime Exception. May be, i'm not using the event in a correct way ?. Should we use onClick event of RadiobuttonGroup or is there any other way to achieve the same ? . Would be happy if you can send code snippet for reference
    Any ideas/help would be rewarded..
    Jojo

    HI,
    Try this
    <%@ taglib uri="tagLib" prefix="hbj" %>
    <%@ page import = "com.sapportals.htmlb.enum.EventTrigger" %>
    <%@ page import = "com.sapportals.htmlb.event.Event;"%>
    <hbj:content id="myContext" >
      <hbj:page title="PageTitle">
    <hbj:form id="myFormId" >
    <script>
    function process()
    var funcName = htmlb_formid+"_getHtmlbElementId";
    func = window[funcName];
    var inputfield1 = eval(func("txtMaterialNumberFrom"));
    if (!inputfield1.isEnabled) {
          inputfield1.setEnabled(true);
    function process1()
    var funcName = htmlb_formid+"_getHtmlbElementId";
    func = window[funcName];
    var inputfield1 = eval(func("txtMaterialNumberFrom"));
    if (inputfield1.isEnabled) {
    inputfield1.setDisabled(true);
    </script> 
    <hbj:inputField
    id="txtMaterialNumberFrom"
    type="string"
    maxlength="100"
    jsObjectNeeded="TRUE"/>
    <hbj:radioButtonGroup
    id="radioGroup"
    columnCount="1"
    selection="BOL">
    <hbj:radioButton
    id="BOLProducts"
    text="BOL Products"
    key="BOL"
    tooltip="Search BOL products"
    jsObjectNeeded="TRUE">
    <% radioGroup.getRadioButtonForKey("BOL").setClientEvent(EventTrigger.ON_CLICK, "process()"); %>
    </hbj:radioButton>
    <hbj:radioButton
    id="MOLProducts"
    text="MOL Products"
    key="MOL"
    tooltip="Search MOL products"
    jsObjectNeeded="TRUE">
    <% radioGroup.getRadioButtonForKey("MOL").setClientEvent(EventTrigger.ON_CLICK, "process1()"); %>
    </hbj:radioButton>
    </hbj:radioButtonGroup>
       </hbj:form>
      </hbj:page>
    </hbj:content>
    if you click on MOL the inputfield will be disabled.
    if you click on BOL the inputfield will be enabled.
    Message was edited by: Kirupanand Venkatapathi

  • CS3 Illustrator crashing problem

    Hello all,
    Lately my illustrator cs3 has been crashing every time I try to save a new file. It is so frustrating after doing all the work and can't save. I work on Windows XP 2002 system. Can anyone help?
    Thanks so much!

    Hi Jacob, Just so you know, I was in a hurry and no way was able to buy an expensive product to do my artwork project. I couldn't find older TRIAL versions to download without 3rd party attached  programs & BS that could be bad to do.
    But, I need to go back on the forum to say that I rebooted to try one more time and it worked. Don't know why it didn't work the first time around because it was a fresh open of Illustrator, hadn't been working on it for a month then the first time didn't work.
    I don't have time to go back on the forum right now got to leave for work. You can mention you heard this from me if you want so that people aren't misinformed.
    thanks for replying
    Jacob Bugge <[email protected]> wrote:
    Jacob Bugge http://forums.adobe.com/people/Jacob+Bugge created the discussion
    "Re: CS3 Illustrator crashing problem"
    To view the discussion, visit: http://forums.adobe.com/message/5926730#5926730

  • Hide radiobutton group

    Hi
    I maintained two radiobuttons one for uploading the data record and other generating a smartform in the standard selection screen.
    And I have another set of radiobuttons below smartorm radiobutton.when I click on the smart form radiobutton only those suboptions  should be displayed.How can i do this. Pls Reply soon.

    Hi,
    Go through this piece of code as an example...
    TABLES: MARA,
             EKKO,
             VBAK.
    PARAMETERS: P1 TYPE C RADIOBUTTON GROUP GRP1 USER-COMMAND USER_SEL DEFAULT 'X',
                 P2 TYPE C RADIOBUTTON GROUP GRP1,
                 P3 TYPE C RADIOBUTTON GROUP GRP1.
    SELECT-OPTIONS : S_MARA FOR MARA-MATNR MODIF ID MI1,
                      S_EKKO FOR EKKO-EBELN MODIF ID MI2,
                      S_VBAK FOR VBAK-VBELN MODIF ID MI3.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
      IF SCREEN-GROUP1 = 'MI1'.
        IF P1 = 'X'.
          SCREEN-INVISIBLE = '0'.
          SCREEN-ACTIVE = '1'.
          ELSE.
            SCREEN-INVISIBLE = '1'.
            SCREEN-ACTIVE = '0'.
        ENDIF.
         MODIFY SCREEN.
      ENDIF.
      IF SCREEN-GROUP1 = 'MI2'.
        IF P2 = 'X'.
          SCREEN-INVISIBLE = '0'.
          SCREEN-ACTIVE = '1'.
          ELSE.
            SCREEN-INVISIBLE = '1'.
            SCREEN-ACTIVE = '0'.
        ENDIF.
          MODIFY SCREEN .
      ENDIF.
      IF SCREEN-GROUP1 = 'MI3'.
        IF P3 = 'X'.
          SCREEN-INVISIBLE = '0'.
          SCREEN-ACTIVE = '1'.
          ELSE.
            SCREEN-INVISIBLE = '1'.
            SCREEN-ACTIVE = '0'.
        ENDIF.
          MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    Regards.

  • Problem with html table and htmlb radiobutton group

    Hello,
    I wrote this code:
           <table width="100%" border="1">
            <tr>
              <th>
                Valutazione manageriale complessiva dell#anno
              </th>
              <th>1</th>
              <th>2</th>
              <th>3</th>
            </tr>
            <tr>
              <th>
                imprenditività
              </th>
              <htmlb:radioButtonGroup id="PROVA1"
                                       columnCount="3"
                                        mode="LOGICAL_GROUPING">
              <th><htmlb:radioButton id="1" text="1"  encode="TRUE"/></th>
              <th><htmlb:radioButton id="2" text="2"  encode="TRUE"/></th>
              <th><htmlb:radioButton id="3" text="3"  encode="TRUE"/></th>
              </htmlb:radioButtonGroup>
            </tr>
            <tr>
              <th>
                Autorevolezza
              </th>
              <htmlb:radioButtonGroup id="PROVA2"
                                       columnCount="3"
                                        mode="LOGICAL_GROUPING">
              <th><htmlb:radioButton id="1" text="1"  encode="TRUE"/></th>
              <th><htmlb:radioButton id="2" text="2"  encode="TRUE"/></th>
              <th><htmlb:radioButton id="3" text="3"  encode="TRUE"/></th>
              </htmlb:radioButtonGroup>
            </tr>
          </table>
    but the third row (where there is "Autorevollezza/PROVA2") appears out of the table.
    Do yuo now why?
    Regards
    Maria

    you need to put the htmlb:radioButtonGroup Tags within the
    tags
    <tr>
    <td>
    imprenditività
    </td>
    <td>
        <htmlb:radioButtonGroup id="PROVA1" columnCount="3" mode="LOGICAL_GROUPING">
        <htmlb:radioButton id="1" text="1" encode="TRUE"></htmlb:radioButton></td>
    <td><htmlb:radioButton id="2" text="2" encode="TRUE"></htmlb:radioButton></td>
    <td><htmlb:radioButton id="3" text="3" encode="TRUE"></htmlb:radioButton>
         </htmlb:radioButtonGroup></td>
    </tr>
    there is a invisible table rendered by htmlb and the browser does not know what to do when you put that between </tr> and </table> so he ends your table...
    better you use <htmlb:gridLayout> instead of html-tables...
    stefan

  • Report based on a reord group - PROBLEM

    Using Reports Server / Forms/Reports 6i
    I am trying to run a report based on a record group on the web. It fails giving the error 'Cannot run report.'
    The report is called from a form and the record group is passed as a data parameter. It works fine in Client/Server.
    I have tried to remove the data parameter and run the report without it but, despite working in the Client/Server environment, it still fails on the Web.
    Does anyone have any suggestions?

    I have found the answer to my problem in the forms forum!
    Apparently, this type of report won't work on the web and I have to use temporary tables!

  • How do I resize pinned tabs/deal with tab group problems in Firefox 22?

    With the automatic update to Firefox 22, my pinned tabs have ballooned in size; not only does this look horrible, but it reduces the real estate available for other tabs. While NoSquint has sorted the issue with websites randomly resizing themselves, everything else (add-on menu, toolbar icons) has also increased in size, which affects what can be displayed.
    Another problem with 22 is that my tab groups are no longer behaving normally: I click on one group and another group moves around the screen, typically jumping behind the original group I clicked on. Any suggestions for how to improve these problems are much appreciated.

    hello, firefox 22 is now respecting the pixel density you've set on a system level in the windows control panel > appearance > display. more information about that is availbale at http://windows.microsoft.com/en-us/windows7/make-the-text-on-your-screen-larger-or-smaller
    if you want to set the text size/pixel density in firefox different from that of your system's settings like it was handled in prior versions, enter '''about:config''' into the firefox address bar (confirm the info message in case it shows up) & search for the preference named '''layout.css.devPixelsPerPx'''. double-click it and change its value to '''1.0''' (or any other zoom factor that fits your purpose; 0.8 equals 80%, 1.15 is 115% and so on..., -1.0 is the default value and will adhere to the system settings).

Maybe you are looking for

  • Import/export issue to migrate the project

    Hi, I am trying to migrate a project from 1 server to another server. I exported the project and model from my current server, and imported them to the new server. the thing is, the senario can be run successfully, but when I open the interface in de

  • IPhone OS 3.1.3 - iTunes delay with recognising that iPhone is connected

    I recently updated my iPhone OS to 3.1.3 and everything appears to be working fine for me - I first upgraded iTunes to the latest version and then upgraded the iPhone OS. The only issue that I'm facing is that each time I connect my iPhone to the USB

  • Batch-input to transaction SM34

    Hello, I need to create a batch-input for the transaction SM34. I have done a recording but there is a screen(dialog structure) that only appeares when I call the transaction without batch-input mode. So, I have done the recording with the option "No

  • XCELSIUS 2008 COMPONENT SDK

    Hi, Can some give me link to where I can install the SDK to go with Xcelsius 2008 SP2 @ SAP Dashboard Design (Xcelsius Engage) 2008 Component SDK SP3 I can see SDK SP3, but this I believe needs Xcelsius SP3. I am looking for the SDK to go with Xcelsi

  • Problem moving CS5 to new computer

    I am trying to move my CS5 to my new laptop. The original media was on discs, and the new computer does not have a disc drive. I downloaded the direct download from the Adobe site, but it does not accept the original serial number. Does this have any