Simple vector problem

I need to add a double and a string as one element in a vector.
I can add doubles by themselves, however adding a string with it, doesnt seem to work.
test.addElement((new Double( 20)),(new String (star))));
Cheers for any help

basically you will need to add them separately or create your own class with a double and string in it and add this class to the vector
class twoVals {
    double dbl;
    String str;
    twoVals(double dbl, String str) {
        this.dbl = dbl;
        this.str = str;
twoVals addingElement = new twoVals(20.0, "star");
test.addElement(addingElement);to get it back
twoVals retVal = (twoVals)test.elementAt(0);

Similar Messages

  • Real simple xslt problem/question

    Hi, i have a real simple xslt problem but i just cant figure out how to do it by looking at various examples on the net. i have a xml document and in it are some elements with a "result" tag name. i want to use xslt to reproduce exactly the same xml document except with an attribute called "id" added to those elements with a "result" tag name. i'm sure that theres a simple solution to it but i just cant figure it out. any helps greatly appreciated, thanks

    Start with the XSLT identity transform (I don't have it handy and it's fairly long, but you should be able to google it up). Add this:<xsl:template match="result">
      <result id="">
        <xsl:apply-templates>
      </result>
    </xsl:template>

  • JDeveloper IDE simple setting problem

    Hi,
    Recently we switched to JDeveloper from Visual Cafe .I have a simple setting problem.How can I set the options so that IDE gives, the core java classes and packages,and our application classes and packeges, prompts in imports as well as in code.Where to set the options.
    eg: when I write
    import java. it should prompt all the pakages.
    Thanks in advance.
    -Gopal
    null

    I am not sure I understand what you are requesting, but ...
    You can configure JDeveloper projects to include various libraries by default.
    This is done by selecting menu Tools | Default Project Properties.../ Libraries tab.
    You should define a library for your classes.
    You can import any of the packages / classes from all the libraries which your project includes.
    It would be incorrect for a tool to automatically add a bunch of import lines at the top of every file because each file should import what it needs and just as importantly, not import what it does not need depending on the component type (e.g. a servlet should not include javax.swing.* ).
    An easy way to import elements into JDeveloper is to type in something like:
    import java.
    // and then type in Ctrl Space
    and this launches the package browser, you can select packages or classes to import.
    You can also do this at the variable declaratiton point such as typing in:
    foo() {
    Frame x
    // Press Control Alt Space
    and this will correctly change the type (Frame) to the type you select in the package browser and add the import statement.
    -John
    null

  • Simple OOP Problem. Help!

    This is just a simple OOP problem that i cant decide on a best
    implementation for.
    im passing an object to an instance of, 'TabbedFrame', which is just
    a frame with a Tabbed Pane in it that is holding custom panels.
    however, these custom panels need access to the object being
    passed to 'TabbedFrame' and to some methods in it.
    i cant make them static however so how do i gain access to them?
    is my only option to pass the 'TabbedFrame' to each panel?
    like - jtabbedpane.add( "Panel 1", new mypanel1(this));
    here is code:
    new TabbedFrame( DataObject );
    public class TabbedFrame{
    public TabbedFrame(DataObject do){
    this.do = do;
    jtabbedpane.add( "Panel 1", new mypanel1() );
    DataObject do;
    public class mypanel1{
    public mypanel1(){
    // need access to DataObject of the 'TabbedFrame' object that instantiated
    // this 'mypanel1' and to some of its methods
    }i would just pass the DataObject to evey panel (there are 12) but
    i also need to be able to call methods in the 'TabbedFrame'.
    Any help would be appreciated!

    Modify mypanel1's constructor:
    public class mypanel1{
    TabbedFrame tf;
    public mypanel1(TabbedFrame tf){
    this.tf = tf;
    // need access to DataObject of the 'TabbedFrame' object that instantiated
    // this 'mypanel1' and to some of its methods
    DataObject theDo = tf.getDataObject();
    tf.someMethod(); // Call method on the TabbedFrame
    }In TabbedFrame:
    public TabbedFrame(DataObject do){
    this.do = do;
    // Modify call to constructor to pass "this" TabbedFrame.
    jtabbedpane.add( "Panel 1", new mypanel1(this) );
    }

  • Why my simple vector file is so big

    Hello, i have many simple vector files, created in CS6 that are over 15MB. i had deleted all swatches, brushes and symbols. I jusc cant figure out why those files are so big
    heres an example:
    and the .ai file weight is 17,1 MB
    link to the file: http://www.sendspace.com/file/xl6n24
    thank You

    Thank you David for your time and help. You have found the error
    and i got this saving bug fixed by running this: http://helpx.adobe.com/illustrator/kb/copy-paste-artwork-slow-or.html
    "case closed"

  • Vector problem... Please help!

    Hi,
    I searched the forum but I could not get a correct answer for a vector problem I am facing. I have 2 SQL queries that are nested. Initially I tried to nest them but realized that when I close the connection to one query I cannot nest the other since the first query is closed ( blazix web server does not let you open open a wuery if you have not closed one query) Somebody had suggested to include the infor on a Vector and then reuse it. However I am not sure of how to do this.
    The following is what I have so far.
    <%@ page import="java.util.Vector" %>
    <%
    <blx:sqlQuery id="Buttons">
    Select      ID, Ntive, ButtonLabel ButtonLink
    From Pages
    </blx:sqlQuery>
    <% } else { %>
    <blx:sqlQuery id="Project">
    Select      ID, ProjectName, PLongName
    From Projects
    </blx:sqlQuery>
    <% } %>
    // now both of these queries are nested within each other to get the output.
    <blx:sqlExecuteQuery resultSet="rs" queryRef="Buttons">
    <%
    int ID = rs.getInt("ID");
    int Ntive = rs.getInt("Ntive");
    String ButtonLabel=rs.getString("ButtonLabel");
    String ButtonLink=rs.getString("ButtonLink");
    %>
    <% if (ID != 1){
    if (Ntive ==1) {
         Link="index.jsp?Page="+ID;
         } else {
         Link= ButtonLink;
    %>
    <LI><a href="<%=Link%">> <%=ButtonLabel%></a></LI>     
    <% if (ID==2) {%>
    // then I start the second query projects.
    <blx:sqlExecuteQuery resultSet="rs" queryRef="Project">
    </blx:sqlExecuteQuery>
    <% if (ID==3) %>// this is again from the first query
    // here i start the second query again
    //now I close the first query.
    Please help me to write a Vector withnin here and to retrieve the information to be used again on the same JSP page.
    Thanks!

    I wonder why Blazix dosnt allow multiple queries.
    Here is the logic using Vectors.
    <%@ page import="java.util.Vector" %>
    Vector IDVector = new Vector();
    Vector NtiveVector = new Vector();
    Vector ButtonLabelVector = new Vector();
    Vector ButtonLinkVector = new Vector();
    if(whatever is the codition here)
         %>
         <blx:sqlQuery id="Buttons">
              Select ID, Ntive, ButtonLabel, ButtonLink
              From Pages
         </blx:sqlQuery>
         <%
    else
         %>
         <blx:sqlQuery id="Project">
         Select ID, ProjectName, PLongName
         From Projects
         </blx:sqlQuery>
         <%
    %>
    <blx:sqlExecuteQuery resultSet="rs" queryRef="Buttons">
    <%
         IDVector.add(rs.getInt("ID"));
         NtiveVector.add(rs.getInt("Ntive"));
         ButtonLabelVector.add(rs.getString("ButtonLabel"));
         ButtonLinkVector.add(rs.getString("ButtonLink"));
    %>
    //now I close the first query.
    </blx:sqlQuery>
    <%
    for(rec=0;rec<IDVector.size();rec++)
         int ID = (int) IDVector.elementAt(rec);
         int Ntive = (int) NtiveVector.elementAt(rec);
         String ButtonLabel = (String) ButtonLabelVector.elementAt(rec);
         String ButtonLink = (String) ButtonLinkVector.elementAt(rec);
         if (ID != 1)
              if (Ntive ==1)
                   Link="index.jsp?Page="+ID;
              else
                   Link= ButtonLink;
              %>
              <LI><a href="<%=Link%">> <%=ButtonLabel%></a></LI>
              <%
              if (ID==2)
                   %>
                   // then I start the second query projects.
                   <blx:sqlExecuteQuery resultSet="rs" queryRef="Project">
                   </blx:sqlExecuteQuery>
                   <%
              if (ID==3)
                   %>
                   // this is again from the first query
                   // here i start the second query again
                   <%
    %>
    Hope it helps.
    -Mak

  • Simple vector transparency - printing problems

    Morning everybody,
    I'm having problems printing a PDF which has been generated from Indesign CS3.  The problem also arises when printing directly from Indesign.  Everything appears OK when on screen.
    I have a background colour, in front of which i have placed an Illustrator CS3 file which is a row of white squares with gaps (transparent) between then.  The squares are white, but I really want them to fade from a hue of the background colour to fully transparent.  To achieve this I have used a gradient feather, going from opacity 50% to opacity 0%.  [See sceenshot]
    My problem is that all the squares show up when I print the file, even the ones which should have an opacity level of 0%.  On the printout the gradient feather is visible (i.e. the squares 'fade out'), but they do not compeltely fade out to fully transparent. 
    Does anyone have any tips? 
    Thanks very much for any help with this. 
    Robin

    Thanks a lot for your reply.
    I don't have a brilliant understanding of colour, but I believe that all the colours in the document are process [see screenshot].
    Turning on overprint preview doesn't change the appearance of the document.  Nor does turning on simulate overprint in acrobat.  In both cases, the appearance of the document on screen is how i want it to print.

  • [b]Simple Deploy problem- making an Executable JAR File ...PLEASE HELP [/b]

    Hi all,
    I Trying to deploy a simple J2SE app by making an Executable JAR File, however I don'r understand how to add a valid value to the Main Class field.
    I followed the following description within Jdev, after creating a Deployment Profile:
    Deploying an Executable JAR File
    You can make your simple archive or J2EE Client Module into an executable JAR file that you can launch with the java command.
    To deploy an executable JAR file:
    1) Select and right-click the simple archive or client icon in the Navigator to display the context menu.
    2) Choose Properties.
    3) Click JAR Options in the tree.
    4) Select Include Manifest File (META-INF/MANIFEST.MF).
    5) In the Main Class field, enter the fully qualified name of the application class that is to be invoked.
    7) Click OK.
    8) Launch the executable JAR file from the command line:
    java -jar myapp.jar
    where myapp represents your JAR file name.
    Like I said it's in 5) I'm doing something worng
    My deploy-file (PlotPrint.deploy) looks the following:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <client-deployment xmlns="http://xmlns.oracle.com/jdeveloper/903/deploy/j2ee-client-jar" nselem="client-deployment" class="oracle.jdeveloper.deploy.jar.ClientProfile">
    <archiveOptions>
    <additionalManifests/>
    <compressed>false</compressed>
    <hasManifest>true</hasManifest>
    <mainClass>PlotPrintClient</mainClass>
    </archiveOptions>
    <archiveTargetPlatform/>
    <cdaSettings>
    <additionalArchives/>
    <afterFilters/>
    <beforeFilters/>
    <duringFilters/>
    <selectedArchives>
    <archives>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/jdbc/lib/classes12.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/jdbc/lib/nls_charset12.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/jdev/lib/jdev-rt.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/soap/lib/soap.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/lib/xmlparserv2.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/jlib/javax-ssl-1_2.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/jlib/jssl-1_2.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/j2ee/home/lib/activation.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/j2ee/home/lib/mail.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/j2ee/home/lib/http_client.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/webservices/lib/wsdl.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/lib/xmlparserv2.jar!/"/>
    <Item protocol="jar" path="file:/C:/Oracle9i_Jdev/jdevbin/lib/xmlcomp.jar!/"/>
    </archives>
    <selectionMode>0</selectionMode>
    </selectedArchives>
    </cdaSettings>
    <defaultConnection class="java.lang.String"/>
    <deployClientMaxHeapSize/>
    <earURL path="deploy/PlotPrint.ear"/>
    <enterpriseAppName/>
    <jarURL path="deploy/PlotPrint.jar"/>
    <profileDeps/>
    <properties/>
    <selectedProjectFiles>
    <autoInclude>true</autoInclude>
    <deploySourceAs>0</deploySourceAs>
    <files class="[Ljava.net.URL;"/>
    <selectionFilters/>
    </selectedProjectFiles>
    </client-deployment>
    I using Oracle9i Jdev, but have also tried it un the new Jdev 10g version, but the same problem everytime:
    Error message: Could not find the main class: program will exit.
    Please help I really need this to work
    Message was edited by:
    MHCI
    Message was edited by:
    MHCI

    Yes that was the problem so I have changed the element mainClass to
    <mainClass>xxPlotPrint.MHCI.PlotPrintClient</mainClass>
    But now another probem has occured, since I get the following error when run the jar-file (When I run the app from within Jdev there are no warnings or errors).
    ----Batch-file-----
    @echo off
    java -jar PlotPrint.jar
    echo Test Plot and Print Batch-file!
    pause
    ---- out to cmd ----
    Exception in thread "Thread-0" java.lang.ClassCastException: com.sun.org.apache.xerces.internal.dom.DeferredDocumentImpl
    at xxPlotPrint.MHCI.NNE35_worker.run(NNE35_worker.java:42)
    at java.lang.Thread.run(Unknown Source)
    Exception in thread "Thread-2" java.lang.ClassCastException: com.sun.org.apache.xerces.internal.dom.DeferredDocumentImpl
    at xxPlotPrint.MHCI.OCEJobDB_worker.run(OCEJobDB_worker.java:41)
    at java.lang.Thread.run(Unknown Source)
    Exception in thread "Thread-1" java.lang.ClassCastException: com.sun.org.apache.xerces.internal.dom.DeferredDocumentImpl
    at xxPlotPrint.MHCI.NNE27_worker.run(NNE27_worker.java:42)
    at java.lang.Thread.run(Unknown Source)
    It's the same problem in all three exceptions (the exactly the same code), however I was a bit to quick this is the line (the line before I process the xml doc :-)
    import org.w3c.dom.Element;
    responseData = new Vector();
    responseData = test_NNE35_SOAP.getXSDdoc();
    Element elements = ( (org.w3c.dom.Element)responseData.elementAt(0) ); (line 42)
    Please help I don't understad why I receive this exception, since I included the xmlparserv2.jar file, and don't even have a workaround :-(

  • Simple Vector Question

    Hello all, apparently my ability to construct useful search terms has failed and so I haven't been able to figure this out. I imagine it is too basic a question.
    Every year I have to design a team jersey and while I am fine at drawing out my design, I always run into a problem when converting to digital vector format.
    My problem is this: if I have a closed path (say a square) and I want to break up this square so that I can fill it with 2 colours, how do I go about this?
    I have the anchor points that I want to connect to create a separate closed path, but I can't figure out how to connect them together to get the job done. I have done this in the past, but I can't figure this out today at all.
    Thanks

    Well, in order to connect, you need to cut up first. Use the knife tool to do so. When separating anchor points, a simple click while hovering over them will do. Then use the Join command to close the paths gain with the proper end points selected.
    Mylenium

  • Simple button problem

    I am having a real problem creating a simple button - I have
    created a Flash file using Action script 2, and when I create a
    simple button - text with a rectangle as a background, (see
    http://www.elkhavenestate.com),
    and the over state is behaving in a bizarre fashion. This is my
    first time using CS3, so is there a new control that I'm
    missing?

    I take it that it's the Home button. It appears to have a
    selectable text field or something in it, which is causing the
    problem. Either change that to a static text field or set its
    selectable property to false. The other two buttons appear to be
    fine, so maybe you can just duplicate one of them and turn it into
    the Home button.
    If I picked the wrong button, let me know.

  • Vector problem

    Hi to you all,
    I have built a table which retrieves data from a .jsp file by making an http request. The particular request is made every 10 seconds.
    The data is read in lines and the lines are stored in a vector.
    i.e. the line is: 1 34 er ty 23
    where id=1
    The table is built by getting the vector elements (lines). The first element of each line is the "id"(int). On the second request data might have been changed in one or more lines in the .jsp file, thus the program must identify the change(s) and update only the specific line(s) according to the "id". I tried to do something but unfortunately the program reads only the first line of the .jsp file. Can u give me any hlep. Apologies if the explanation of my problem is poor.
    I am including the specific part of my code.
    Thanx
    public void readDataLine()
              URL url;
              URLConnection connection;
              String inputLine;     
              DataInputStream inStream;
              int position = -1;
              int id=0;
              int i=0;
              String cToken;
              try
              url = new URL("http","127.0.0.1",80,"/clock.jsp");
              connection = url.openConnection();
              inStream = new DataInputStream (connection.getInputStream());
              //BufferedReader br = new BufferedReader(inStream);
              while (null != inStream.readLine())
                   String st = inStream.readLine();
                   System.out.println("st: " + st);
                        StringTokenizer tokenizer = new StringTokenizer(st, ";");
                        //System.out.println("The String has " + tokenizer.countTokens() + " words." );
                        while (tokenizer.hasMoreTokens())
                             cToken = tokenizer.nextToken();
                             data.addElement(cToken);
                             if (i == 0)
                                  id = Integer.parseInt(cToken);
                             i++;
                        // Add the vector with the 16 elements to the vector of vectors.
                        // vLocalStore.addElement(data.clone());
                        //hold vector into memory
                        // perform the change
                        position = -1;
                        for (i=0; i<vLocalStore.size(); i++)
                             Vector v = (Vector) vLocalStore.elementAt(i);
                             if (id == ((Integer) v.firstElement()).intValue())
                                  position = i;
                                  break;
                        if (position == -1)
                             // this is a new element in the vector
                             vLocalStore.addElement(data.clone());
                             System.out.println("v: " + vLocalStore);
                        else
                             // this is a replacement instruction
                             vLocalStore.removeElementAt(position);
                             vLocalStore.insertElementAt(data.clone(),position);
                             //System.out.println("id: " + ((Integer) v.firstElement()).intValue());
                             System.out.println("v: " + vLocalStore);
                        // Clear all the 16 elements.
                        data.clear();
              inStream.close();
              }           // end try
              catch (IOException e)
              System.err.println("I/O Exception: " + e);
              catch (NoSuchElementException e)
              System.err.println("No such element: " + e.getMessage());
              catch (ArrayIndexOutOfBoundsException e)
                   System.err.println("Exception: " + e.getMessage());
              catch (Exception e)
                   System.err.println("Exception: " + e.getMessage());
         }          // end readDataLine

    Actually, I doubt it reads the first line. You've written while (null != inStream.readLine())
        String st = inStream.readLine();This reads the first line, discards it, and then reads another line. What you should replace it with is String st;
    while ((st = inStream.readLine()) != null)
    {or, if you want to keep your scope minimal,for (String st; (st = inStream.readLine()) != null; /* do nothing*/)
    {There may be other errors, but it's hard to read unformatted code. If this doesn't fix the problem, please repost the code using &#91;code] tags.

  • PDF simple vectors look OK in Preview, distorted in Adobe Reader?

    I am working on a document in Illustrator CS5 on Mac OS 10.5.8. The doc is meant to be viewed primarily through e-mail, possibly printed to a desktop printer.
    I am replacing certain letterforms with vector objects – basically, I'm using simple rectangles to substitute for "I"s with unwanted serifs, in a small amount of headline text. When I Save As PDF, the resultant document looks great in Preview, but when viewed in Adobe Reader 10 (most likely what this will be viewed on at the receiving end), those uniform copy-pasted rectangles display ugly variations in height, width and alignment with the rest of the text. I have no idea why this is happening.
    Further possibly relevant info: I have converted the rest of this headline text to outlines so as to apply an "Offset Path". The other text all stays very visually consistent between .ai and .pdf formats. It is only these makeshift "I"s that are distorted.
    Please advise!

    Make at least one extra anchor point in each of those rectangles.

  • Vector problem after copy/paste from Excel

    In the past I've been able to drag or copy and paste an image from excel into Illustrator.  I've lost that ability (sometimes I'll get a shadow image copied in, but it is not in vectors and it is not editable).  If I save the figure as a PDF to copy it into Illustrator as a vector formatted object I cannot figure out how to change any formatting/colors.  I can select individual bars in a bar graph, I can add an outline to them, but the option for changing the color is completely absent.  I am fairly new to this, but would love help.  I've tried releasing the clipping masks, but that only fills in the entire body of the chart with color.  This literally all worked fine yesterday (and I can modify prior charts that I already imported with no problem).  I'd love some help and feedback as I am fairly new to this and could be missing something! Thanks.

    I can't get a PDF picture, ai picture, or EPS figure to post on here so I don't know how useful an image will be, but I added a jpeg that shows the shadowing I get when I copy in at times. . 

  • HP Prime: how would you approach this vector problem

    Given:   r1 = 2i-j+k 
                    r2 = i+3j-2k
                    r3 = -2i+j-3k
                    r4 = 3i+2j+5k
    if r4 = ar1+br2+cr3  find the values for a, b, c
    If I use the Solve App I have five equations with three unknowns and Solve App doesn't like that  "Must select as many variables as equations"   If I select five variables I get "no solution could be found"
    I tried using the 'solve'  function in the CAS mode, but it can only solve for ONE variable.   Seems like the only way I can solve this problem is by hand???   any suggestions???

    Thanks for the encouragement,  I wasn't so much stuck as I was trying to find out the power / limitations of the HP Prime.  
    I was disappointed to find out that the Prime doesn't seem to know the difference between the small letter i (alpha-Tan) and the complex i (shift-2)  so that took awhile to figure out if I was making a mistake (why have two difference key stokes if they are both the same) or this was a peculiarity of the program.  Equally frustrating was entering an equation using the small letter i,  I could not tell if I was entering a complex number or a variable or a vector as there are so many different forms the complex number takes or I just can't tell the difference.  Sometimes it is written  2+3*i;  sometimes as [2 3*i]; 
    i enter 2+3*(alpha TAN)  and i get 2+3*i     same results if i use (shift 2)
    i enter ( 2+3*(alpha TAN))  and i get 2+3*i   drops the parenthesis 
    i enter (2,3(alpha TAN)) and i get [2 3*i]     why the change from parenthesis to brankets when brankets are used for matrices???  why the dropping of the comma??? i gather the brankets without the comma is a vector - just confusing having to enter with a comma but it is displayed without the comma - not very good reenforcement.  
    I enter (2,3i)*(4,5i) displays as [2 3*i]*[4 5*i]  result is -120
    I enter [2 3i]*[4 5i] displays as [2 3*i]*[4 5*i]  result is -7,    both entries on the left side look the same but the right side is different????  I have no idea what is going on here???
    I enter(2+3i)*(4+5i) displays the same, result is -7+22*i
    I enter 2+3i*4+5i displays as 2+3*i*4+5*i, result is 2+17*i
    still confusing
    anyway  back to the problem - gave up on entering variables, just used the Linear Solver, columns x,y,z became a,b,c and rows 1,2,3  became i,j,k   the solution  (-2, 1, -3)  
    I tried your "Munk" , no function of that name in the catelog - didn't work....
    Used M1^-1 * M2 and got the same results as I got in Linear Solver... 
    can you enlight me on complex numbers versus vectors versus whatever else I was entering,   thanks

  • Logo/picture to menubar? simple css problem?

    Hi, I'm having a problem getting a logo to appear correctly in a horizontal menu bar. It appears to be fine in IE 8, Safari 5, Chrome, and Firefox. However in IE 7 and lower it does not seem to display correctly. The only conditional notes I have for IE 7 and lower deals with the slideshow on the page which shouldn't be affecting the menubar as it is in a different div.
    Here is the url: www.elementcentral.com
    Any advice? I could really use some help- I've tried quite a few things but to no avail...
    Thanks for any help you can offer and I'm more than happy to clarify or anything else!
    Sincerely,
    Matt

    Anyone? I'm thinking its just something simple but I can't figure it out for the life of me heh.

Maybe you are looking for

  • Photoshop Elements 11 Download Question

    If I buy the Photoshop ELements 11 Download, meaning no hard copy is being sent to me in the mail, can I download it on my two computers? I own both a desktop and a laptop.

  • Trying to assign an XML attribute value to a button label

    I have a Flex app (developed in FLEX 2) that reads from multiple XML files and populates datagrids with element values. What I'm trying to do now, is to create a second column with a button, enabling users to view archived versions for each current r

  • Problem with Mac Office Password Protection

    I'm running Mac OS X 10.7.5 with MS Word for Mac 12.3.5 and MS Excel for Mac 12.3.5.  I created a Word (.docx) and an Excel (.xlsx) document on my Mac at home, both with password protection.  I uploaded the documents onto Google Drive.  I was able to

  • Can i restore a clip after I cut it?

    I have multiple vidoo clips with multiple cameras that i have matched up with audio. I made some cuts that sould not have, I would like to modify the entire clip, but not it has been chopped into smaller ones. Is there a way i can restore these small

  • What happened to layer styles

    Stupidly uipgraded to Photoshop CC-- no layer sthyles. Any ideas?