How to do the really simple stuff? changing tool, setting color etc

Hi all,
I've been trying to do a color picker. I have managed to get it running with a UI and all looks sweet, but I have no clue how to actually do anything! Photoshop launches it just fine.
Simple stuff really:
1. How do you set the tool to the eyedropper? (I already have code working that detects when the mouse moves outside the window)
2. How do you set the color? Looking for a function like setColor() so that the current context get the color and user can preview the result (i.e. color overlay)
To me it sounds like these two would be simple one liners, but I can't for the love of God figure out how to do it!
Documentation for JS is pretty good though, but I haven't been able to run JS code from my color picker. Here's my attempt att running javascript code:
bool runJavascript(const char* jscode)
  // Sanity check
  if (sSPBasic == nil)
    NSLog(@"sSPBasic is NULL");
    return false;
  ASErr err = 0;
  JSScriptingSuite2* sScriptingSuite = NULL;
  err = sSPBasic->AcquireSuite(kJSScriptingSuite, kJSScriptingSuiteVersion2, (const void**)&sScriptingSuite);
  if (sScriptingSuite == NULL)  //Also support Photoshop CS1-CS4 and Elements 6-10
    err = sSPBasic->AcquireSuite( kJSScriptingSuite, kJSScriptingSuiteVersion1, (const void**)&sScriptingSuite);
  if  (sScriptingSuite == NULL) return false;
  JSEngineRef engineRef = NULL;
  err = sScriptingSuite->CreateEngine(&engineRef);
  if (err == kSPNoError)
    //Convert ascii to unicode
    wchar_t  * wcode;
    size_t codelength = strlen(jscode)+1;
    wcode = (wchar_t *)malloc(codelength*sizeof(wchar_t));
    mbstowcs(wcode, jscode, codelength);
    const ASUnicode * result = NULL;
    err = sScriptingSuite->ExecuteScript(engineRef, (ASUnicode*)wcode, kJSExecutionModeNoDebug, &result);
    if (err != kSPNoError)
      NSLog(@"JavaScript error (%d). Script: %s", (int)*result, jscode);
    else
      NSLog(@"JavaScript OK!");
    free(wcode);
  else
    return false;
  if (engineRef)
    sScriptingSuite->DeleteEngine( engineRef);
  return true;
Which doesn't really work. It seems like the culprit is the conversion from char* to ASUnicode. In the example they had
const ASUnicode test[] = {'a', 'l', 'e', 'r', 't', '(', '\'', 'h', 'i', '\'', ')', ';', 0 } ;
which works just fine. But apparently I don't convert my string to ASUnicode the correct way. Any ideas or comments are very appreciated!

char src[1024] = "alert('hello dissolve')";
ASZString newZString;
ASUnicode script[1024];
sASZString->MakeFromCString(src, strlen(src) + 1, &newZString);
sASZString->AsUnicodeCString(newZString, script, strlen(src) + 1, false);
const ASUnicode * result;
sScripting->ExecuteScript(engineRef, script, kJSExecutionModeNoDebug, &result);
sScripting->DeleteEngine(engineRef);
sASZString->Release(newZString);

Similar Messages

  • How to stop the option key from changing tools when trying to subtract from a selection?

    How to stop the option key from changing my tools when I am trying to subtract from a selection?
    I'm running CS3 on Mac OS Leopard, and the automatic tool switching slows me down, but even preferences doesn't show a way to turn this off.
    Thanks for your help.

    With any marquee tool, JUST holding down the option key should not switch tools. You need to explain the problem much more carefully, It's completely impossible to tell from your description whats going wrong.
    automatic tool switching
    The only preference related to this, is to do with the SHIFT KEY - "use Shift key for tool switch".

  • How to handle the different pricing conditions changes in BI.

    Dear Friends
    can any one send me  Regarding
                    How to handle the different pricing conditions changes in BI.
    Thanks & Regards
    Ramana

    Hi,
    Take a look at the 0sd_o06 ODS and 2lis_13_vdkon datasource for sales billing conditions.
    http://help.sap.com/saphelp_nw70/helpdata/EN/36/8188408bc0bb4de10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/7f/0f8c4037fba62be10000000a1550b0/frameset.htm
    Regards.

  • HT5868 How to untrust the computer if I change mind?

    How to untrust the computer if I change mind?

    Deauthorizing/authorizing is different than untrusting/trusting.
    Apple in
    iOS: 'Trust This Computer' alert
    says
    Note: If you select Trust, the computer will be trusted indefinitely.
    However, this says if you manually delete a file it will be untrusted.
    any options to "untrust" the computer?

  • How to assign the vendor for Pipeline material like Oil,power etc.

    Dear All,
    Can anybody tell me , how tp  assign the vendor for Pipeline material like Oil,power etc.

    Dear,
    Create source list ME01 maintain vendor here if vendors are multiple.
    Create Info record ME11for vendor and material combination
    Regards,
    R.Brahmankar

  • How to find the user who has changed a field in a table

    Hello
        Someone has changed a field  cost center in my table so i need to find the user who hav changed it.Can anyone tel me how to find it.
    Regards

    HI ,
    Create a Z test program using the particular table and filed .
    Now goto SE38 and execute the program " RSDEPEND "
    give the ur test program and then execute . u will get the list of the last  change of ur program
    ( table and fields used inthis program)
    Another way :
    for data element :
    refer table 
      DD04L and get the user name
    for domain
    DD01L
    Edited by: shambhu sharan pandey on Nov 13, 2009 5:49 AM

  • How to find the Column data type changes in table

    Hi All,
    I need to find out the column data type changes where made recently in table .
    How do i check past changes in column data type. Any data dictionary are there to find out the data type changes in the column .
    Thanks in advance..

    <FONT FACE="Arial" size=2 color="2D0000">
    You have the answer on hand (user_arguments / all_arguments)!
    SQL> desc user_arguments
    Name                                      Null?    Typ
    OBJECT_NAME      VARCHAR2(30)
    PACKAGE_NAME     VARCHAR2(30)
    OBJECT_ID     NOT NULL NUMBER
    OVERLOAD       VARCHAR2(40)
    ARGUMENT_NAME  VARCHAR2(30)
    POSITION       NOT NULL NUMBER
    SEQUENCE       NOT NULL NUMBER
    DATA_LEVEL     NOT NULL NUMBER
    DATA_TYPE      VARCHAR2(30) --> Data Type
    DEFAULT_VALUE  LONG
    DEFAULT_LENGTH NUMBER
    IN_OUT         VARCHAR2(9) -->Argument direction (IN,OUT,or IN/OUT)
    DATA_LENGTH    NUMBER
    DATA_PRECISION NUMBER
    DATA_SCALE     NUMBER
    RADIX          NUMBER
    CHARACTER_SET_NAME VARCHAR2(44)
    TYPE_OWNER         VARCHAR2(30)
    TYPE_NAME          VARCHAR2(30)
    TYPE_SUBNAME       VARCHAR2(30)
    TYPE_LINK          VARCHAR2(128)
    PLS_TYPE           VARCHAR2(30)
    CHAR_LENGTH        NUMBER
    CHAR_USED          VARCHAR2(1)
    Look for Data_Type where IN_OUT say OUT. That will be the data type retruned by that function.
    Edited :
    or POSITION in argument list,or null for function return value
    -SK
    </FONT>

  • How to address the IP address automatically changing problem?

    My Oracle database 10g(10.2.0) is on the WinXP platform and the system IP address often changes automatically. This leads to some troubles with my Oracle database. How to deal with this problem? How to stop the IP changing problem?

    frank.qian wrote:
    But my database is using an ipaddress now. When I use loalhost instead, can database accept this?The database doesn't know or care. Its all in your network configuration files ... listener.ora and tnsnames.ora, and your 'hosts' file.
    Edited by: EdStevens on Dec 1, 2008 8:47 PM

  • How to clear the PPC balance to change the material type?

    Dear experts,
    Our customer need to change some material type (valuation class as well) from semi-finished product to purchase part. It uses Product Cost Collector for semi-finished/finished product and never makes settlement for any PCC.
    To change the material type through MMAM requires zero stock and cleared PCC balance. So we removed the stock of the semi-finished product and settled the PCC for every month of this year.
    Since the products could have entry this year and last year, even if we settled their balances of this year, it still can not be changed the material type.
    And we do not know how to settle the PCC balance of last year because only one field YEAR can be entered on screen KK87/CO88. If I enter settleme period 11, posting period 12 and fiscal year 2007, system will give error "Period 12 is not allowed".
    But we happend to find one product has no entry this year but has balance value of last year. Its material type can be changed w/o any errors, which seems last year balance has no impact material type change. I get confused.
    Can any one advise whether I'm wrong and where?

    Hi Sharan,
    Matl Povided to Vendor stock will appear in Subcontracting scenario.
    If at all you have given some material to a subcontractor , this will be consumed automaticaly when you will recieve the ordered material from subcontractor.that is 543 movement will take place in the backgroung when u do the GR.
    In case if u need to clear the stock u can do 542 and take the stock back to unrestricted.
    Edited by: Donsandy on Jan 21, 2009 6:19 PM

  • How to change font/ font color etc in a graphic object using JCombobox?

    Hello
    My program im writing recently is a small tiny application which can change fonts, font sizes, font colors and background color of the graphics object containing some strings. Im planning to use Jcomboboxes for all those 4 ideas in implementing those functions. Somehow it doesnt work! Any help would be grateful.
    So currently what ive done so far is that: Im using two classes to implement the whole program. One class is the main class which contains the GUI with its components (Jcomboboxes etc..) and the other class is a class extending JPanel which does all the drawing. Therefore it contains a graphics object in that class which draws the string. However what i want it to do is using jcombobox which should contain alit of all fonts available/ font sizes/ colors etc. When i scroll through the lists and click the one item i want - the graphics object properties (font sizes/ color etc) should change as a result.
    What ive gt so far is implemented the jcomboboxes in place. Problem is i cant get the font to change once selecting an item form it.
    Another problem is that to set the color of font - i need to use it with a graphics object in the paintcomponent method. In this case i dnt want to create several diff paint.. method with different property settings (font/ size/ color)
    Below is my code; perhaps you'll understand more looking at code.
    public class main...
    Color[] Colors = {Color.BLUE, Color.RED, Color.GREEN};
            ColorList = new JComboBox(Colors);
    ColorList.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent ev) {
                     JComboBox cb = (JComboBox)ev.getSource();
                    Color colorType = (Color)cb.getSelectedItem();
                    drawingBoard.setBackground(colorType);
              });;1) providing the GUI is correctly implemented with components
    2) Combobox stores the colors in an array
    3) ActionListener should do following job: (but cant get it right - that is where my problem is)
    - once selected the item (color/ font size etc... as i would have similar methods for each) i want, it should pass the item into the drawingboard class (JPanel) and then this class should do the job.
    public class DrawingBoard extends JPanel {
           private String message;
           public DrawingBoard() {
                  setBackground(Color.white);
                  Font font = new Font("Serif", Font.PLAIN, fontSize);
                  setFont(font);
                  message = "";
           public void setMessage(String m) {
                message = m;
                repaint();
           public void paintComponent(Graphics g) {
                  super.paintComponent(g);
                  //setBackground(Color.RED);
                  Graphics2D g2 = (Graphics2D) g;
                  g2.setRenderingHint             
                  g2.drawString(message, 50, 50);
           public void settingFont(String font) {
                //not sure how to implement this?                          //Jcombobox should pass an item to this
                                   //it should match against all known fonts in system then set that font to the graphics
          private void settingFontSize(Graphics g, int f) {
                         //same probelm with above..              
          public void setBackgroundColor(Color c) {
               setBackground(c);
               repaint(); // still not sure if this done corretly.
          public void setFontColor(Color c) {
                    //not sure how to do this part aswell.
                   //i know a method " g.setColor(c)" exist but i need to use a graphics object - and to do that i need to pass it in (then it will cause some confusion in the main class (previous code)
           My problems have been highlighted in the comments of code above.
    Any help will be much appreciated thanks!!!

    It is the completely correct code
    I hope that's what you need
    Just put DrawingBoard into JFrame and run
    Good luck!
    public class DrawingBoard extends JPanel implements ActionListener{
         private String message = "message";
         private Font font = new Font("Serif", Font.PLAIN, 10);
         private Color color = Color.RED;
         private Color bg = Color.WHITE;
         private int size = 10;
         public DrawingBoard(){
              JComboBox cbFont = new JComboBox(GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames());
              cbFont.setActionCommand("font");
              JComboBox cbSize = new JComboBox(new Integer[]{new Integer(14), new Integer(13)});
              cbSize.setActionCommand("size");
              JComboBox cbColor = new JComboBox(new Color[]{Color.BLUE, Color.RED, Color.GREEN});
              cbColor.setActionCommand("color");
              JComboBox cbBG = new JComboBox(new Color[]{Color.BLUE, Color.RED, Color.GREEN});
              cbBG.setActionCommand("bg");
              add(cbFont);
              cbFont.addActionListener(this);
              add(cbSize);
              cbSize.addActionListener(this);
              add(cbColor);
              cbColor.addActionListener(this);
              add(cbBG);
              cbBG.addActionListener(this);
         public void setMessage(String m){
              message = m;
              repaint();
         protected void paintComponent(Graphics g){
              super.paintComponent(g);
              Graphics2D g2 = (Graphics2D)g;
              g2.setColor(bg);//set background color
              g2.fillRect(0,0, getWidth(), getHeight());          
              g2.setColor(color);//set text color
              FontRenderContext frc = g2.getFontRenderContext();
              TextLayout tl = new TextLayout(message,font,frc);//set font and message
              AffineTransform at = new AffineTransform();
              at.setToTranslation(getWidth()/2-tl.getBounds().getWidth()/2,
                        getWidth()/2 + tl.getBounds().getHeight()/2);//set text at center of panel
              g2.fill(tl.getOutline(at));
         public void actionPerformed(ActionEvent e){
              JComboBox cb = (JComboBox)e.getSource();
              if (e.getActionCommand().equals("font")){
                   font = new Font(cb.getSelectedItem().toString(), Font.PLAIN, size);
              }else if (e.getActionCommand().equals("size")){
                   size = ((Integer)cb.getSelectedItem()).intValue();
              }else if (e.getActionCommand().equals("color")){
                   color = (Color)cb.getSelectedItem();
              }else if (e.getActionCommand().equals("bg")){
                   bg = (Color)cb.getSelectedItem();
              repaint();
    }

  • How do I get a filter to change its setting as a clip progresses?

    (I have a G-5 Mac running 10.5.8 and Final Cut Pro 5).
    What I'd like to do is have a ten-second clip begin in black-and-white, and then, as the clip plays, gradually go to full color.
    What I tried was to put a keyframe at the beginning of the clip, and use Effects > Video Filters > Image Control > Desaturate, and begin with the clip desaturated, or in black and white.
    Then, I moved the playhead about two-thirds of the way down the clip, put in another keyframe, and set the desaturation filter to full color there.
    I had hoped that this would result in the clip starting out in black and white, then gradually turning to color.
    But, nothing happens. After I set the filter to color at the second keyframe, the whole clip goes back to color, and there is no desaturation at all, anywhere.
    Obviously my understanding of applying filters differentially, using keyframes, is incorrect.
    Is there a way, then, to apply a filter gradually to a clip?
    Any advice most appreciated!

    Hmm ... Just tried it on my FCP7 on OS 10.5.8 and it works.  May be time to trash preferences.  Double (triple) check that you don't have keyframes unnecessarily selected, its easily done.
    If you're really stuck what about splitting your clip with blade tool at the point you want the change to happen, desaturate one side of the clip and then use a dissolve to control the speed of change.  OR, you could copy the clip, place on top of original, fully desaturate that and use keyframes to control opacity of top clip.  Bet that works ...........

  • How to personalize the content users see with a set of questions/answers?

    Hi
    I have built my website using dreamweaver CS5.5 and would like users to be able to personalize the content that is displayed. Users will first see a page with three questions. Once they have answered the questions, they should then click 'submit' and be transferred to the site with the information most relevant to them, depending on the answers they gave to the questions.
    I know how to create froms and the questions with radio buttons, but I cannot figure out how to make the 'Submit' button link to different sites depending on the answers that users have given.I guess this will need some kind of if/then rule in JavaScript that is then linked to the 'Submit' button? I am really not sure how to best do this.
    (Note: there is no need for the answers to the survey to be saved as data anywhere if that makes life easier)
    Any advice would be greatly appreciated!

    Right, here we go, this is the code for the question form (currently still with spry validation):
    <form id="Personalize_OvDex" name="Personalize OvDex" method="post" action="">
    <p>Question 1: Do you have a faulty gene or a family history of Lynch Syndrome?</p>
    <p><span id="spryradio1">
      <label>
        <input type="radio" name="Question1" value="BRCA1" id="Q1_BRCA1" />
        Yes, I have a BRCA1 faulty gene</label>
      <br />
      <label>
        <input type="radio" name="Question1" value="BRCA2" id="Q1_BRCA2" />
        Yes, I have a BRCA2 faulty gene</label>
      <br />
      <label>
        <input type="radio" name="Question1" value="Lynch" id="Q1_Lynch" />
        Yes, I am from a Lynch Syndrome family</label>
      <br />
      <label>
        <input type="radio" name="Question1" value="unclear" id="Q1_unclear" />
        Don’t know, I have not been tested for a faulty gene or my genetic test </label>
      <br />
      <label>
        <input type="radio" name="Question1" value="negative" id="Q1_negative" />
        No, I have been tested and no faulty gene was identified</label>
      <br />
      <span class="radioRequiredMsg">Please make a selection.</span></span></p>
    <p>Question 2: Have  you ever had breast cancer? </p>
    <p><span id="spryradio2">
      <label>
        <input type="radio" name="Question2" value="noBC" id="Q2_noBC" />
        No, I have never had breast cancer</label>
      <br />
      <label>
        <input type="radio" name="Question2" value="BC" id="Q2_BC" />
        Yes, I have had breast cancer</label>
      <br />
      <span class="radioRequiredMsg">Please make a selection.</span></span></p>
      <p>Question 3: How  old are you?</p>
    <p><span id="spryradio3">
      <label>
        <input type="radio" name="Question3" value="u35" id="Q3_u35" />
        under 35</label>
      <br />
      <label>
        <input type="radio" name="Question3" value="35to39" id="Q3_35to39" />
        35 to 39</label>
      <br />
      <label>
        <input type="radio" name="Question3" value="40to49" id="Q3_40to49" />
        40 to 49</label>
      <br />
      <label>
        <input type="radio" name="Question3" value="o50" id="Q3_o50" />
        50 or over</label>
      <br />
      <span class="radioRequiredMsg">Please make a selection.</span></span></p>
      <input name="" type="submit" value="Submit now" formaction="home.html" />
    </form>
    The sets of answers that correspond to a page is made up of "home_" and then the 'value' of the answers divided by underscores. So for example if someone answers Q1 with BRCA1, Q2 with noBC and Q3 with u35, the page that would link to is called home_BRCA1_noBC_u35.html
    Here's a list of the pages for which that above logic works perfectly:
    home_BRCA1_noBC_u35.html
    home_BRCA1_noBC_35to39.html
    home_BRCA1_noBC_40to49.html
    home_BRCA1_BC_u35.html
    home_BRCA1_BC_35to39.html
    home_BRCA1_BC_40to49.html
    home_BRCA2_noBC_u35.html
    home_BRCA2_noBC_35to39.html
    home_BRCA2_noBC_40to49.html
    home_BRCA2_BC_u35.html
    home_BRCA2_BC_35to39.html
    home_BRCA2_BC_40to49.html
    home_Lynch_noBC_u35.html
    home_Lynch_noBC_35to39.html
    home_Lynch_noBC_40to49.html
    home_Lynch_BC_u35.html
    home_Lynch_BC_35to39.html
    home_Lynch_BC_40to49.html
    There are just a few exceptions in which it doesn't matter for one or more questions what people answer (then the page name doesn't include the value for that answer). These are:
    home_BRCA1_o50.html (This page will appear for those answering Q1 with BRCA1, Q2 with either noBC or BC, and Q3 with o50)
    home_BRCA2_o50.html (This page will appear for those answering Q1 with BRCA2, Q2 with either noBC or BC, and Q3 with o50)
    home_Lynch_o50.html (This page will appear for those answering Q1 with Lynch, Q2 with either noBC or BC, and Q3 with o50)
    home_unclear_noBC (This page will appear for those answering Q1 with unclear, Q2 with noBC, and Q3 with any answer)
    home_unclear_BC (This page will appear for those answering Q1 with unclear, Q2 with BC, and Q3 with any answer)
    home_negative (This page will appear for those answering Q1 with negative, Q2 with either noBC or BC, and Q3 with any answer)
    Hope this includes all the info you wanted. I know it's quite complicated.

  • How to Lock the Plug in Add on Tools in Adobe X?

    Hello,
    I have a folder level javascript with a tool button installed on users hard drives.
    Those with Adobe Reader 8 and 9 shows the add on tool button automatically.
    Those with Adobe Reader X have to use the steps as follows to show the plug in tools
    show tools pane
    extended features
    Plug in add on Tools
    The user has to follow all of the above steps each time a document is opened to click on the tool button.
    This can become time consuming when many documents need to use the tool button consecutively.
    Is there a way to lock the tool button so the user just has to click the tool button when a document is opened in Reader X?
    Any assistance will be most appreciated.
    Thank you

    In response to a question about finding the internal name of a custom button (such as one added using a folder-level JavaScript):
    The app.addToolButton() method for Acrobat 9 and earlier uses the cName parameter to define the internal name of the tool and posts it to a special "Add-on" toolbar, for example:
    app.addToolButton({
      cName: "myToolButton",
      cExec: "app.alert('Someone pressed me!')",
      cTooltext: "Push Me!",
      cLabel: "My Button",
      cEnable: true,
      nPos: 0
    In Acrobat X this function will create a new pane in the Tools Panel called "Plug-in Add-on Tools" if it's not already present, and post the button there rather than on the system toolbar or Quick Tools area; but the internal name of the resulting button used by the registry preferences will have the prefix "_legacy:". In this example, if you create a button using the above script and are referring to the button in the Acrobat X registry keys to pre-populate the button into the Quick Tools area, you should use the name
    _legacy:myToolButton
    However the button itself still has the internal name "myToolButton", so if you try to create it a second time, the script will fail because the name "myToolButton" is no longer unique. Don't use the "_legacy:" prefix in your button-creation script.
    Note that in Acrobat X 10.0 you cannot use the app.removeToolButton() method to remove any buttons from anywhere (the toolbars or the Panes), nor can you use the app.listToolbarButtons() function to return an array of all the objects; as the API has no direct connection to the toolbars or Panes. When a script tries to create a new button the Acrobat X API diverts the function call to the Tools Pane, but it's strictly a one-way conversation.

  • How to make the server aware of  changes in schemas?

    It seems that the SOA sever has difficulties with changes in schemas. For instance changes in elements names and/or types.
    Is it really nescessary to bounce server for each change?
    Rgds, Henrik

    Depends on how you deploy, if you undeploy first this has a better success rate.
    cheers
    James

  • How to edit the ACS Report Password Change Attempts by Non-Owner

    Hi,
    The scenario is the following: 1 SCOM 2007 R2 CU5 Server. ACS Installed.
    I need to add a column to the report "Password Change Attempts by Non-Owner"
    But, using SQL Server Reporting Services Report Builder 1.0, I get the following error:
    The question is:
    How to add a column in the report "Password Change Attempts by Non-Owner"?
    Thanks!

    Based on my understanding, this report could not be edited. You may need to try creating another report to achieve this:
    Some Custom ACS Reports
    http://blogs.technet.com/b/jimmyharper/archive/2009/12/10/some-custom-acs-reports.aspx
    Audit Report Scenarios: How to create custom reports with System Center Operations Manager 2007 R2 and Audit Collection Services (ACS)
    http://blogs.technet.com/b/nzdse/archive/2009/11/06/audit-scenarios-system-center-operations-manager-2007-r2-and-audit-collection-services-acs.aspx
    Hope this helps.
    Thanks.
    Nicholas Li
    TechNet Community Support

Maybe you are looking for

  • Error "page is not participating" while porting app from 10.1.2 to 10.1.3

    I have an old web application built using Struts 1.1 framework. I am trying to port this app from 10.1.2 to 10.1.3 OAS. The application is working fine on 10.1.2 for years but on porting to 10.1.3 application is working partially as some pages are ar

  • ALV Grid  Subtotal text and Total text display

    Hello ABAPGuru's I want to display the subtotal and Total texts. alv grid program runing on background. Regards Sweety(Sri)

  • Update showing as not applicable?

    I manage a network of 675 POS terminals running Windows Embedded Standard 7.  Because these terminals are located across the state, I use PowerShell extensively to perform tasks remotely for me. Currently, I have an MSI file that I need to install on

  • How to install software correctly?

    when installing a software, how can i do it so it works in both accounts? yesterday i was trying to install msn.. but i work on the account i installed? but i could found it in the other account. why? can anybody help me?

  • Definition of #HIGHLIGHT_ROW#

    Hi, Is it correct that the parameter #HIGHLIGHT_ROW# in the report templates is containing the onmouseover and onmouseout event calls of a table row? If yes, is it possible to modify it? Thanks chrissy