Find/Change whole words in CS3

Maybe I'm just being dense, but when I do a find/change in ID CS3 I can't find the option to search for whole words only. The default is set to ignore whole words, so I end up finding a lot of undesirable matches. My last search was for "air," so you can imagine how many false matches I got.
This was quite obvious in CS2, but those options (including match case) seem to have moved somewhere where I can't find them.
Any assistance would be most appreciated.
Mark

With your mouse, examine each of the icons under the Change field. A tooltip identifies each one. One of them is the one you want.
Dave

Similar Messages

  • Find/Change: mission impossible? [CS3]

    I want to assign a paragraph style to all occurrences of a 'Head1' style like this:<br /><br />1.1  The situation on the ground<br /><br />It's easy to find ^9.^9^t  (number, period, number, tab) but if I want to ensure i don't wrongly style the Head2 headings (ie 1.1.2) then I need to also find the paragraph return preceding the above.<br /><br />Well, if I do that, then I will wrongly style both Head1 <and> its preceding paragraph, which i don't want. So is there a way to find the beginning of a paragraph?<br /><br />Many thanks in advance,<br />Aaron

    CS3? GREP's the way to do it!
    If you're in a hurry :-) Search
    >^\d+\.\d+\s
    Replace with formatting only, Head1.
    Step by step:
    >^
    Start of a paragraph. This does
    i not
    include the previous return; it also 'finds' start of a story, or the first position after a table or page break.
    >\d+
    any number of decimals, 1 or more (that's the +)
    >\.
    A literal period. Just the "." is, in GREP mode, any character -- like "^?" in regular search.
    >\d+
    -- even more decimals.
    >\s
    Finish off with whitespace, i.e., a space, tab, en-space, or whatever there is.
    The "+" after the decimal "\d"'s ensures it'll also pick up "1.10" and "10.1".

  • Search for a whole word fails if word in text is preceeded by "-"

    Hallo there,
    I discovered a new "feature" by Adobe Reader. When I search for a Whole word, and if a word is preceeded by a "-" it lists it, although it shouldnt.
    For example. Serached word : "Word".
    In the results you will find something like "Wrongly-found-word, Wrongly-listed-word" etc.
    How to exclude those cases ?
    Thanks in advance,
    B

    Btw, maybe such whole word search is possible only with a regular expression?
    Other exampels
    Word to search for : "X"
    Results could be also: "Y-X-Z", "Y-Z-X', "X-Y-Z".
    All I would like to have is aber only when "X" is preceeded and succeeded by a space character, or in best case by a single, non-letter, non-digit character.
    I will appreciate any helpful advice, how to search and find a whole word only.
    Regards,

  • JS:CS3 Newbie needs help! find/change character styles

    I'm new to scripting and JavaScript is giving me a headache, but I'll keep trying. What I'm trying to do is automate a few things so that the production time of our school newspaper is reduced while insuring accuracy.
    I've played around a little with the text find change sample and the changing or adding paragraph styles in the InDesignCS3_ScriptingGuide_JS.pdf and I barely understand what I'm doing.
    When us page designers receive text to place in the document, our editors mark the text with tags like: < b >text< / b >, where the word "text" is to be bolded. (there wouldn't any spaces between < and b and > etc. I just did that so It'll show up here). We have basic character styles and paragraph styles set up, and we just started working with nested styles.
    Is there a way we can search for the < b > tag and bold everything after it up until the < / b > tag? Sort of the way it does for html (the way it would do for this message if I took out the spaces). It'll be great if it could remove the tags as well, but if not, I know I could create a find/change script to do the removal afterwards.
    I appreciate any input.
    Thanks!

    You've not found yourself the easiest of tasks! You need GREP find/replace, not text. Do you have any experience with GREP? It's worth investigating, it's a powerful feature. The script below handles bold. For clarity, it doesn't do any error checking: it assumes that there's a document with text in it and that the document contains a character style called 'bold'.
    // talk to Indesign, nobody else
    #target indesign
    // reset the Find/Change dialog
    app.findGrepPreferences = app.changeGrepPreferences = null;
    // find everything between <b> and  (including these codes)
    app.findGrepPreferences.findWhat = '<b>.+?</b>';
    // add 'bold' style
    app.changeGrepPreferences.appliedCharacterStyle = 'bold';
    // make the changes
    app.activeDocument.changeGrep();
    // now delete the <b> and </b> codes
    app.findGrepPreferences = app.changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = '</?b>';
    app.changeGrep();
    You can adapt it easily to handle other codes, and at a later stage you could generalise it so that you needn't repeat whole bunches of code.
    Good luck with your first forays. Again, it's not the easiest of tasks, but it's worth getting to grips with.
    Peter

  • [CS3 JS] Find/Change Object Problem

    app.changeObjectPreferences = NothingEnum.nothing does not seem to clear the change object preferences for me.
    app.findObjectPreferences = NothingEnum.nothing works as expected, as do both app.findTextPreferences = NothingEnum.nothing and app.changeTextPreferences = NothingEnum.nothing.
    Does anyone else use the new Find/Change Object?

    Hello. I'm new here but it seems to be the only place where I can post this question to.
    I'm working in a C# application that uses InDesign CS3 scripting. I'm trying to create an index automatically from a tabbed list of words in a text file.
    As C# is a strongly typed language, I have to cast all objects to the right type. I'm having problems when I try to add the page numbers to the created index entries using the following code (I've used the CreateIndexEntry.jsx scrip as a starting point).
    //Find all occurrences of the word or set of words (the topic name)
    ((InDesign.FindTextPreference) app.FindTextPreferences).FindWhat = topic.Name;
    InDesign.Objects foundTexts = doc.FindText(System.Reflection.Missing.Value);
    It's supposed to be an Array of Text objects (InDesign.Text) but when I try to cast each object using this
    //Code is forced because I've tried everything here
    //Loop through each finding and add page numbers to topic
    IEnumerator textEnum = foundTexts.GetEnumerator();
    while (textEnum.MoveNext())
    object text = textEnum.Current;
    topic.PageReferences.Add((InDesign.Text)text, InDesign.idPageReferenceType.idCurrentPage, System.Reflection.Missing.Value, System.Reflection.Missing.Value);
    I got the following exception (translated).
    text is not an InDesign.Text object (Interfaces doesn't match)
    So the question is what object type should I use to cast each object resulting by calling the Document's FindText method.
    Every suggestion will ve very welcome.
    Thank You very much.

  • [JS CS3] Find/Change "[Basic Paragraph]" style

    I'm trying to find all occurances of the [Basic Paragraph] style and replace them with [No Paragraph Style]. I'm using:
    app.findTextPreferences.appliedParagraphStyle = "[Basic Paragraph Style]";
    app.changeTextPreferences.appliedParagraphStyle = "[No Paragraph Style]";
    I get the message "Invalid value for set property 'appliedParagraphStyle'. Expected String, ParagraphStyle or NothingEnum enumerator, but received "[Basic Paragraph Style]"."
    I've tried every combination of brackets, no brackets, quotes, no quotes, etc. It doesn't seem like this can be scripted, even though it can be done via find/change in InDesign. Am I banging my head against the wall? Does anyone know if this can be done?

    "[Basic Paragraph]" as shown in the code below doesn't work either. (the word "Style" actually snuck in as I was trying different variations. But no combination seems to work.
    If anyone knows that [Basic Paragraph] can or cannot be accessed via scripting, I'd like to know. Thanks.
    app.findTextPreferences.appliedParagraphStyle = "[Basic Paragraph]";
    app.changeTextPreferences.appliedParagraphStyle = "[No Paragraph Style]";

  • Find/Change words (with GREP) and apply a style...

    I need a Script for Find/Change words with GREP, and apply a paragraph style...
    Thanks...

    Hi Marcos,
    If you want the script to create character styles: Bold , Italic, Bold Italic, etc, and replace local formatting with these styles, use scripts in post #3.
    But if you want find and change words, or/and replace local formatting with styles defined by you, use FindChangeByList script.
    If the latter, I recommend you to download and install Record Find Change script (written by Martin Fisher).
    Then choose settings you need in Find-Change dialog – make sure they work as expected – and run Record Find Change script. A Notepad/TextEdit file will pop up with a line containing the recorded setting. Copy it, open FindChangeList.txt, delete the contents of this file and paste the line you just copied (or add it to the bottom of the file).
    Repeat the process for all find-change operations you need.
    Finally run FindChangeByList.jsx to make all changes in one go.
    However, while using Record Find Change script, you may encounter a problem: it doesn’t record paragraph and character styles placed inside a group. But you can write references to such styles like so:
    appliedParagraphStyle:app.activeDocument.paragraphStyleGroups.item("Style Group 1"). paragraphStyles.item("Paragraph Style 1")
    Kasyan

  • [AS] CS3 Find -Change inserting soft return instead of hard

    Can anyone help identify why this script doesn't work? i want it to replace multiple returns with a single paragraph return. It's replacing with a soft return rather than a hard return.
    I copied and pasted the find grep and change grep fields into the script. I even tried it by typing "\r" into the change grep field. Any thoughts? Much appreciated!
    tell application "Adobe InDesign CS3"
    --Clear the find/change preferences.
    set find grep preferences to nothing
    set change grep preferences to nothing
    set find text preferences to nothing
    set change text preferences to nothing
    --Set the find options.
    set include footnotes of find change grep options to false
    set include hidden layers of find change grep options to false
    set include locked layers for find of find change grep options to false
    set include locked stories for find of find change grep options to false
    set include master pages of find change grep options to false
    --delete multiple graphs
    set find what of find grep preferences to "~b~b+"
    set change to of change grep preferences to "
    set myStory to parent story of item 1 of selection
    tell myStory
    set myFoundItems1 to change grep
    end tell
    set find grep preferences to nothing
    set change grep preferences to nothing
    end tell

    Shane, thanks! This worked. What I meant to have written was that when copying "~b" from the find/change field in InDesign and pasting into Script Editor, and saving, it converted it automatically to a hard return. I didn't try it manually because sometimes the obvious is elusive! (to me at least)
    Thanks again.
    Jim

  • Can you use Find/Change to search for many different words at once?

    I have an 80 page catalogue in Indesign (CS5) - it has several thousands of catalogue numbers listed as text within it. I've just been given a list of 1000 catalogue numbers to search for and if they appear, remove them - is there any way to search for them all in one go, rather than one by one?
    I've started using Find/Change to search for the catalogue numbers but seem to only be able to search one catalogue number at a time that way.
    Any ideas welcome!
    Thanks

    GREP can search for more than one phrase "at once" (i.e., in one operation), like this:
    word1|word2|word3
    -- the pipe | delimits the separate words. Then again, GREP Is Not Magic™. This --
    ...  a list of 1000 catalogue numbers to search for ...
    is a bit too much to copy-and-paste into the single Find What line. There is a limit of ten or twelve (or something) OR phrases you can use in GREP.
    On the other hand: GREP is great at finding numbers. If all of your catalogue numbers obey some basic rule, for instance "all of them consist of 6 digits and there are no other numbers with exactly 6 digits", well, that we can probably work with.

  • I want to modify the "find" box to be avble to only search for whole words.

    I want to modify the "find" box to look only for matching "whole words," otherwise--it's pretty pointless!!!

    Also, it is early in the day for this forum as far as activity by the contributor's who really know CSS coding. I bet someone else will have the codes you need later today.

  • CS3 Find/Change Correction

    Fellow Scripters--
    In several places in the Scripting Guide, I set the find/change options to nothing. This is an error. Setting the find/change
    preferences to nothing works; setting find/change
    options to nothing doesn't. It doesn't produce an error message, but it can mess up all subsequent find/change operations.
    The affected objects are:
    AppleScript
    find change text options
    find change grep options
    find change glyph options
    JavaScript
    findChangeTextOptions
    findChangeGrepOptions
    findChangeGlyphOptions
    VBScript
    FindChangeTextOptions
    FindChangeGrepOptions
    FindChangeGlyphOptions
    Do not set any of the above to nothing, NothingEnum.nothing, idNothingEnum.idNothing, null, undefined, or anything similar.
    If you are using the FindChangeByList example script, you might want to remove the lines that do this--I'll get a revised version posted soon. The installed version works fine with the default FindChangeList.txt file, but will cause problems if you try to use more complex grep expressions.
    Thanks,
    Ole

    Here is the version of the script for CS4 (it works in CS3 as well, much better than original CS3 version).
    http://forums.adobe.com/servlet/JiveServlet/download/2080627-12695/FindChangeByListCS4.zip
    You can also use Martin Fisher's script to record settings from Text and GREP tabs, then copy and paste them to FindChandgeList.txt file.
    http://www.kasyan.ho.com.ua/downloads/RecordFindChange_CS3_Kas.zip
    Check out also this script: http://www.kasyan.ho.com.ua/find_change_by_queries.html
    Kasyan

  • After restoration of files via time capsule my status changed to "Guest" and I can't find the pass word for changing it back to Registered user. Any Help?

    after restoration of files via time capsule my status changed to "Guest" and I can't find the pass word for changing it back to Registered user. Any Help?

    Hey mate I had this same problem exept instead of my recording disappearing my Chorus that went for 8 bars extended out to 20 bars lol and I used auto tune on it and it sounds like t-pain on a very bad day so it sounds like it does a few things when it comes up that error

  • Find whole word

    How i can find whole words only in a string?
    If we have a string like "Hello any person in any part of world" And User searches for "an"
    in normal search, he finds 2 match But he must find it only if the string has contained "an" as a whole word  like "this is an apple"
    It may be possible.

    Hi
    As usual, late to the party.  Here is an example in the form of a stand alone Project.
    ' new Project with default BLANK Form1
    ' replace ALL Form1 code with this code.
    ' Illustrates simple word find in string
    ' using simple RegEx with CASE/NO CASE.
    Option Strict On
    Option Explicit On
    Option Infer Off
    Imports System.Text.RegularExpressions
    Public Class Form1
    Dim rtb As New RichTextBox
    Dim tb1, tb2, tb3 As New TextBox
    Dim lab1, lab2 As New Label
    Dim b, b1 As New Button
    Dim cb As New CheckBox
    Dim r1, r2, r3 As New RadioButton
    Dim NormalF As New Font(rtb.Font.FontFamily, 12, FontStyle.Regular)
    Dim HiLight As New Font(rtb.Font.FontFamily, 16, FontStyle.Bold)
    Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles Me.Load
    Me.Size = New Size(300, 550)
    With rtb
    .Location = New Point(5, 5)
    .Text = "12345678901234567890123456789012345678901234567890123456789012345678901234567890" & vbCrLf
    .Text &= "{.An.} This .AN.is a {an}test string using completely random words and characters and is NOT a sentence. An they show any of another [An] yet another set of an characters (an) numbers an dots ... and a lot of spurious characters An an AN aN type entries....." & vbCrLf & "30/12/2013 12.30.2013 2013\12\30"
    .Multiline = True
    .Size = New Size(270, 200)
    .BackColor = Color.Khaki
    .ForeColor = Color.Maroon
    .Font = NormalF
    .Anchor = AnchorStyles.Left Or AnchorStyles.Right Or AnchorStyles.Top
    .BorderStyle = BorderStyle.FixedSingle
    .ScrollBars = CType(ScrollBars.Vertical, RichTextBoxScrollBars)
    End With
    With lab1
    .Text = "Pattern"
    .Location = New Point(5, 430)
    .AutoSize = True
    .Anchor = AnchorStyles.Left Or AnchorStyles.Right Or AnchorStyles.Bottom
    End With
    With tb1
    ' date finder
    .Text = "(?<month>\d{1,2})[/\\.-](?<day>\d{1,2})[/\\.-](?<year>\d{2,4})\b|\b(?<year>\d{2,4})[/\\.-](?<day>\d{1,2})[/\\.-](?<month>\d{1,2})"
    .Location = New Point(56, 425)
    .Width = 100
    .BackColor = Color.Khaki
    .ForeColor = Color.Maroon
    .Font = New Font(Me.Font.FontFamily, 12)
    .Anchor = AnchorStyles.Left Or AnchorStyles.Right Or AnchorStyles.Bottom
    .BorderStyle = BorderStyle.FixedSingle
    End With
    With tb2
    .Location = New Point(5, 215)
    .Multiline = True
    .Size = New Size(270, 200)
    .BackColor = Color.Khaki
    .ForeColor = Color.Maroon
    .Font = New Font(Me.Font.FontFamily, 12)
    .Anchor = AnchorStyles.Left Or AnchorStyles.Right Or AnchorStyles.Top Or AnchorStyles.Bottom
    .BorderStyle = BorderStyle.FixedSingle
    .ScrollBars = ScrollBars.Vertical
    End With
    With lab2
    .Text = "Search"
    .Location = New Point(5, 460)
    .AutoSize = True
    .Anchor = AnchorStyles.Left Or AnchorStyles.Right Or AnchorStyles.Bottom
    End With
    With tb3
    .Text = "an"
    .Location = New Point(56, 455)
    .Width = 100
    .BackColor = Color.Khaki
    .ForeColor = Color.Maroon
    .Font = New Font(Me.Font.FontFamily, 12)
    .Anchor = AnchorStyles.Left Or AnchorStyles.Right Or AnchorStyles.Bottom
    .BorderStyle = BorderStyle.FixedSingle
    End With
    With b
    .Text = "Find"
    .Location = New Point(210, 486)
    .Anchor = AnchorStyles.Right Or AnchorStyles.Bottom
    .Width = 50
    End With
    With b1
    .Text = "Clear"
    .Location = New Point(160, 486)
    .Anchor = AnchorStyles.Right Or AnchorStyles.Bottom
    .Width = 50
    End With
    With cb
    .Text = "Ignore CASE"
    .Checked = True
    .Location = New Point(0, 486)
    .Anchor = AnchorStyles.Right Or AnchorStyles.Bottom
    .RightToLeft = Windows.Forms.RightToLeft.Yes
    End With
    With r1
    .Width = 16
    .Text = Nothing
    .Checked = False
    .Location = New Point(tb1.Right + 15, tb1.Top)
    .Anchor = AnchorStyles.Right Or AnchorStyles.Bottom
    End With
    With r2
    .Width = 16
    .Text = Nothing
    .Checked = False
    .Location = New Point(tb3.Right + 15, tb3.Top)
    .Anchor = AnchorStyles.Right Or AnchorStyles.Bottom
    End With
    With r3
    .Text = "ALL"
    .Checked = True
    .Location = New Point(tb3.Right + 45, tb3.Top)
    .Anchor = AnchorStyles.Right Or AnchorStyles.Bottom
    End With
    Me.Controls.AddRange({rtb, lab1, lab2, tb1, tb2, tb3, b, b1, cb, r1, r2, r3})
    AddHandler b.Click, AddressOf b_Click
    AddHandler b1.Click, AddressOf b1_Click
    AddHandler r3.CheckedChanged, AddressOf ALLselected
    AddHandler cb.CheckedChanged, AddressOf KeepCase
    Me.Width = 500
    tb3.Select()
    End Sub
    Private Sub DoFind()
    ' set the pattern to use depending on Radio button selected
    Dim pattern As String = Nothing
    Select Case r3.Checked
    Case True
    ' use straight text pattern
    pattern = tb3.Text
    Case Else
    Select Case r1.Checked
    Case True
    ' use pattern as entered by user
    pattern = tb1.Text
    Case Else
    ' use basic regex pattern
    pattern = "\b" & tb3.Text & "\b"
    End Select
    End Select
    ' ignore case
    Dim rgxCI As New Regex(pattern, RegexOptions.IgnoreCase)
    ' case sensitive
    Dim rgxCS As New Regex(pattern, RegexOptions.None)
    rtb.SelectAll()
    rtb.SelectionBackColor = rtb.BackColor
    rtb.SelectionFont = NormalF
    If tb3.Text.Length < 1 Then Exit Sub
    Select Case cb.Checked
    Case True
    tb2.AppendText(vbCrLf & "CASE INSENSITIVE pattern = " & pattern & vbCrLf)
    Dim m As MatchCollection = rgxCI.Matches(rtb.Text)
    If m.Count < 1 Then
    tb2.AppendText("No Matches for '" & pattern & "'" & vbCrLf)
    Else
    tb2.AppendText("Found " & m.Count.ToString & " Matches, indexes = ")
    End If
    For Each match As Match In m
    rtb.SelectionStart = match.Index
    rtb.SelectionLength = match.Length
    rtb.SelectionFont = HiLight
    rtb.Refresh()
    rtb.SelectionBackColor = Color.LightBlue
    tb2.AppendText(match.Index.ToString & " ")
    Next
    Case Else
    tb2.AppendText(vbCrLf & "CASE SENSITIVE pattern = " & pattern & vbCrLf)
    Dim m As MatchCollection = rgxCS.Matches(rtb.Text)
    If m.Count < 1 Then
    tb2.AppendText("No Matches for '" & pattern & "'" & vbCrLf)
    Else
    tb2.AppendText("Found " & m.Count.ToString & " Matches, indexes = ")
    End If
    For Each match As Match In m
    rtb.SelectionStart = match.Index
    rtb.SelectionLength = match.Length
    rtb.SelectionFont = HiLight
    rtb.Refresh()
    rtb.SelectionBackColor = Color.Pink
    tb2.AppendText(match.Index.ToString & " ")
    Next
    End Select
    tb2.AppendText(vbCrLf)
    End Sub
    Private Sub b_Click(sender As Object, e As EventArgs)
    DoFind()
    End Sub
    Private Sub b1_Click(sender As Object, e As EventArgs)
    tb2.Text = Nothing
    tb3.Text = Nothing
    rtb.SelectAll()
    rtb.SelectionBackColor = rtb.BackColor
    rtb.SelectionFont = NormalF
    End Sub
    Private Sub ALLselected(sender As Object, e As EventArgs)
    Dim rb As RadioButton = DirectCast(sender, RadioButton)
    If rb.Checked Then
    cb.Visible = False
    cb.Checked = True
    Else
    cb.Visible = True
    End If
    End Sub
    Private Sub KeepCase(sender As Object, e As EventArgs)
    Dim cb As CheckBox = DirectCast(sender, CheckBox)
    If r3.Checked Then
    cb.Visible = False
    cb.Checked = True
    Else
    cb.Visible = True
    End If
    End Sub
    End Class
    Regards Les, Livingston, Scotland

  • [JS CS3] How to load Find/Change dialog?

    Hello,
    Below is a script that uses GREP to find straight apostrophies and then change them to smart (curly) ones. The script invokes the Find/Change dialog so that the user can see what she or he is doing.
    However, if the user last used the Find/Change dialog in the TEXT mode, that is the mode that appears. I want the script to go to the GREP mode. I see that there is code for app.loadFindChangeQuery(queryName, searchMode), but I have no idea what the "queryName" is and how to use it in this script.
    Thanks for any help.
    Tom
    theGrepLoader("~'", "~]");
    function theGrepLoader(grepFindIt, grepChangeIt){
        app.findGrepPreferences = NothingEnum.NOTHING;
        app.changeGrepPreferences = NothingEnum.NOTHING;
        app.findGrepPreferences.findWhat = grepFindIt;
        app.changeGrepPreferences.changeTo = grepChangeIt;
        app.menuActions.item("Find/Change...").invoke();
    }//end theGrepLoader

    Thanks, Peter!
    I appreciate your help but I have found another solution. I am amazed at my own stupidity sometimes. You see, I do my scripting in a very lame sort of way because I have never used Javascript outside of InDesign. As such, I find myself at a disadvantage because the documentation that Adobe provides assumes that you are aware of many of the basics. Case in point: I have always had trouble manipulating strings because I NEVER KNEW that you could search and replace strings! I just could not find examples of this in the Adobe documentation. So here I was in some cases adding temporary textFrames so I could get to my strings as text contents and then removing the temporary textFrames at the end of the script. In this particular case I needed to merge several paragraphs into one paragraph. Now that I know how to search & replace strings, it is so simple to strip away all the paragraph returns (which are included in text contents). I am learning, albeit rather slowly. Thanks again.
    Regards,
    Len Swierski

  • [CS3] [JS] Find Change Aesthetic Kerning Pairs

    Hi,
    I want to find and "erase" all the aesthetic kerning values in a document with Find Change.
    How do I say: "app.findTextPreferences.kerningValue" != (zero or null)
    Thanks
    PJB

    Can't do that. ID can't find "other" attributes, only specified ones.
    This one regularly bites me when authors don't use Superscript and Subscript, but make their text a few pts smaller and move it up/down a few points -- and I bet it's their (w|W)ord processor that does it!
    "A" solution (as opposed to "the") is to mark all 'good' text with S&R with a color, then search for orginally-colored text.
    .. Although, in your case, I think you can set all kerning to 0 and be done with it.

Maybe you are looking for

  • Can a 2nd Gen iPod Touch update to the 4.2 os?

    I have been trying to update for two days now (not counting my various attempts over the past few months) and I'm getting absolutely nowhere. iTunes tells me that I need to move stuff from my iPod to the library - which I can't seem to do, so I hit '

  • Function to Release and Process a batch imput session.

    Hi experts, Does anibody know a function module that i caold use to release a batch imput session? And another to Process it? Like in Transaction SM35. I need this to do this in a certain case of an abap program i'm developing. Thank-you, Artur. Mess

  • Batch combine files into one illustrator document - how to open target document?

    I am making a script which will: 1) Open a folder of Illustrator files 2) Open each file in the folder (these files are called the source files) 3) Select all the contents of the source file 4) Copy the contents of the source file 5) Paste these cont

  • Printing issue in iTunes 7

    I'm trying to print songs by album from my Music Library on my PC. I print it to PDF file ... it prints ok the only problem I have is that there are only 17 pages of Music but after page 17 it is all blank pages upto 97? Does anyone know what the pro

  • Question about load balancing between Portal and ABAP

    Hi, I have the problem whit load balancing between Portal and ECC (ERC) ABAP Exist two system: 1) ECC (ERP) ABAP = Backend     Module = HR 2) EP (JAVA) = Frontend The users (9000 users) logon in the EP and run query (data personal) in the ECC.  The p