Macro substitution ?

Hi folks,
I'm assigning a table name to a variable, then I want to use the variable in a Delete/Insert statement in the same procudure.
In Visual Foxpro I would use "&" symbol for macro substitution, but how can I accomplish in pl/sql ?
v_table_name := :targeted_groups.target_table;
DELETE FROM v_table_name ??? ;
thank you,
Bob
Please also email your response to [email protected]

Why is this block giving me an error in Forms and in SQL*Plus ?
DECLARE
v_table_name varchar2(40);
BEGIN
v_table_name := 'web_newsletter_dmrdeal' ;
dbms_output.put_line('Table is---> ' || v_table_name );
EXECUTE IMMEDIATE 'DELETE FROM' || v_table_name ;
end;
IF I say:
EXECUTE IMMEDIATE 'DELETE FROM web_newsletter_dmrdeal' ;
it works fine.
Thanks,
Bob

Similar Messages

  • Web VPN LDAP Macro Substitution for homdirectory

    Hi,
    I am trying to get the LDAP homedirectory attribute mapped to the WEBVPN_MACRO substitution variables.
    The orginisation has multiple sites and users have their hame drives mapped on different servers. This is 100s of sites.
    I cannot find any relevant documentation for the WEBVPN_MACRO Substitution apart from it is unfounded!
    Can anyone give me a hint please? I am running ASA v9.0.2
    L                  

    I found the answer to my own question by trial and error.
    In the map, I mapped LDAP attribbute name "homeDirectory" to "WebVPN-Macro-Substitution-Value1"
    In my bookmark, I then use "CSCO_WEBVPN_MACRO1" as the variable.
    I cannot believe this is so badly documented.

  • Soft Coding Columns / Macro Substitution

    I would like to bring a formula from a database based on a condition for following SELECt is there any way?
    SELECT EmpCode, EmpName,
    (col3 which comes from a table which can be either (BASIC) or (BASIC * 20) based on a value of this SELECT)
    from employee
    where EmpCode = 'A'
    Col3 is stored in a table as string in another table
    Is this possible?
    Please help.
    Thank you.

    The idea is to execute following SELECT command where data stored as Text
    in Formula table become Column name at run time for the current select.Storing formulas/numbers as text is generally a bad approach when it comes to maintainability.
    Your idea/design probably leads to the need to use dynamic sql, I'm not a fan of that.
    However, I'm in a 'creative mood' today ;-) :
    MHO%xe> select empcode
      2  ,      empname
      3  ,      case
      4         when addit != 0 then basic + hra
      5         when multi  != 0 then basic * hra
      6         when subtract != 0 then subtract
      7         else basic
      8         end results
      9  from
    10  (
    11  with
    12    employee as (select '1234' empcode, 'Mr. A' empname from dual union all
    13                 select '4321', 'Mr. B' from dual union all
    14                 select '5678', 'Mr. C' from dual)
    15  , formula as (select '1234' e_empcode, 'BASIC' formulatext from dual union all
    16                select '4321', 'BASIC * HRA' from dual union all
    17                select '5678', 'BASIC + HRA' from dual)
    18  , pck as (select '1234' e_empCode, 1000 BASIC, 250 HRA  from dual union all
    19            select '4321', 2000, 20  from dual union all
    20            select '5678', 3000, 300 from dual)
    21  select e.*
    22  ,      f.*
    23  ,      regexp_instr(f.formulatext, '[==+==]') addit
    24  ,      regexp_instr(f.formulatext, '[==*==]') multi
    25  ,      regexp_instr(f.formulatext, '[==-==]') subtract
    26  ,      p.*
    27  from   employee e
    28  ,      formula  f
    29  ,      pck      p
    30  where  e.empcode = f.e_empcode
    31  and    f.e_empcode = p.e_empcode
    32  );
    EMPC EMPNA    RESULTS
    1234 Mr. A       1000
    4321 Mr. B      40000
    5678 Mr. C       3300Notez bien: I changed your data, as in: BASIC and HRA are really not needed in formulatext.
    Formulatext is nothing but an operator in fact.
    All you really need to know is whether you'll be adding/multiplying/subtracting the HRA value to the BASIC value.
    I posted all this just to point out that you need to reconsider your idea.
    You might be able to clunge up something like this, but if I were you: I'd rethink this requirement anyway.
    It will be hard to maintain and work with.
    Edited by: hoek on Apr 25, 2009 12:09 PM dreaded typo's

  • Problems with examples on WLS7.0 / RedHat8.0

    Hi all,
    I installed an evaluation copy of WebLogic/7.0.2.0 on a RedHat 8.0 Linux
    Box.
    I got some problems with the examples:
    The First problem was the copyright character in the index.jsp files
    I had to change the character with "©" in the following files
    $SAMPLES_HOME/server/config/examples/applications/DefaultWebApp/index.jsp
    and
    $SAMPLES_HOME/server/stage/examples/examplesWebApp/index.jsp
    in order to avoid a weblogic.utils.ParsingException causing an Internal
    Server Error.
    Then I got an almost correct html page, but with most links invalid.
    The cause of this is that these links are like
    (even if a launch a browser locally on the server host, the SAMPLES_HOME
    variable is not expanded)
    The same problem occurs in links which get a path as parameters,
    e.g. :
    <A href=
    "http://flopiano:7001/examplesWebApp/OrderParser.jsp?xmlfile=@SAMPLES_HOME/server/src/examples/xml/orderParser/order.xml">
    the SAMPLES_HOME environment variable is correctly set when I launch the
    server (I wrote also a simple cgi which dumps the environment and I checked
    that it was properly set) but it is not substituted by the JSP engine
    (I'm not familiar with JSP technology but I guess that that variable should
    be used somehow to generate a correct url).
    I guess that this problem may be due to a misconfiguration or somenthing.
    What do you suggest to do ?
    Thanks in advance,
    Fabio Lopiano

    Fabio:
    So it looks like when you installed the installer did not do its job of
    doing macro substitution. Global search and repalce of @SAMPLES_HOME is
    needed. Ant can do this pretty quickly.
    See attached, where on my windoze box:
    samplesdest=E:/weblogic/src_141_02sj/samples
    You can modify this script and run it agains the root of your install to fix
    up the macro-subs.
    Hope this makes sense and helps.
    "Fabio Lopiano" <[email protected]> wrote in message
    news:[email protected]..
    >
    Hi all,
    I installed an evaluation copy of WebLogic/7.0.2.0 on a RedHat 8.0 Linux
    Box.
    I got some problems with the examples:
    The First problem was the copyright character in the index.jsp files
    I had to change the character with "&copy;" in the following files
    $SAMPLES_HOME/server/config/examples/applications/DefaultWebApp/index.jsp
    and
    $SAMPLES_HOME/server/stage/examples/examplesWebApp/index.jsp
    in order to avoid a weblogic.utils.ParsingException causing an Internal
    Server Error.
    Then I got an almost correct html page, but with most links invalid.
    The cause of this is that these links are like
    > (even if a launch a browser locally on the server host, the SAMPLES_HOME
    variable is not expanded)
    The same problem occurs in links which get a path as parameters,
    e.g. :
    <A href="http://flopiano:7001/examplesWebApp/OrderParser.jsp?xmlfile=@SAMPLES_HOME/s
    erver/src/examples/xml/orderParser/order.xml">
    >
    the SAMPLES_HOME environment variable is correctly set when I launch the
    server (I wrote also a simple cgi which dumps the environment and Ichecked
    that it was properly set) but it is not substituted by the JSP engine
    (I'm not familiar with JSP technology but I guess that that variableshould
    be used somehow to generate a correct url).
    I guess that this problem may be due to a misconfiguration or somenthing.
    What do you suggest to do ?
    Thanks in advance,
    Fabio Lopiano
    [build-hacksiminstall.xml]

  • Passing xml field javascript inside xsl file.

    Hi all
    I have an xml file which looks something like this....
    <SCORE>
    <SCORE_ID>D6666</SCORE_ID>
    <RYM>200701</RYM>
    <LOB>P</LOB>
    <REC_C>.38</REC_C>
    <REC_P>.17</REC_P>
    <ENV_STR>dev<ENV_STR>
    </SCORE>
    I have an xsl file which has some html and slots for the fields(for xml file), which is working very well.
    The syntax for the slots looks something like this
    <xsl:value-of select="ENV_STR"/> which is working very well.
    I want to call a javascript function (which will open a new browser) which takes three parameters and these params will be field_name from XML file.
    So I was trying to put syntax (mentioned above) inside javascript but its an error (XLM Parsing failed.)
    <AHREF="#" onclick="display_report(<xsl:value-of select="ENV_STR"/>);return false">Click for Report</A-close for HREF>
    Can anybody suggest how can I do this?
    Thanks
    pb
    Message was edited by:
    Prashant
    Message was edited by:
    Prashant

    That's an XSLT FAQ. People seem to expect XPath to support macro substitutions for some reason. You need a predicate instead, something like:
    select="*[name() = $name]/element1/element2"

  • Wierd warning message from f90

    The test code here gives a warning with f90 - when it shouldn't. [the preprocessed text is still within the 72 char fixed form limit]
    Satish
    asterix:/home/balay/junk/sun-test>cat bug.F
    #define foobar123 integer
          program main
          implicit none
    #if !defined(__foobar)
    #define __foobar
          foobar123 XYZ_FORWARD_TEST, XYZ_BACKWARD_TEST, XYZ_SYMMETRIC_TEST
    #endif
          write (*,*) 'testing'
          end
    asterix:/home/balay/junk/sun-test>MALLOC_CHECK_=0 ~/soft/sunstudio10u1/bin/f90 bug.F -F
    "bug.F", line 6: warning: In-place macro substitution leaves line truncated
    asterix:/home/balay/junk/sun-test>cat bug.f
    # 1 "bug.F"
          program main
          implicit none
          integer   XYZ_FORWARD_TEST, XYZ_BACKWARD_TEST, XYZ_SYMMETRIC_TEST
          write (*,*) 'testing'
          end
    asterix:/home/balay/junk/sun-test>~/soft/sunstudio10u1/bin/f90 -V
    f90: Sun Fortran 95 8.3 __version_f9x_patch_linux Build2_0 2005/08/01
    Usage: f90 [ options ] files.  Use 'f90 -flags' for details
    asterix:/home/balay/junk/sun-test>

    I think this is was a known bug. I used to get the
    same message on SS10 and now its gone when I try the
    same code on 11. It wasn't Linux specific either.Thanks, Since SS11 compilers are not yet available for linux - I'll just have to wait out on ths one..

  • Zen MicroPhoto lots of iss

    <font face="Garamond MT">Couple days ago I bough Zen MicroPhoto player and I can't say I'm very pleased with it due to a number of problems. I think Creative should at least make some kind of additional manual for this model. The issues are the following:
    <font face="Garamond MT">) Player does not support Win2000. I have this system at work and I can't just upgrade it to XP. I read all forum threads on this and none of the proposed solutions worked for me. I could not try to use EasyCd, because it was not in my box. I?d like it to be shipped additionally, but I leave in Russia so for sure it will take a lot of time.
    <font face="Garamond MT">2) Player does not charge when I connect it to my PC with Win2000 installed. Why!? It feels ludicrous if it can be charged only by PC with installed drivers Moreover it does not charge via my wall charger for RazrV3. Any suggestions? I?ve read all forum threads on this as well.
    <font face="Garamond MT">3) There is no possibility to view files in the way they are sorted on hard dri've, I mean that the player reads only tags and if something is wrong with tags the sorting is corrupted.
    <font face="Garamond MT">4)Too sensiti've touchpad.
    <font face="Garamond MT">?
    <font face="Garamond MT">I will appreciate any comments, which can really help. Answers like ?Its not supported. It can be charged only by PC with drivers? are not welcome

    Finally, I've found the solution for OS capitability. It works!?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" />
    http://www.misticri'ver.net/showthread.php?t=34852
    Read it carefully and amend the inf file as follows: (note that VID and PID may differ)
    ; wpdmtp_test.inf
    ; Media Service Provider driver package for USB-MTP devices.
    ; Windows 98, Windows ME, Windows 2000, Windows XP
    ; Copyright (C) 2005, Microsoft Corporation
    ; WARNING: THIS FILE IS PROVIDED FOR TEST PURPOSE ONLY.
    ;; ==================== Version section ======================[Version]
    Signature="$CHICAGO$"
    Class=WPD
    ClassGUID={EEC5AD98-8080-425f-922A-DABF3DE3F69A}
    Provider=%Provider%
    DriverVer = 03//2005, .0.0.0; ==================== Class sections =======================[ClassInstall32]; ================= Manufacturer & Models sections ==========[Manufacturer]
    %MfgName%=Test
    [Test]; Vendor needs to supply the VID (xxxx) and PID (yyyy)
    %Test.DeviceDesc% = Test_MTP, USB\VID_04e&PID_43c
    ?; ================ Win9x Device Install sections ============[Test_MTP]
    Include = wpdmtp.inf
    Needs? = WPD.MTP.SW.Registration.9x
    [Test_MTP.HW]
    Include = wpdmtp.inf
    Needs? = WPD.MTP.Registration.9x
    ; Uncomment the following line for a MTP device that does not support PDDRM
    ; AddReg = MTP.HW.LocalRegistration; ================= WinNT Device Install sections ===========[Test_MTP.NT]
    [Test_MTP.NT.HW]
    Include = wpdmtp.inf
    Needs? = WPD.MTP.Registration
    ; Uncomment the following line for a MTP device that does not support PDDRM
    ; AddReg = MTP.HW.LocalRegistration
    [Test_MTP.NT.Services]
    Include = wpdmtp.inf
    Needs? = WPD.MTP.Services; ================= Device specific registration ============[MTP.HW.LocalRegistration]
    ; Create and set this flag to supress queryiug device's storage serial number.
    ; This is only needed for a MTP device that does not support PDDRM.
    ; This flag is set if its value is not 0.
    HKR,,"SupressGetStorageSerialNum",0x000,
    ; ================= String macro section ====================[Strings]; =========== Localizable macro substitutions ===============Test.DeviceDesc = "Creative Zen MicroPhoto"
    MfgName?? = "(Creative Zen MicroPhoto)"
    Provider?? = "Microsoft"

  • SDK vs SCRIPT - GENERAL QUESTION

    Hi,
    I am automation developer for all Adobe products using JavaScript, VBScript. Now I am looking SDK development.
    Can I use VBScript code inside of SDK. I mean, I use VBScript (code) which is much meaning full. But C++ code is not like that.
    For clear, We can use (Javascript, VBScript, AppleScript) for scripting. Can we use either this instead C++ code for SDK?

    Hello ksaravanan:
    After reading your request several times I think you are asking this: Can an InDesign script do the same thing as what can be done using the SDK?
    I have written a fairly complex Applescript program which is used to generate fairly large and complex documents from an inhouse scripting language--the scripting required macro expansion, macro substitution, and complex analysis involving deep nesting and careful logic. I did a lot of complex stuff, and I could have done every single one of those selfsame tasks in a plugin using the InDesign SDK. Further, those tasks would have been done faster and probably more efficiently using SDK code. Why Applescript? To be honest (grin) my boss knew I was a Windows man and he wanted to see me work on a Mac out of pure spite (wide grin).
    But I also convinced him that everything this converter needed to do could be done using Applescript a lot more simply and quickly than in an SDK. Speed was not an issue, nor was efficiency. Development time was (even so it still took me about a year to develop).
    Now, can everything done by the SDK be done in a script? No. Not by a long shot. Oh, I suppose one could write a plugin and make it scriptable; in that sense, yes, but in every other sense, no. The SDK gives the programmer pretty deep access to the innards of the program; script commands hide such access
    b (see Patrick Perroud's fine entry--Patrick, that was poetry, my friend)
    . So it depends upon what you want to do. Simple automation or even complex automation that doesn't often change and does not require speed can probably be handled just fine by a script. If you need speed, efficiency, and/or if you need to reach into the heart of InDesign, learn the SDK. It's a challenge, but worth it.
    HTH!
    John

  • Base device config storage in Ciscoworks

         Thanks again to all who have assisted in my previous question. We are being asked to find a place within Ciscoworks to store a device config for each of the type devices that we have on our network.
        So we would have 1 config for a 3750, a 2900, 3548's, etc. I was thinking  we can label a config file, without addressing info, hostname, etc., on it and accomplish it that way. I could label one 3750 -12 port, 3750-48 port, etc., and just add the address info to the config when we deploy a config to a new device.
        Is this the best way to do it or is there another way that would work better? We have Ciscoworks LMS 3.2.
    Thanks again for you help.
    Dave Lehmann

    You could use config labeling for this, but the recommended way to accomplish what you describe is with baseline templates.  Go to RME > Config Mgmt > Compliance Mgmt > Template Mgmt.  Create baseline templates for each device type that contains all of the general config commands you want.  You can even add macro substitutions within the templates to be filled in during deployment.  For example:
    + hostname [HOSTNAME]
    + snmp-server community ourReadOnly RO
    + snmp-server community ourReadWrite RW
    + enable secret 5 $1$...
    During deployment, you would be given an opportunity to fill in the value of [HOSTNAME] for each device.  Consult the online context-sensitive help for baseline compliance for more details.

  • Setvars.bat trouble

    i am trying to develop dbservlets and having trouble in defining the jdev home.
    can someone help me in defining the jdev home through the setvars.bat file ...
    null

    JDeveloper Team (guest) wrote:
    : Ignacio,
    : These lines, and the one like it in setjboenv.bat:
    : set JDEV_TEMP=%1
    : set JDEV_TEMP=%JDEV_TEMP:"=%
    : set the value of the JDEV_TEMP environment variable to whatever
    : argument you pass in on the command line (%1), then strips out
    : any quotation marks in that value.
    : For example, if you enter the following at the command prompt:
    : c:\>setvars.bat C:\"Program Files"\Oracle\"JDeveloper 2.0"
    : The first line would set JDEV_TEMP to C:\"Program
    : Files"\Oracle\"JDeveloper 2.0" and the second line would strip
    : out the quote marks so you end up with JDEV_TEMP=C:\Program
    : Files\Oracle\JDeveloper 2.0
    : -L
    : Ignacio J. Ortega (guest) wrote:
    : : What can you say with this line of BAT from the setvars.bat &
    : : setjboenv.bat files:
    : : set JDEV_TEMP=%JDEV_TEMP:"=%
    : : i can't understand , perhaps a bug, an unix remniscent, or i
    : have
    : : RTF NT help...
    What surprise, this not works on 4nt, this are my problem, i'm
    trying to execute this bat files from 4nt, and this macro
    substitution technique doesn't work, but it runs ok in cmd.exe, i
    think that i knows NT in deep , but ..... it's not true.
    The NT online manual don't talks about it, but "set /?" explains
    this feature, live to see..... i'm revisting all de "/?" help
    from all the NT commands......thanks the explanation, very util
    in others areas of my work...
    Regards
    Ignacio J. Ortega. (very surprised)
    null

  • Problem setting the value of a substitution variable in a calc script

    Hi, All.
    I'm trying to update the value of a substitution variable inside an IF statement and I'm having trouble.
    Here's the code:
    *"Jan"(*
    IF  (LoopCounter = 1) &varEntity = "100";
    ENDIF;)
    the error I get back from EAS is:
    Error: 1200336 Error parsing formula for [Jan] (line 54): [(] without [)]

    I know CL knows a lot about HBR, if he's around today... LOL
    As a matter of fact, I just used an HBR (not using Calc Manager till I have to)'s macro functionality to drive fx for different Scenarios in a Planning app. Here's how I call the macro:
              /*     Call the macro mcrFxCoreOutYears for the four fx rate types for ALL 12 months of the year.     */
              FIX(&BudYear)
                   %mcrFxCoreOutYears(Constant)
                   %mcrFxCoreOutYears(Comparable)
                   %mcrFxCoreOutYears(Estimate)
                   %mcrFxCoreOutYears(Actual)
              ENDFIXI pass the Scenarios Constant, Comparable, Estimate, and Actual to the macro mcrFxCoreOutYears. You can apply HBRs against Essbase.
    I believe (I can't remember what exactly -- is it that templates don't accept parameters? That seems hard to believe. Looking at a CM template, that does seem to be the case. Bummer if I'm right.) that Calc Manager BRs have less functionality wrt templates, but I haven't worked with CM for over a year.
    It works really well -- a single place to maintain code and no appreciable performance cost.
    You cannot launch a HBR from a MaxL script but HBRs can be launched from command lines -- this may constrain where you place your automation (it basically has to run off of whatever the EAS server is. You may end up shelling out of MaxL to execute the HBR or even execute scripts across servers -- that does get more complicated.).
    Anyway, if you have any more questions, ask away -- it really is a very powerful component. I will have to look at CM more closely (sooner or later I will lose the HBR vs CM argument and at least need to know if templates support parameters) to see if I'm right on what I wrote above.
    Regards,
    Cameron Lackpour
    P.S. You cannot define an ARRAY in an HBR macro because ARRAY arrayname[value] gets read as a parameter. I ended up declaring the array in the calling HBR.
    P.P.S. I really need to write up the fx approach in a blog post -- it is wicked fast and really easy to use. Too many other posts in the queue already.
    Edited by: CL on Aug 24, 2011 1:48 PM

  • Getting a substitution variable value with VB API

    Hi,I'm trying to get the value of a specific substitution variable on an application with EsbGetVariable().I get a nice message that says "you do not have sufficient access to get this subsitution variable." and then i get the return code of EsbGetVariable() that is 1051085 (i couldn't find it in any documentation).The funniest thing is that i can get the value of the substitution variable, using Application Manager, with the same Essbase user that tries to get the value in the API.Any help would be welcome...PS : here is the code of the macro i execute (hope it will be readable)...Public Sub ESB_GetVariable()Dim i As IntegerDim nCount As IntegerDim sts As LongDim oVariable As ESB_VARIABLE_TDim hCtx As LongDim AppName As String * ESB_APPNAMELENDim DbName As String * ESB_DBNAMELENDim szApp As IntegerDim szDb As IntegerDim pAccess As IntegerDim X As VariantX = EssVConnect("Feuil1", "xxx", "xxx", "xxx", "Gmo_RvIt", "It_Repr")If X = 0 Then hCtx = EssVGetHctxFromSheet("Feuil1") If hCtx <> 0 Then sts = EsbGetActive(hCtx, AppName, szApp, DbName, szDb, pAccess) oVariable.AppName = AppName oVariable.VarName = "Divers_VR" sts = EsbGetVariable(hCtx, oVariable) MsgBox "status is " & sts MsgBox "Divers_VR value is " & oVariable.VarValue Else MsgBox "EssVGetHctxFromSheet failed with status " & hCtxEnd IfElse MsgBox "EssVConnect failed with status " & XEnd IfEnd Sub

    testing formatting ...
    0.03965 0.00026 ds ... <save> auth user=nobodyEdited by: gpoz on Apr 18, 2013 12:14 PM

  • Create and assign substitution

    Hi,
    Can anyone tell me how to define substitution via user-exists and how to assign the substitution to controlling area T001 via Financial Accounting (New) ->General Ledger Accounting (New) ->Tools ->Validation/Substitution -> Substitution of Profit Centers in Customer Orders -> Assign Substitution Rules.

    Hi Venkatesh,
    Thanks for your reply.
    substitution logic.
    The substitution look all relevant information and look for an entry in the Z-tables:
    -     DATAB / DATBI
    -> look up sy-date (system date). sy-date should be between DATAB and DATBI
    -     KOKRS          
    ->is available in VBAK, so should be available in an internal table at the moment of substitution. If not, look-up via sales organization  company code  controlling area     
    -     Z_SOL_CODE  (solution code)
    ->the solution code will be available on each sales order line as a partner function: partner function u2018ZSu2019
    ->from solution code, look-up solution grouping in ZF_SOL_MAPPING
    -     Z_MACRO_SEG     (macro segment)
    -> the macro segment needs to be looked-up from the sold-to part of the sales order  in the customer master  (menu) additional data  Attribute 1 (field BRSCH)
    Based on the above logic, the system needs to look-up the correct profit center in substitution table.
    1.I will copy the include  RGGBS000 into a Z include and put my exit in that include.How to update the include name in T80D table.
    2. Through SPRO I will create a substitution and the step containing prerequisites and substitutions.
    How can I include the above substitution logic in the substitution field and what needs to be filled in the prerequisites field.
    Where can I do the coding for the exit mentioned in the  zinclude program and how is this zinclude related to substistution.
    Please reply

  • Rename files in a macro?

    So,
    I need to change a file into 6 different sizes and save them into 6 different folder.
    I made a macro that did this.
    So far so good.
    But now I have to change the names manually, since they all are named ex. ”blah-copy.png"
    I want them to keep the original file name and then add the folders name autmatically to the file name.
    ex. "[email protected]"
    I tried to do this in the macro and it added the correct folder name to the file but then ALL the file where named the same as the one I did in the macro.
    Is it possible to do this? Or should I just change it maually?
    I’ve got about 250*6 files so, if it’s possible it would really help!
    /evy

    If you want to rename all the files at the end you can use Tools > Batch Rename in Bridge, that has one feature called "String Substitution" with which you could replace "copy" with some other text.
    As for Scripts if you want to pursue that you should post over at
    Photoshop Scripting

  • Please fix the "word substitution" feature!

    The macros "%b" "%B" "%p" of word substitution is broken since 10.1.0. It is import for me. I have thousands of entries of it on my BOLD9900(about 30000 entries). Without them I can not input text efficently.
    The macros "%b" "%B" "%p" just don't work. And if I use two of them, the second is treated as normal letters except a macro. For example, I set a Word Substitution entry like this:
    myname %bqueshw
    Then when I type "myname" twice, I get "queshw queshw". There is a space between the two "queshw". It should not be there.If I set a entry like this:
    myname %b%bqueshw
    Then I get "%bqueshw". The second "%b" is treated as normal letters now.
    1. Please fix the broken macros.
    2. Please activate the "word substitution" feature as default for the TextArea class. There are two class for inputting text , TextField and TextArea. But the TextArea is setted to inactivate the "word substitution" feature as default now.
    3. Please open the APIs of "word substitution", and I can develop an app myself to import my entires from BOLD9900 to my Q10.
    Please!!!

    The macros "%b" "%B" "%p" of word substitution is broken since 10.1.0. It is import for me. I have thousands of entries of it on my BOLD9900(about 30000 entries). Without them I can not input text efficently.
    The macros "%b" "%B" "%p" just don't work. And if I use two of them, the second is treated as normal letters except a macro. For example, I set a Word Substitution entry like this:
    myname %bqueshw
    Then when I type "myname" twice, I get "queshw queshw". There is a space between the two "queshw". It should not be there.If I set a entry like this:
    myname %b%bqueshw
    Then I get "%bqueshw". The second "%b" is treated as normal letters now.
    1. Please fix the broken macros.
    2. Please activate the "word substitution" feature as default for the TextArea class. There are two class for inputting text , TextField and TextArea. But the TextArea is setted to inactivate the "word substitution" feature as default now.
    3. Please open the APIs of "word substitution", and I can develop an app myself to import my entires from BOLD9900 to my Q10.
    Please!!!

Maybe you are looking for

  • Text entry box not funtioning

    Does anyone know if project a project size affects the functionality of text box entry. We have a project with 377 slides and for some reason, certain text entry boxes are not funtioning. when we break the project down to smaller pieces, the function

  • Notes on my ipod

    when i put notes on my ipod i have them on there but on it when i scroll through the notes there is always and thing that has like front size and then it says >>spaz>> and some other stuff like that. how do i get that off there? someone help me plz

  • Since upgrading to Yosemite I can't upgrade I Photo.

    Since upgrading to Yosemite I can't upgrade IPhoto.  It gives me this error "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled."

  • Gradient mesh kinks

    I am using cs3 on a g5. I have little kinks in the outline of my gradient mesh shape that are impossible to delete or smooth out. Please help because I have a terrible deadline as usual! Carlo

  • Black frame around slides

    I like the slideshow option in iDVD, but I would like to stretch the pictures all over my TV screen. Now, there is a large black frame around every slide. Is this possible?