Upc codes in Pages document

I have a requirement to scan the UPC code on a product (with a handheld laser scanner) and have that UPC print on a Pages document.
So far I've installed a UPC font, but the code that is generated from the scan is not scannable when the document is printed out. 
Question:  How do I get what I'm scanning to be represented properly by the UPC font? Or is this not doable?
Any helpful suggestions would be greatly appreciated.
-GMO

An AppleScript could perform the "ton of gyrations" for you.
If the scan produces a twelve digit number, with no hyphen in the middle, and you copy it to the clipboard, then running this script:
--Have the twelve digits from the scan on the clipboard
set raw_list to characters of (the clipboard as text)
set code_list to item 1 of raw_list as list
set blue_code to characters of "qwertyuiop"
set red_code to characters of "asdfghjkl;"
set Green_code to characters of "zxcvbnm,./"
repeat with i from 2 to 6
  my mydecode(blue_code, (item i of raw_list))
  set end of code_list to result
end repeat
set end of code_list to "-"
repeat with i from 7 to 11
  my mydecode(red_code, (item i of raw_list))
  set end of code_list to result
end repeat
my mydecode(Green_code, (item 12 of raw_list))
set end of code_list to result
set the clipboard to code_list as text
on mydecode(alist, anum)
  if (anum as number) = 0 then
  return item 10 of alist
  else
  return item (anum as number) of alist
  end if
end mydecode
--end of script
will place a string of characters on the clipboard that will display as the barcode in the CarolinaBarUPC font. (In Pages '09, on Snow Leopard, at any rate.)

Similar Messages

  • Can not add function to pages-document created with Applescript

    If I create new document using the GUI (New document) I can place the cursor within any table-cell, type "=" (equal sign) and f.e. "2+2" which will result in a cell showing a "4".
    If I create a document with Applescript, I can not add new functions (neither by typing = nor by using Insert >> Function (may be different, I have German version here). Already existing functions (which already were in the template) can still be used and work as expected but can not be altered.
    Any idea?
    I use Pages '08, Version 3.03
    Code I used to create the document:
    tell application "Pages"
    launch
    make new document at front with properties {template name:templateName}
    # Angebotsnummer ins Dokument schreiben
    tell body text of front document
    make new paragraph at after paragraph 1 with data angebotsNr
    set paragraph style of paragraph 2 to "Überschrift"
    end tell
    # Datei abspeichern
    set dateiName to missing value
    repeat until dateiName is not equal to missing value
    set dateiName to text returned of (display dialog "Datei Name:" default answer angebotsNr & "_" & kundenName) as text
    end repeat
    save front document in angebotsOrdner & dateiName
    end tell

    I apologize but the given script can't run.
    The variable templateName is undefined.
    The variable angebotsNr is undefined too.
    About the described behavior, it's a bug which I never discover before.
    It's always striking in Pages '09.
    Here is the report which I filed :
    Bug ID# 8704270
    Summary:
    +Odd behavior of tables in Pages documents created by a script+
    +Steps to Reproduce:+
    +Run this huge script+
    +tell application "Pages"+
    +make new document at front with properties {template name:"Blank"} (* "Vierge" on French systems *)+
    +end tell+
    +Insert a table+
    +try to insert a formula+
    +Expected Results:+
    +I assumed that I will get the formula editor which I get when the document is created by hand+
    +Actual Results:+
    +There is no way to get the editor, no way to insert the equal character.+
    +This odd behavior strike in all versions of Pages '09 and Pages '08+
    Regression:
    +None to my knowledge+
    Yvan KOENIG (VALLAURIS, France) dimanche 28 novembre 2010 11:30:29

  • In Pages document, how do I search for word and view its frequency and page numbers in a sidebar?

    I have a long document and I want to be able to search for certain key words and phrases, and then see how many times they appear in the document and exactly where.  How do I conduct this sort of search and viewing?  In the past, in Pages and Word, I've been able to view my "finds" in a sidebar but I can't figure out how to activate that service anymore.
    Thanks!

    Here is a word frequency concordance Automator Service that works in both versions of Pages. It does not present a page number reference. It is by descending count, and alphabetically, within the repetitive counts as shown in the image here. In any document, you select the text to process, then Menu > Application Name > Services > Frequency. The Service will open TextEdit with the n-pages of scrollable results. It is 16 pt Helvetica Neue for legibility.
    Here is the code:
    on run {input, parameters}
         try
              set mySelection to input as text
              set formatted_result to concordance(mySelection)
              if formatted_result is not null then
                   set textHeading to "Word Frequency List"
                   tell application "TextEdit"
                   activate
                         set NewDoc to make new document with properties {name:"Concordance"}
                         make new paragraph at beginning of text of NewDoc with data textHeading & return
                         make new paragraph at end of text of NewDoc with data formatted_result
                         tell text of NewDoc
                               set font to "Helvetica Neue"
                               set size to 16
                               set color of paragraph 1 to {0, 0, 65535}
                         end tell
                        end tell
              else
                        display dialog with title ¬
                         "No input selected" with icon stop ¬
                          giving up after 15
              end if
         on error errmsg number errnum
                    display alert ¬
                               "AppleScript Error" message errmsg & "[" & errnum & "]" as critical ¬
                                  giving up after 30
         end try
         return input
    end run
    on concordance(mySelection)
    -- Use Ruby to count word frequency and alphabetically sort words
        set rb to ¬
        "selected = String.new\nfreqs = Hash.new(0)\nselected = ARGV.join('  ').gsub(/[,.]/, \"\")\n
         words = selected.split(/[^\\w-]+/)\nwords.each { |word| freqs[word] += 1 }\n
         freqs_sorted = freqs.sort do |a,b|\n\t
         a.last == b.last ? a.first <=> b.first : b.last <=> a.last\nend\n
         freqs_sorted.each { |k,v| printf \"[ %8s ]          %s\", v, k }"
        do shell script "/usr/bin/ruby -e " & rb's quoted form & space & mySelection's quoted form
    end concordance
    Launch /Applications/Automator and choose New Document, then click the Service icon, and then select the Choose button.
    On the left, you will have a list of Libraries from which to choose workflow items. Find Library > Utilities. In the adjacent column, locate the Run Applescript workflow. Click on it, then drag and drop it in the large workflow window to your right.
    At the top, you can select Service receives text in any application. Leave Output replaces selected text unchecked.
    In your Run AppleScript workflow window, you will see AppleScript boilerplate. Click on it and press command+A, then backspace to delete this content. Copy and paste the above code into this Run AppleScript workflow window. Press the Run button in Automator's upper right corner. If (and it should) a TextEdit window pops up, you are good, and you want to press File > Save. A dialog box will pop-up where you can name your Service. I called my Frequency, you may wish to call it something else. Once you have save it, you can exit Automator. Services are deposited in yourlogin directory/Library/Services.
    If you have a Pages document open with text, either select it, or command+a to select the entire document. Now, you select your Service via Pages > Services > Frequency. This will now pop-up a new TextEdit document with the results. If you want to save this new document, you must use option+File to Save as...

  • Is it possible to save my pages documents as editable PDF's?

    I start a new semester (college) in two weeks. I was wondering this partly because one of my professors (from last semester) had a lot of trouble sending pages documents to people who have PC's.
    How do I save a pages document as a PDF and not as a ".doc"?
    Thanks!

    one of my professors (from last semester) had a lot of trouble sending pages documents to people who have PC's. How do I save a pages document as a PDF and not as a ".doc"?
    Microsoft Word was introduced for Macintosh in 1984. The file format of Microsoft Word is application-dependent, that is, both the author and the audience must acquire the selfsame application in order to see shared files. This is true also of Aldus PageMaker (introduced 1985), QuarkXPress (introduced 1987) and any of a very, very long list of file formats specific to one and only one application.
    It became clear to all concerned in 1989-1990 that problems would be produced by interchange of digital documents, if there were no conversion from application-dependent archival file formats into application-independent archival file formats. It also became clear to all concerned that there would be two kinds of application-independent archival file formats.
    When laser imaging was introduced, developers of laser imaging systems for photographic preparation of the printing surface introduced preparatory-phase page markup languages which are content-oriented and production-phase page description languages which are appearance-oriented. Initially, both were tied to the make and model of laser imaging system.
    Page markup languages for a make and model of laser imaging system (essentially the command syntax for the laser imagesetter) meant that if you coded/tagged for one make and model of laser imagesetter, you could not repurpose what you had coded/tagged for another make and model of laser imagesetter. Clearly, this was uneconomical.
    This realisation led to SGML Standard Generalised Markup Language under the governance of the International Standards Organisation. SGML is not perfect, among other things it can let you have what are essentially private characters and if porous memory serves it can let you have several coded character sets simultaneously which is undesirable in a content-oriented format.
    The same sort of problem was posed by page description languages the first of which was the command syntax for the raster image processor that ran the Monotype Lasercomp introduced in 1976. Page description languages introduce an x-y coordinate design space that is mapped onto an x-y coordinate user space which is the address space of the raster image processor.
    Page descriptions that depended on the command syntax for a make and model of laser imagesetter posed problems for portability and page description languages under corporate governance clustered around the companies in the United States that targetted the market for graphic information processing commonly called desktop publishing.
    Hewlett-Packard Printer Command Language was introduced into this market in May 1984 when the Hewlett-Packard LaserJet made it to market, driving a wedge between the IBM Personal Computer and the IBM line of non-impact printers. Xerox Interpress made it from the laboratory into the market with the initial documentation of the model in 1985.
    Adobe PostScript and Xerox Interpress are along almost all dimensions the same model, developed by some of the same people. Adobe PostScript made it to market through a contract entered into in late 1984 between CEO Steven Jobs of Apple Computer, CEO Dr Wolfgang K u m m e r of Linotype, and CEO Dr John Warnock of Adobe Systems.
    Adobe PostScript and Xerox Interpress both support multiple coded character sets simultaneously, although Xerox Interpress favours XCCS Xerox Coded Character Set which is the conceptual precursor of Unicode. Xerox Interpress in addition has a default metric coordinate system and strict page-independent structure that Adobe PostScript does not have.
    At the Seybold Conference on Computer Publishing in September 1989, Dr John Warnock stated that the aim was to be able to send a page description around the world. In order to do this, first, the page-dependent structuring of Adobe PostScript had to be converted into a page-indendent structuring principle suited for drawing pages in any order on the digital graphic display.
    But neither Adobe PostScript nor Xerox Interpress, being appearance-oriented page descriptions, had a strong concept of a standard coded character set that structured the imaging process. Adobe PostScript is in fact a strategy to overcome drawing on a digital device with small coded character sets containing incompatible constituencies of character codes.
    The Adobe PostScript rasteriser deals with glyph names and not with character codes and some sort of solution had to be sought so that source character information could be synthesised in converting page-dependent PostScript into the page-independent page description model of what in June 1993 was introduced as Portable Document Format version 1.0.
    This solution is to try to use font-independent glyph identifiers as glyph names so that the conversion from Adobe PostScript to Adobe Portable Document Format carries forward a clue about the source character information. There is no concept in PDF of page text, as if the source character information were contained in the page description.
    This is the core of the commercial conflict between Adobe Systems which is trying to preserve its market share for the Adobe Portable Document Format, and to introduce Adobe PDFXML as a more serviceable and more sustainable solution for computerised full phrase cataloguing, and on the other hand Microsoft XPS XML Paper Specification which does indeed have a concept of page text for computerised full phrase cataloguing.
    /hh

  • Absurdity of Pages documents being 'too old'

    I understand the need for obsolescence -- whether planned or necessary -- and I'm even willing to buy again new versions of software that were perfectly good the way they were. Progress and all.
    But to have my brand-new, beautiful iMac tell me that my Pages documents from 2011 are 'too old' and can't be read anymore by the iMac's Pages is simply absurd.
    And the solutions offered -- OSX 9.2 users should open the 'too old' documents in Preview and cut-and-paste; or save them in Pages 9 first (although Pages 9 can't be found or downloaded anymore); or buy from a third party vendor a copy of Pages 9!! -- just seem ludicrous and unacceptable workarounds.
    This isn't even treated like a 'known issue.'  At which Cupertino meeting did someone say 'but the new Pages won't recognize old Pages documents,' and someone higher up responded, 'that will be fine.'  Really??
    Again, I understand we don't live in an eight-track world anymore and the roads must roll, but for all the games and gestures, the fact remains that words, text and writing remain fundamental to the computing experience.  To think that long manuscripts, detailed memos, form letters, and all manners of written history on Pages can no longer be accessed because they are 'too old' is completely unacceptable.
    Sadly, programmers too often treat text like an 'object' -- something to be picked up and moved, rather than a living, breathing piece of digital 'code' that can be shaped and reshaped by the writer within the object itself.
    Apple is not the only culprit: The new Microsoft Office can't read Pages either, as this insane format and upgrade war rages on.
    So yes, I know there are ways around this ridiculous situation, but how does it exist to begin with?  How can Apple's Support Forum staff reply with the suggestion we go to Amazon and buy Pages 9 there??
    Yes, upgrading to a new computer or operating system often means discarding older, comfortable programs. (I will miss the older 'Power PC' software, but progress is progress).  But text -- the written word -- is the most basic software that is. How could a new version of Pages not 'recognize' older versions of Pages?
    It is ridiculous and an affront to millions of Apple users who stick with the company -- this is my fifth major Apple computer, not counting our iPads, iPhones and such -- but the trust I've built up with the company has never been so shaken.  How could this not be fixed, or even recognized as a problem?
    david

    How can Apple's Support Forum staff reply with the suggestion
    Did you contact Apple support directly? Just as an FYI, these forums are user to user only - we're just fellow users volunteering our time here.
    As for Pages: when I installed the new Pages version, my older version remained intact. I have two separate versions installed; I found that the default was to open anything with the new version which I changed in the Ger Info window (back to the old one). I also found that the new version lacks several functionalities, so I am ignoring it. I will keep using the older version. Unfortunately, if you have a brand new Mac, you do not have the older version installed - how about using your iWork install DVD from your previous Mac to install the older version?

  • Inserting text into a Pages document with Applescript

    I want to create a Pages document from a custom template but be able to insert text at various points in the document (inputted data under headings etc). I would like to use Applescript but cannot get insertion points to work, is this possible? As usual, all help gratefully accepted.

    I have made a Pages template that contains tables and I want to enter text into sections of these tables
    That's a completely different story! But that's still possible using GUI Scripting. Here's an example:
    tell application "Pages"
        activate
        select table 1 of body text of front document
        tell application "System Events" to tell process "Pages"
            set theWindow to window 1 whose role description is "standard window"
            click button "Table" of tool bar 1 of theWindow
            keystroke "Cell A1"
            keystroke tab
            keystroke "Cell B1"
            key code 125 -- down arrow
            keystroke "Cell B2"
            -- and so on
        end tell
        select insertion point after table 1 of body text of front document
    end tell

  • Save each page of a multi-page document as a separate file using spawned file names with javascript

    Hello
    We are currently changing our hard-copy personnel files and converting them to pdf files.  We have scanned the entire file into one multi-page document.
    I am wanting to save each page (or groups of pages) as separate files.
    In order to facilitate this, I have duplicated field names--such as FirstName, LastName, EmpNo on each page.  This information should be static for the entire file.
    However--I also need information that will change for each individual "page" or document--such as TypeOfDoc, Date, etc.  I have used the Spawn fields using the overlay method on each of the pages in the document.  Then I went in and filled in the information for each page of the document--such as TypeOfDoc, DateOfDoc.
    Now I want to save each page of the document as a separate file using the field names as the file name.
    I first created an action that would split all the pages into separate files and save them into a folder.
    Then I want to save each file as a specific file name based on the information in the fields.
    My problem is obtaining the name of the spawned field name.  The rest of the field names I am not having a problem with.
    This is what I have so far to name the file.
    // Get the field value
    var oPage = this.pageNum;
    var fn = getField("P" + oPage + ".TEMPLATE.DateOfDoc").valueAsString + getField("FirstName").valueAsString + "-" + getField("LastName").valueAsString;
    // Specify the folder
    var fldr = "/n/Personnel/ScannedDocuments/NAMEDPAAS/";
    // Determine the full path
    var fp = fldr + fn +".pdf";
    // Save the file
    myTrustedSpecialTaskFunc(this, fp);
    This code is also accompanied with folder level scripts.
    My problem is obtaining the name of the spawned fields using javascript.  Each document has several pages--so I would like to obtain the field name through script.
    I receive the following error.
    TypeError: getField("P" + oPage + ".TEMPLATE.DATE") is null
    I think this is due to the fact that I have extracted all the pages as individual files.
    If I were to do the above, but not extract the pages first--I do not know how to just save one page at a time.
    Please help.  This is a massive project, and if we have to save each file individually, it will take a lot of time.
    I am a beginner, so any assistance is appreciated.
    Thank you

    I am not understanding exactly where to put the curly brackets.  I have tried two different ways, and still get the same error.
    This is one way
    var oPage = this.pageNum;
    // Specify the folder
    var fldr = "/n/Personnel/ScannedDocuments/NAMEDPAAS/";
    // Determine the full path
    var fp = fldr + fn +".pdf";
    for (var i = 0; i < this.numPages; i++) 
    var fn = getField("P" + oPage + ".template.DateOfDoc").valueAsString + getField("FirstName").valueAsString + "-" + getField("LastName").valueAsString;
    {this.extractPages({  
    nStart: i,  
    cPath : fldr + fn + ".pdf"
    The other is this
    var oPage = this.pageNum;
    // Specify the folder
    var fldr = "/n/Personnel/ScannedDocuments/NAMEDPAAS/";
    // Determine the full path
    var fp = fldr + fn +".pdf";
    for (var i = 0; i < this.numPages; i++) 
    var fn = getField("P" + oPage + ".template.DateOfDoc").valueAsString + getField("FirstName").valueAsString + "-" + getField("LastName").valueAsString;
    this.extractPages({  
    nStart: i,  
    cPath : fldr + fn + ".pdf"
    Thank you for your help.

  • Issue with UPC codes in Inbound sales orders via EDI.

    Hi All
    We are on ECC 6.0. We have incoming sales orders through EDI IDOCS. In the incoming IDCO the customer can provide either of the following information in that sequence.
    1.  GTIN number
    2.  Customer material number
    3.  UPC code
    4.  Old Product code.
    We need to derive the correct material number for each customer. Now I can achieve this through standard material determination using material determination type access sequences in the order specified above. However I cannot do the same, as we need to use material determination for genuine promotions. For example I can maintain a material determination record to map UPC 123456789 to Material number ABC in SAP R/3. However we do have situation where in for a particular season or depending upon the ATP situation we may have to derive Material XYZ (SAP material number) in case customer orders material ABC. So in other words if I use material determination to derive my SAP material number for in-coming IDOCS based on UPC codes then I would need to have multi level material determination. I.e. From an IDOC for UPC code 1234566789 I derive material ABC and then for material ABC derive material XYZ.
    I tried setting up these two layers of material determination in the standard system. It is possible only if I use a substitution reason which copies the material entered as a sub-item. We do not want to maintain the sub-item in sales order and relevant documents for a lot of other reasons. Is there a way I can use standard Material determination/substitution to derive this multi level search without haveing to copy the sub-item in sales order? Am I missing some settings here? If not is it possiblt to suppress the sub item from being derived in SAP using some user exit in sales order processing?
    For an IDOC I could have used standard SAP tables to identify SAP material number based on UPC code. However the problem is we have multiple SAP material numbers assigned to one UPC code. So it is not possible to identify a unique material number just based on the UPC code.
    I would like to know if any of you experts have encountered a similar situation and if so what is the ideal way to resolve this issue. Any comments/suggestions/guidance is welcome. You can also reply at my e-mail id [email protected].
    Thanks

    Hi Daniel,
    Can you please which IDoc message type you are using to create sales order using IDoc?
    Also check in IDoc, what is the value of ACTION & EINKZ fields in segment E1EDP01?
    Regards,
    Amit

  • How do I alphabetize within a pages document?

    How do I alphabetize a list within a pages document?

    You sort a table there, but if you want a more permanent solution, OSX has a very useful but less well known method of extending application abilities:
    Services are little snippets of code that do simple tasks and can be accessed by any suitable application from under the Application menu > Services
    First download WordServices (free).
    Unzip the file and double click on the WordService.service file. If you have the default security on your Mac, you may have to do this 3 times before it lets you open it. Once you have opened it, it will be installed.
    In Pages:
    Menu > Pages > Services > Services Preferences… > Keyboard > Shortcuts > Services > Shortcuts > scroll about half way down and check Sort Lines Ascending/Descending and any other services that catch your eye
    Now when you select your text list > Menu > Pages > Services > Sort Lines Ascending/Descending
    This is available everywhere not just Pages..
    As it is now part of your menus, you can give it your own custom keyboard shortcut in System Preferences > Keyboard > Shortcuts
    Peter

  • Inserting code into pages?

    I have snippets of code, like for stat trackers and skype icons, and I can't figure out how to insert the code into pages without having to first export it into html, view source, import the source into NVU and then save it again. This is a big hassle to go through whenever I change the page, and I am wondering if there is a way to put the code directly into the pages document itself. Appreciate any answers.

    Copy and paste definitely does not work... Here is the code:
    <!-- Start of StatCounter Code -->
    <script type="text/javascript" language="javascript">
    var sc_project=1382179;
    var sc_invisible=0;
    var sc_partition=12;
    var sc_security="3cd1b24a";
    </script>
    <script type="text/javascript" language="javascript" src="http://www.statcounter.com/counter/counter.js"></script><noscript> </noscript>
    <!-- End of StatCounter Code -->
    Is there any way to make this into an image without losing any of its properties (I have found ways to make this into an image, but it loses all the code behind it and becomes a "dumb" image).

  • How to clean the html code multiple pages simultaneously with Dreamweaver or other soft ?

    hello,
    How to clean the html code multiple pages simultaneously with Dreamweaver or other soft ? I have hundreds of pages to clean
    Thanks !

    I would start afresh. I would also use Dreamweaver's template system to make thing a lot easier. Have a look at the following, copy and paste into a new document and view in your favourite browser.
    <!doctype html>
    <html>
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />
    <link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css" />
    <script type="text/javascript" src="ScriptLibrary/jquery-latest.pack.js"></script>
    <script type="text/javascript" src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
    <style>
    .hline {
        background: url(http://yannick.michelat.free.fr/barre.gif);
        height: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    </style>
    </head>
    <body>
    <div class="container">
        <div class="row">
            <div class="col-xs-7">
                <img alt="" class="img-responsive pull-right" style="margin-top:20px;" src="http://yannick.michelat.free.fr/Calanques.gif" />
            </div>
            <div class="col-xs-5">
                <img alt="" class="img-responsive center-block" style="margin-top: 40px;" src="http://yannick.michelat.free.fr/grandportfolio.gif" />
            </div>
        </div>
        <div class="row hline"></div>
        <div class="row">
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-01.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-02.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-03.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-04.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-05.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-06.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-07.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-08.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-09.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-10.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-11.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-12.jpg" alt="" class="img-responsive"></a></div>
        </div>
        <div class="row hline"></div>
    </div>
    </body>
    </html>

  • How do I get the content to match when exporting pages document to word?

    How do I get the content to match when I export a pages document to word format?

    You simply cannot get an absolutely identical export, in any app to any app. Exporting from one app to another means converting/parsing code, therefore the result cannot be identical. In order to have control over your final result, use PDF export. If you need a closer compatibility with Word, use OpenOffice or LibreOffice. I would not bet that Word for Mac would presserve identical page setting if file is created in windows, or vice-versa.

  • OSX 10.9: Error -43 when trying to Trash Pages document

    OSX 10.9: Pages 5.0 -43 Error code
    I opened a Pages document created in Mt Lion, made some changes and “Save As” it back to my desktop. When put the old file int the Trash and tried to Empty Trash,  I kept getting this error message:
    “The operationCan’t be completed because
      one or more required items can’t be found.
      (Error code -43)”
    I tired using the Option key (then Command and Control keys just because) with no success. I also tried renaming the document and compressing it with the same results. I eventually got it to go away by moving from my MacBook to Dropbox and deleting it using my iPhone. That worked.
    Is there a fix in the works for this problem, or must I just trash Pages 5 like noted in Support Resources?

    Hello all. The file that I tried to delete was actually a folder. And, this seemed to happen after I had used Time Machine (I don't use Time Machine usually, prefer CCC) for the first time with 10.9. Perhaps try turning off Time Machine, restart, and see is that helps. And, I also had no relevant applications open (except Finder) and checked that through the Activity Monitor. Also - perhaps when you restart make sure that the "Reopen" etc checkbox is unticked when restarting.
    Cheers everyone

  • AppleScript to run on ALL opened Pages document instead of Active one.

    Hello,
    I have many AppleScript i'm running on the active Pages document... but If I would like to run the Script on ALL opened Pages document?
    What would be the line to add/modified at the top?
    Thanks in advance...
    Example of a script running on the active Pages document.
    set theTargetWords to {"www.network"}
    tell application "Pages" to activate
    tell application "System Events" to tell process "Pages"
      -- Open the "Find & Replace" window:
      keystroke "f" using command down
         repeat until exists window "Find & Replace"
         end repeat
         tell tab group 1 of window "Find & Replace"
      -- Adjust the settings:
      click radio button 2 -- Advanced
              if value of checkbox 2 is 1 then click checkbox 2 -- Don't match case
              if value of checkbox 3 is 1 then click checkbox 3 -- Whole words
              if value of checkbox 1 is 0 then click checkbox 1 -- Search previous text (loop)
      click pop up button 1 -- find in
      click menu item 1 of menu 1 of pop up button 1 -- Entire document
      click pop up button 2 -- replace style
      click menu item 1 of menu 1 of pop up button 2 -- Any
      -- Delete every target word:
              set value of text area 1 of scroll area 2 to ""
              repeat with thisWord in theTargetWords
                   set value of text area 1 of scroll area 1 to thisWord -- the target word
                   click button "Replace All"
              end repeat
         end tell
    end tell

    I have many AppleScript i'm running on the active Pages document... but If I would like to run the Script on ALL opened Pages document?
    What would be the line to add/modified at the top?
    Try this:
    tell application "Pages"
        activate
        tell application "System Events" to set theOpenWindows to windows of process "Pages" whose subrole is "AXStandardWindow"
        repeat with thisWindow in theOpenWindows
            tell application "System Events" to tell thisWindow to perform action "AXRaise"
            tell front document
                -- ENTER YOUR CODE HERE
            end tell
        end repeat
    end tell

  • Where can I find the batch no (or UPC code or Lot no) in the Delivery doc?

    Hi all,
    I am using 4.6c . I send the IDoc DESADV to my customer and they get the EDI document which their translator converts back to IDoc. I need to find this information in the delivery document (vl03n):
    lot no., batch no. UPC code. so that I can populate them in the outbound IDoc.
    I could find the batch no in the table LIPS in the field CHARG. and I know in the EDI, the segment is SLN where this information is stored, but where is this in the actual delivery document (and the outbound IDoc)?
    Please ask me if my question should be elaborated.. Hope you can tell me the tab and the field in the Delivery document (it could be at header or item level.)
    Thanks,
    Charles.

    Hi there Charles,
    Batch number is in DESADV IDOC in field E1EDP09 CHARG.  In VL03N, you can drill down into a line item, and go the the Batch Split tab to see this number.
    I don't believe UPC number is a standard SAP field.  There is a EAN (European Article Number) field which can be used like the UPC field if needed. 
    I have a case where a customer sends a UPC and lot number on their order, and needs to see it back on the EDI shipping notice.  I store these values in custom text fields, which pass from the order, back to the DESADV IDOC after delivery.  From there, I can include them in the EDI back to the customer.
    Regards,
    Aaron
    *Helpful?  Poins are appreciated

Maybe you are looking for

  • How do I paste a photo ( jpeg) into the body of my email message- I can do it in Internet Explorer bu can't in Firefox

    I can open up a photo from my "Pictures" file In Internet Explorer, copy it, then paste it into the body of my email message ( I use Earthlink webmail). I see the picture fine. When I try to do the same procedure by opening, copy and pasting in Firef

  • IWeb '08 + 2.0.2 updated won't finish publish

    I, like many iweb users, have had no luck getting the latest iWeb to publish anything for the last 7 days. We have all tried everything and it seems that the only thing that isn't working is some sort of publishing permission or server error. APPLE;

  • Duplicate e-mails

    Hi All, I am getting one strange problem. I am using javamail to send some notification to all of my applicatio users. But I don't know some of the users are getting 200-250 copies of same e-mail and I am not able to find out what could be the reason

  • Asset Procurement (Urgent) !!

    Hi Friends I need your help on one scenario that my client wants to track asset procured qty. For this i am defining a material type copy of Raw material as zcap and using moving avg price for this material type.I am raising Po without any account as

  • In Sales contact not showing Price and value

    Dear Forum, In my Sales contact(VA41) output form I can not see Price, Unit price and Value. But final amount is showing well. Needed your advice pls. Thanks & B/R Bishnu 18/03