How to add or edit scripted patterns?

I like me a bit of scripting so 'scripted patterns' sounds exciting. Can't figure out where the scripts are stored though?

And applications/Adobe Photoshop CS6/Presets/Deco on a Mac (since you did not state your platform in the first message )

Similar Messages

  • How do I create & edit a pattern like this in Illustrator?

    I want to know how to create and edit a pattern like this in Illustrator:
    And then be able to do this:
    (same pattern with blue square effect)
    Any advice would be appreciated.

    Read up on creating patterns. This one is just simple lines and very easy to do, but remember that the defining rectangle MUST be at the very back of the stack:
    Start off by making your pattern tile (top). Drag the drawing to the Swatches panel.
    Fill a rectangle with the pattern. Scale and rotate the pattern fill (see Scale and Rotate dialogues).
    Recolour the pattern using Edit > Edit Colors > Recolor Artwork

  • How to Add an SQL script to another existing SQL script

    I have just created an SQL script and i need a way to join it with several other existing SQL scripts.
    I don't want to change any of the other scipts, i just need to add my new script on to the existing ones.
    I've looked at some of the functions and they don't seem to work for me.
    Let me use this as an example.
    Here is my new script:
    SELECT DISTINCT max(case when EC.EQUIPMENT_CLASS like '%_ERT' then 'Y' else 'N' end) over (partition by E.CURRENT_SERVICE_ID) as ERT
    FROM EQUIPMENT E,
    EQUIPMENT_TYPE ET,
    EQUIPMENT_CLASS EC
    WHERE E.EQUIPMENT_TYPE_ID = ET.EQUIPMENT_TYPE_ID
    and EC.EQUIPMENT_CLASS = ET.EQUIPMENT_CLASS
    and E.CURRENT_SERVICE_ID = 38514
    I need to add this to an existing script such as this:
    SELECT E.EQUIPMENT_NUMBER,
    E.EQUIPMENT_TYPE_ID,
    ET.EQUIPMENT_TYPE_DESC
    FROM EQUIPMENT E,
    EQUIPMENT_CATEGORY ECAT,
    EQUIPMENT_TYPE ET,
    EQUIPMENT_CLASS EC
    WHERE ET.EQUIPMENT_TYPE_ID = E.EQUIPMENT_TYPE_ID
    and EC.EQUIPMENT_CLASS = ET.EQUIPMENT_CLASS
    and EC.EQUIPMENT_CATEGORY = ECAT.EQUIPMENT_CATEGORY
    and E.EQUIPMENT_ID = 113950
    * The Reason why i can't just add the line i need together with the existing script, is because it's giving me invalid data from what i want to see. When i run them separately i get the desired results.
    Not sure if anything can be done like this or not, but if so, i'd appreciate a shove in the right direction.
    thanks

    I have just created an SQL script and i need a way to
    join it with several other existing SQL scripts.
    Do you simply want to append your newly created query to the file that contains an existing query ?
    >
    I've looked at some of the functions and they don't
    seem to work for me.
    Not sure how this is a SQL or PL/SQL related question, you'd probably want to just append the files using a text editor or maybe an OS command like cat or type.
    >
    * The Reason why i can't just add the line i need
    together with the existing script, is because it's
    giving me invalid data from what i want to see. When
    i run them separately i get the desired results.
    You may want to explain how the data is different from what you are expecting. In any case, your queries do not end with the sql terminator - the ";" character or a forward slash "/" at the first column of a line after the query; maybe that's the culprit.
    Consider this:
    SQL>
    SQL> host type c:\t1.sql
    select first_name from employees where rownum = 1
    SQL>
    SQL> @c:\t1.sql
      2  /
    FIRST_NAME
    Ellen
    SQL>
    SQL> host type c:\t2.sql
    select last_name from employees where rownum = 1
    SQL> @c:\t2.sql
      2  /
    LAST_NAME
    Abel
    SQL>
    SQL> host type t3.sql
    select first_name from employees where rownum = 1
    select last_name from employees where rownum = 1
    SQL> -- now, t3.sql contains both the queries of t1.sql and t2.sql
    SQL> -- however, they do not end with the sql terminators
    SQL>
    SQL> @c:\t3.sql
      2  /
    LAST_NAME
    Abel
    SQL> -- the first query was not executed...
    SQL>
    SQL> -- t3.sql has been fixed now
    SQL> host type t3.sql
    select first_name from employees where rownum = 1;
    select last_name from employees where rownum = 1;
    SQL> @c:\t3.sql
    FIRST_NAME
    Ellen
    LAST_NAME
    Abel
    SQL>pratz

  • How to add an editable checkbox to an alv grid

    Hi..
    I need to add an editable checkbox to a alv grid.
    I wouls appreciatet it if anyone could provide some sample code.
    The standard example  BCALV_EDIT_05 is an oops example... I need a simple example
    Please help
    thanks
    Karen

    hi
    after you pass a field as checkbox in fieldcat
    then in layout populate edit
    ex wa_layout-edit = 'X'.
    try the following code
    REPORT  ZALV5.
    TYPE-POOLS: slis.
    tables: mara.
    DATA: begin of it_mara OCCURS 0,
          matnr like mara-matnr,
          mbrsh like mara-mbrsh,
          matkl like mara-matkl,
          meins like mara-meins,
          ersda like mara-ersda,
          ernam like mara-ernam,
          W_CHK type c ,
         END OF it_mara.
    *data: it_mara like  mara occurs 0 with header line.
    data:it_feildtab type slis_t_fieldcat_alv,
         wa_fieldcat type slis_fieldcat_alv.
    *DATA: i_private TYPE slis_data_caller_exit,
    data:     i_selfield TYPE slis_selfield,
          W_exit(1) TYPE c.
    PARAMETERS: p_title TYPE sy-title default 'ALV'.
    START-OF-SELECTION.
      SELECT matnr mbrsh matkl meins  ersda ernam FROM mara
        INTO corresponding fields of  table it_mara.
    wa_fieldcat-col_pos   = '1'.
    wa_fieldcat-fieldname = 'W_CHK'.
    *wa_FIELDCAT-KEY = 'X'.
    *wa_fieldcat-tabname   = 'IT_MARA'.
    *wa_fieldcat-seltext_s = 'units of measure'.
    wa_fieldcat-checkbox = 'X'.
    APPEND wa_fieldcat TO it_feildtab.
    CLEAR wa_fieldcat .
    CLEAR wa_fieldcat.
    wa_fieldcat-col_pos   = '2'.
    wa_fieldcat-tabname   = 'IT_MARA'.
    wa_fieldcat-fieldname = 'MATNR'.
    wa_fieldcat-key = 'X'.
    wa_fieldcat-hotspot = 'X'.
    wa_fieldcat-seltext_s = 'no'.
    APPEND wa_fieldcat TO it_feildtab.
    CLEAR wa_fieldcat .
    wa_fieldcat-col_pos   = '3'.
    wa_fieldcat-fieldname = 'MBRSH'.
    *wa_FIELDCAT-KEY = 'X'.
    wa_fieldcat-tabname   = 'IT_MARA'.
    wa_fieldcat-seltext_s = 'Ind.sec'.
    APPEND wa_fieldcat TO it_feildtab.
    CLEAR wa_fieldcat .
    wa_fieldcat-col_pos   = '4'.
    wa_fieldcat-fieldname = 'MATKL'.
    *wa_FIELDCAT-KEY = 'X'.
    wa_fieldcat-tabname   = 'IT_MARA'.
    wa_fieldcat-seltext_s = 'Description'.
    APPEND wa_fieldcat TO it_feildtab.
    CLEAR wa_fieldcat .
    wa_fieldcat-col_pos   = '5'.
    wa_fieldcat-fieldname = 'MEINS'.
    *wa_FIELDCAT-KEY = 'X'.
    wa_fieldcat-tabname   = 'IT_MARA'.
    wa_fieldcat-edit      = 'X'.
    wa_fieldcat-seltext_s = 'units of measure'.
    APPEND wa_fieldcat TO it_feildtab.
    CLEAR wa_fieldcat .
      CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
           EXPORTING
                i_title                 = p_title
                i_selection             = 'X'
                i_zebra                 = 'X'
               I_SCREEN_START_COLUMN   = 0
               I_SCREEN_START_LINE     = 0
                I_SCREEN_END_COLUMN     = 0
               I_SCREEN_END_LINE       = 0
                i_checkbox_fieldname    = 'W_CHK'
              I_LINEMARK_FIELDNAME    =
              I_SCROLL_TO_SEL_LINE    = 'X'
                i_tabname               = 'IT_MARA'
              i_structure_name        = 'IT_MARA'
               IT_FIELDCAT             = it_feildtab
              IT_EXCLUDING            =
              I_CALLBACK_PROGRAM      =
              I_CALLBACK_USER_COMMAND =
               IS_PRIVATE             = I_PRIVATE
         IMPORTING
                es_selfield             = i_selfield
                e_exit                  = w_exit
           TABLES
                t_outtab                = it_mara
           EXCEPTIONS
                program_error           = 1
                OTHERS                  = 2.
      IF sy-subrc <> 0.
       MESSAGE i000(0k) WITH sy-subrc.
      ENDIF.
      LOOP AT it_mara WHERE W_CHK = 'X'.
        WRITE: /  it_mara-ersda, it_mara-ernam.
      ENDLOOP.
    reward if helpful
    prasanth

  • Activity in PCUI : how to add display/edit button?

    Hi Gurus,
    I am new to BSP and Portal. We are using EP 5.0 for activity management. We have a requirement where the activity once saved (in create mode) should be made display only. Currently it stays in edit mode and if the user doesn't back out from there, no one else can use that activity.
    I was wondering if there is an option to make this as display only once the activity is saved.
    Also, when I do the activity search and select an entry from the search result, it is by default in edit mode. Is there a way I can make this display only and add a button to change it to edit mode?
    This is SAP delivered BSP application CRMD_BUS000126 for activities. I would like to know if the standard application provides an option to have a Change/display button. I looked in the blueprint tables and don't see any events for display or change. Only create, save and print are the buttons currently available in the OIC2 search result area.
    Also, once the activity is saved, I would like to make it display only similar to SAPGUI, so that the user doesn't have to back out of the screen for others to be able to use it.
    I was thinking above requirement should have been a standard one and SAP should have something for this out of the box. If not, please let me know the steps. We need this functionality added pretty quick, so any help you can provide me on this would be greatly appreciated.
    Thanks,
    Chandrika

    Dear Chandrika,
      Unfortunately the functionalities expected by you were not available in the standard PCUI.We checked with SAP and they informed us to raise a development request for the same.
      Read only mode is controlled by the PCUI framework so with every PCUI application not just with activities.
    But you have achieve this by adding code for locking in the READ method of Class CL_CRM_BSP_AM_HEADFM_1O.
    Thanks and Regards,
    Abdul Raheem S

  • How to add a editable section to a book

    Hello,
    I'm working on a guide for a book and in this guide there is going to be a section in which the reader will be able to write down their experiences with whatever is related to the content. The best way to describe it is as a section where notes are to be taken by the reader. Is iBooks Author capable of doing this?

    Books made  with iBA, when  viewed on iPad already have a Notes facility.
    Tap on the iPad screen to open the top menu bar, third icon from left opens the  Notes and will tell you how to use.
    Your readers will be able to  add a note and create study cards.
    Check this....  https://discussions.apple.com/thread/5567848?tstart=0

  • How to add StandardAdditions to Scripting Bridge?

    Hey,
    I have an Objective-C project, and I want to implement the AppleScript delay "method" (can't think of another name). This is included as a part of StandardAdditions, which unlike several applications doesn't itself have an application preference file, leaving me clueless for my entry of;
    StandardAdditions * standardAdditions = [SBApplication applicationWithBundleIdentifier:@"com.apple.StandardAdditions"];
    Does anyone have any suggestions of how I would go around using this, without its preference file?
    Thanks,
    Ricky.

    rickydamelio wrote:
    I have an Objective-C project, and I want to implement the AppleScript delay "method"
    Why? Have you considered the following BSD/Cocoa options:
    sleep()
    +[NSThread sleep...]
    NSTimer
    HTH

  • How to add powershell script code in form application in C#

    Hi,
    i am creating a form application in C# and have powershell code which will create remote session on remote machine and execute few commands like set execution policy copy some share files install that files etc.
    I have to add this powershell script into form application in C#.
    Can some one please give me some example how to add the whole script which i have into C# code form application. Thanks in advance
    Thanks,

    Hi
    So the left is Run PowerShell Commands on Remote machine? Am I right ?
    Here  is a article talking about running  powershell commands on Remote Computers.
    http://www.howtogeek.com/117192/how-to-run-powershell-commands-on-remote-computers/
    About how to write in C#, please follow
    Joel Engineer's reply, using  process.Start() method  to start
    PowerShell.exe and Run PowerShell Commands to connect remote machine.
    Best regards,
    Kristin
    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 add/edit render video presets?

    I can't find how to add or edit render video presets used in (File->Export->Render Video) dialog.
    Am I missing something?

    JJMack wrote:
    I'm afraid that your are right there are preset in CS6 for its media server dll and they are stored where you found them. You can use the preset and modify setting in the preset for a custom rendering. However there is no save new preset button so your custom setting can be saved as a new preset.
    Yes, You can modify some rendering parameters (Dimensions, Frame Rate, Field order, Aspect Ratio).
    But You can't modify preset settings. What I mean is target bitrate, maximum bitrate, key frame distance etc.)
    You can't even determine what the settings are... (unless I missed something?)
    To get the full Media Sever you need an Adobe video product like Premiere Pro. Perhaps use a trial verson to create additional preset that can be added to Photoshop CS6 presets. Presets for better Quicktime support for example.
    This is not the issue. I have CS6 Master Collection installed...
    Photoshop don't see Media Encoder presets and vice versa...

  • How to add youtube link?

    I'm desperate to add a youtube link to appear as the video itself !! how to do that ?
    I always copy and pasted youtube embedded code into HTML code; however, I don't know how to add and edit html code in here

    It's possible by placing the embed code in your own Dashcode widget, and making sure that a default image of the right size is included, along with a few javascript callbacks.
    If you do not want to code this yourself, we've put together a widget wizard at http://www.classwidgets.com/ that will generate a custom YouTube  widget for you, if you give it the web url address of the video you want.

  • W to add a editable DFF to a Results table

    Hi,
    How to add a editable DFF to a Results table.When i am enabling the DFF, i can see the segments of that DFF, but if i am entering any data and clicking on apply, the data is not getting saved.Could any one help me in this?

    Books made  with iBA, when  viewed on iPad already have a Notes facility.
    Tap on the iPad screen to open the top menu bar, third icon from left opens the  Notes and will tell you how to use.
    Your readers will be able to  add a note and create study cards.
    Check this....  https://discussions.apple.com/thread/5567848?tstart=0

  • Add an inertia script to mask/shape-path keyframes?

    anyone knows how to add an inertia script to mask/shape-path keyframes? OR a workaround that would yield similar results?
    thanks
    manojit

    Since no answer seems to be forthcoming would you recommend that this be a manual test?
    Thanks,
    Eric

  • How to add string in editable datagrid

    Hai
           I have attached the mxml below.
       I need to add ' ' before and after the value.
       1. here i have the mxml, run the mxml , enter some vlaue in textbox and click add button, now the values will be added
       2. u can see the value in single quotes ie. ' '
       3. now u click the Value column  u can edit the value, after editing the value will not be in ' '
       4. here i have a problem, if the value is not in ' ' , i cant submit that query.
       5. how can i add ' ' after editing .
    can any one help me
    Thanks in Advance : )
    <mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    >
    <mx:Script>
    <![CDATA[
    // ActionScript fileimport  
    mx.rpc.events.FaultEvent;
    import  
    mx.controls.Alert; 
    importmx.managers.CursorManager;
    import  
    mx.collections.ArrayCollection;[
    Bindable]
    public var adhoc:ArrayCollection = newArrayCollection();[
    Bindable] 
    public var serverString = "";
    private function initImage(event:MouseEvent):void{
    if(adhoc.length > 0){
    private function onChange():void{
    if(comboBox.selectedIndex == 0){
    else{
    private function onChange1():void{
    if(combo2.selectedItem == "DATEDEPLOYED" || combo2.selectedItem == "DATEUPLOADED"){datepick.visible =
    truetxt.visible =
    false}
    else{txt.visible =
    truedatepick.visible =
    false
    private function add():void{
    varstr:String = txt.text; 
    if(str.length == 0 && txt.visible == true){Alert.show(
    "Value Can Not Be Empty"); 
    return;
    if(combo2.selectedItem != "DATEDEPLOYED" || combo2.selectedItem != "DATEUPLOADED"){
    if(txt.visible == true){ 
    var temp:Object = newObject();
    "'"+txt.text+"'";
    varstr1:String = datepick.text; 
    if(comboBox.selectedIndex == 1){ 
    if(combo2.selectedItem == "DATEDEPLOYED" || combo2.selectedItem == "DATEUPLOADED"){ 
    if(str1.length == 0 && datepick.visible == true){Alert.show(
    "Date Cannot Be Empty");}
    else{ 
    var temp:Object = newObject();
    false;addopenbracket.enabled =
    false;combo2.enabled =
    false;combo1.enabled =
    false;
    private function querydelete():void{
    if(AdHoc.selectedIndex > 0) { 
    if(AdHoc.selectedIndex == (adhoc.length-1)){adhoc[AdHoc.selectedIndex-1].cond =
    ""; addopenbracket.enabled =
    false;addclosebracket.enabled =
    false;addbutton.enabled =
    false;combo2.enabled =
    false;combo1.enabled =
    false;
    // adhocdetailgridcompilance.dataProvider = null ; 
    // adhocdetailgrid.dataProvider = null ;
    else if(adhoc.length == 1) {
    // adhocdetailgridcompilance.dataProvider = null ; 
    // adhocdetailgrid.dataProvider = null ;addopenbracket.enabled =
    true;addclosebracket.enabled =
    true;addbutton.enabled =
    true;combo2.enabled =
    true;combo1.enabled =
    true;}
    else{Alert.show(
    "Select The Rows To Delete");
    private function andSubmit():void{
    for each(var obj:Object inadhoc){ 
    if(obj.fname == combo2.selectedItem && obj.opera == combo1.selectedItem){ 
    if(combo2.selectedItem != "DATEDEPLOYED" || combo2.selectedItem != "DATEUPLOADED"){ 
    if(txt.visible == true){ 
    trace("2 equals"); 
    var temp:Object = newObject();
    else{ 
    trace(obj.fname + ":"+ combo2.selectedItem);  
    trace(obj.opera + ":"+ combo1.selectedItem); 
    trace(obj.val + ":" + "'"+txt.text+"'");
    else if(obj.fname == addclosebracket.label){ 
    if(combo2.selectedItem != "DATEDEPLOYED" || combo2.selectedItem != "DATEUPLOADED"){ 
    if(txt.visible == true){ 
    trace("2 equals"); 
    var temp:Object = newObject();
    else{ 
    trace(obj.fname + ":"+ combo2.selectedItem);  
    trace(obj.opera + ":"+ combo1.selectedItem); 
    trace(obj.val + ":" + "'"+txt.text+"'");
    if(obj.fname == combo2.selectedItem && obj.opera == combo1.selectedItem){ 
    if(combo2.selectedItem == "DATEDEPLOYED" || combo2.selectedItem == "DATEUPLOADED"){ 
    if(datepick.visible == true){ 
    trace("2 equals"); 
    var temp:Object = newObject();
    else{ 
    trace(obj.fname + ":"+ combo2.selectedItem);  
    trace(obj.opera + ":"+ combo1.selectedItem); 
    trace(obj.val + ":"+ datepick.text);
    else if(obj.fname == addclosebracket.label){ 
    if(combo2.selectedItem == "DATEDEPLOYED" || combo2.selectedItem == "DATEUPLOADED"){ 
    if(txt.visible == true){ 
    trace("2 equals"); 
    var temp:Object = newObject();
    else{ 
    trace(obj.fname + ":"+ combo2.selectedItem);  
    trace(obj.opera + ":"+ combo1.selectedItem); 
    trace(obj.val + ":"+ datepick.text);
    true;addopenbracket.enabled =
    true;combo2.enabled =
    true;combo1.enabled =
    true;
    private function orSubmit():void{
    for each(var obj:Object inadhoc){ 
    if(obj.fname == combo2.selectedItem && obj.opera == combo1.selectedItem){ 
    if(combo2.selectedItem != "DATEDEPLOYED" || combo2.selectedItem != "DATEUPLOADED"){ 
    if(txt.visible == true){ 
    trace("2 equals"); 
    var temp:Object = newObject();
    else{ 
    trace(obj.fname + ":"+ combo2.selectedItem);  
    trace(obj.opera + ":"+ combo1.selectedItem); 
    trace(obj.val + ":" + "'"+txt.text+"'");
    else if(obj.fname == addclosebracket.label){ 
    if(combo2.selectedItem != "DATEDEPLOYED" || combo2.selectedItem != "DATEUPLOADED"){ 
    if(txt.visible == true){ 
    trace("2 equals"); 
    var temp:Object = newObje

    you declare Fchg's three parameter is any data type,so you can directly use Fchg
    function.
    "beawhycn" <[email protected]> wrote:
    >
    1.if buffer type=FML,then ' Fchg(sendBuf, Fldid("ACCOUNT_ID"), 0, accountNumber&,
    0)' can add the accountnumber into sendbuffer.
    2.if buffer type=STRING ,then how can i add a simple string into sendbuffer
    before
    the tpcall()?
    Eager for the reply.

  • How to add a page in the SAP Scripts

    Hi All,
    I want to know how to add a page in the sap scripts. there is already sap script developed by some other person.
    Now I have to add a page in front of that and have to add some more data.I added a page in page windows but thats not at all working.
    Please help me out in this.
    Thanks,
    Praveen

    new page will create in sap scripts using new page command.
    you have to set condition like after some number of records displayed in page new page has to be trigger.
    ex:YOU HAVE SO MANY RECORDS FOR PRINTING BUT YOU WANT TO DISPLAY 100 RECORDS IN FIRST PAGE REMAINING IN SECOND PAGE LIKE THAT.
    Here you can use NEW PAGE COMMAND .
    IT IS OPPOSITE PURPOSE OF PROTECT AND ENDPOTECT.
    Reward if useful.

  • Is my system DV7t-3300, or DV7t Quad Edition? And how to add more memory to it?

    Dear forum,
    I have an old notebook computer bought back in March 2010. It's a DV7t series. As it's getting slowly, I'm thinking of adding more memory. However, I'm not sure how much memory the motherboard can support for the upgrade.
    I'm stuck with the first step, which is to decide the model number (and then motherboard) of it.
    My original order email states the following:
    YOUR CUSTOMIZED HP PC
    dv7t quad edition
    • Genuine Windows 7 Home Premium 64-bit
    • Intel(R) Core(TM) i7-720QM Quad Core processor (1.6GHz, 6MB L3 Cache) with Turbo Boost up to 2.8 GHz
    • FREE Upgrade to 4GB DDR3 System Memory (2 Dimm) from 3GB DDR3 System Memory (2 Dimm)
    • 500GB 7200RPM SATA Hard Drive with HP ProtectSmart Hard Drive Protection
    • 1GB Nvidia GeForce GT 320M - For i7-720QM and i7-820QM Processors
    • 17.3" diagonal HD+ High-Definition HP LED BrightView Widescreen Display (1600 x 900)
    • LightScribe SuperMulti 8X DVD+/-RW with Double Layer Support
    • Webcam Only
    • Intel Wireless-N Card with Bluetooth
    • HP Integrated HDTV Hybrid Tuner
    • HP Color Matching Keyboard
    • 8 Cell Lithium Ion Battery
    • No Modem
    • Microsoft(R) Works 9.0
    • HP Home & Home Office Store in-box envelope
    However, the bottom of the notebook computer has a label that specifies the following:
    Pavillion dv7
    Serial: omitted
    Product: WH764AV
    Model: Q dv7t-3300.
    I visited some memory buying website like 'crucial.com'. However, I was prompted to select the model and there were both dv7t-3300 CTO and dv7t Quad Edition. Unfortunately, they resulted in different kinds of memory (although the specs of the sugested memory modules seem to be the same, these two memory modules have different model numbers).
    So, what model number my system has? 3300 CTO or Quad Edition?
    Perhaps a suitable model number would tell me which motherboard this notebook has. Additionally, can anyone advice me about on how much memory my notebook can support (8GB or 16GB) maximum?
    Thanks a lot!
    Cruiser

    Hi,
    Max is 8Gb using the following manual:
        http://h10032.www1.hp.com/ctg/Manual/c01859666.pdf
    And from the following site:
       https://www.ramcity.com.au/upgrade/hp-compaq/pavilion-dv7-series-notebook/dv7t-3300-cto/73893
    The above manual shows you how to add/replace RAM. Looks like you have to buy 2 x 4Gb sticks.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Maybe you are looking for