Macro in Pages that deletes every second line?

IM looking for a macro to run in pages that deletes every second line.
I want to be able to run it though tue document so that starting at the 1st line, it deletes lines 1,3,5,7,9,11 etc all the way to the end.
Anyone know what I can do? Perhaps a working AppleScript/programme? Had no luck as of yet.
Thanks

http://www.adobe.com/education/instruction/webtech/CS2/unit_planning1/idb_paragraph_format .htm -- it's for CS2, but it's unchanged since then.

Similar Messages

  • "Ghost" page numbers on every second page - how to remove?

    Hi,
    I'm setting a short book with Pages and after importing from Word, I'm seeing duplicate, partially hidden additional page numbers on every second page. I'd like to remove them entirely, keeping Pages' page numbering. Removing and inserting page numbers doesn't help and the second set of numbers can't be selected in any way (clicking, dragging don't work). One solution would be to re-import from word, deselecting page numbers beforehand, but I'd rather like avoid this step as I made many changes in Pages.
    Here's a screenshot showing the duplicate page numbers: http://dl.dropbox.com/u/3304376/pages_bug.png
    Does anybody have an idea how to remove them?

    Hello,
    Sometimes in the process of importing from Word, page numbers are improperly converted to Master Objects or Background Objects. Go to Format > Advanced > Make Master Objects Selectable. Then, with the cursor in the Margin of the document, press the Command Key (Cursor changes to an Arrow) and drag the cursor diagonally across the page number to select it. Then press the Delete key and the number should be gone. You need to check carefully to make sure that you have eliminated all the instances. There may be one per Section.
    Jerry

  • Strange line spacing - space seems bigger every second line

    Hi,
    today I discoverd that pages 08 does something special with line spacing. Every second line in my three column layout with text frames seems to have a bigger space. Settings are checked ... can't find anything...
    I used a Myriad Pro, 10 pt
    An ideas? I can send a screenshot vie mail if wanted/needed.
    Cheers
    Stefan

    Sorry this reply is a bit late, but I was looking for a solution to this same problem myself.
    I got this fault also when using the previous version of Pages on Tiger, but it also occurs in Pages '08 as well and on Leopard.
    I have done some checking, and it's not Font. I have a booklet I make every month, and it usually has Times for body text throughout. Some text will have this weird spacing, other text will be normal. It only happens if I use anything other than 'Exactly' for line spacing. It doesn't seem to happen at all in a text box, but text directly on the page is random with this.
    It also translates to a hard copy too, so it's not just a display issue either.

  • Have anybody experienced a frog like sounds that keeps burping on macbook? Its a very annoying sounds that burping every seconds.

    Have anybody experienced a frog like sounds that keeps burping on macbook? Its a very annoying sounds that burping every seconds.

    Did you ever find a solution to this problem because I have it too. I have gotten used to it when listening to movies etc., although it can startle me, but I find it very irritating when I am trying to record something off my computer, like a quiet meditation, onto a voice memo, and this happens…I have to start over and hope it doesn't keep happening.

  • How do I make a web page that changes every time the user refreshes it? Is it possible in Muse?

    Hi, i'd like to make quite a simple website where the main text in the centre of the page changes every time the user refreshes the page in their browser. I assume i'll have to make one master, and multiple pages that are all the same except for the changes in the text, but i'm not sure how to make it so that every refresh directs to a different page and not just the home page? Is this even possible in Muse?
    This is an example of what i'm going for: :: procatinator ::
    Thanks!

    You can't do it with Muse alone. Would probably be fairly simple to do with a bit of Javascript. Check the widget directory as it is possible someone has made a widget for random content. If not, maybe I will make one this weekend. ;-)

  • 1080p 25fps exported to 1080p 23.98fps uncompressed Quicktime that stutters every second

    I am authoring a blu-ray and the QuickTime file of the feature is 25fps. I didn't think it would be a big deal and just set Premiere to export the 25fps timeline to a 1080p uncompressed QuickTime at 23.98 but the picture hiccups every second like clockwork.
    Can anyone tell me how to get around the frame skip hiccup when converting a PAL 25FPS HD file to a 23.98? Thanks in advance!

    is retiming an option?
    in the 90's when I was doing commerical dvd authoring in Australia (PAL) our masters were often from NTSC telecine transfers.
    We re-interpreted the video as 25 from 24 and then speed and pitch shifted the audio.
    It's a pretty common method. For example the NTSC DVD release of "The Thomas Crown Affair" (Brosnon version) obviously used 25fps audio retimed down to 24fps for the titles and then a different audio file at 24fps for the feature because the loop music in the title matches the opening credit music and you can hear it drop pitch when you go from the menu to the feature.
    If that isn't an option then you're pretty much going to have to put up with the stutter since you're dropping 1 in 25 frames on the floor.

  • Making a clock that updates every second.

    I am at a loss and quitting for the night if anyone could help point me in the right direction I would appreciatte the advice. Here goes the code
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import java.util.Date;
    import java.util.Timer;
    import java.util.TimerTask;
    public class Clock
    public static void main(String[] args)
    TimerTask task = new DateTimer();
    Timer timer = new Timer();
    timer.schedule(task, 0, 1000);
    JFrame frame = new JFrame();
    JButton button = new JButton("Date & Time");
    frame.add(button);
    final JLabel label = new JLabel("Currently: ");
    JPanel panel = new JPanel();
    panel.add(button);
    panel.add(label);
    frame.add(panel);
    class ClockViewer implements ActionListener
    public void actionPerformed(ActionEvent event)
    label.setText("Currently: " + task.getDate());
    ActionListener listener = new ClockViewer();
    button.addActionListener(listener);
    frame.setSize(FRAME_WIDTH, FRAME_HEIGHT);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    private static final int FRAME_WIDTH = 500;
    private static final int FRAME_HEIGHT = 100;
    import java.util.*;
    public class DateTimer extends TimerTask
    public void run()
    Date now = new Date();
    public Date getDate()
    return now;
    private final Date now;
    Basically I am confused how to print the task out in the label.

    Hi,
    I have used [javax.swing.Timer|http://java.sun.com/javase/6/docs/api/index.html]
    Hope this will be useful to you.
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.Date;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.Timer;
    public class Clock {
         public static void main(String[] args) {          
              JFrame frame = new JFrame();
              JButton button = new JButton("Date & Time");
              frame.add(button);
              final JLabel label = new JLabel("Currently: ");
              JPanel panel = new JPanel();
              panel.add(button);
              panel.add(label);
              frame.add(panel);
              ActionListener listener = new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        new Timer(1000,this).start();
                        label.setText("Currently : " + new Date().toString());
              button.addActionListener(listener);
              frame.setSize(FRAME_WIDTH, FRAME_HEIGHT);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setVisible(true);
         private static final int FRAME_WIDTH = 500;
         private static final int FRAME_HEIGHT = 100;
    }Thanks

  • [scanner] sane: every second scan fails

    Hi everybody,
    I got a Canon MP510. I'm already in the group 'scanner' and using sane to scan images:
    scanimage --format=tiff >image.tiff
    scanimage -L shows:
    device `pixma:05B43737_53450F' is a CANON Canon PIXMA MP510 multi-function peripheral
    Every second time I get an error:
    scanimage: sane_read: Error during device I/O
    So i have to scan everything twice.
    dmesg says:
    usb 1-3: usbfs: interface 1 claimed by usblp while 'scanimage' sets config #1
    'rmmod usblp' has no effect. /etc/sane.d/canon.conf seems to be ok.
    so what is the problem?

    Once I had a issue like yours, so I decided to go merciless against dll.conf. I deleted every single line which wasn't required by my scanner and problem solved.
    p.s. check sane's man page about SANE_DEBUG env variable. It will help a lot debugging sane issues.
    Luck

  • How to create a page that lists available Oracle Reports to execute?

    APEX Version: 3.2.0.00.27
    Database: Oracle 10g XE
    Hello! I'm fairly new to APEX and adapting to the features and terminology related to this product.
    I don't think this issue is unique to Oracle Reports, but rather the concept of a page that reads from table (maybe a "report?") to provide a result set of data which the user can click on a result to direct to another page.
    In any case, I have a table in the database which stores all the attributes (report title, parameter names, RDF name, etc) of about 100 Oracle Reports. So far, I've successfully created an application page that features Items that are used to execute a single Oracle Report. Now, instead of creating unique individual pages for each of the 100 Oracle Reports, featuring the report's attributes (parameters, etc), what do I need to do just have one APEX page that dynamically reads from the table and builds the Region and its Items based on what's in the table? Furthermore, I would like to have an initial page that lists every report available to the user, which they can then click on the name, and then it will take them to the page that presents all the parameters needed to execute the report. How to do this? I understand there is a concept of List (under Shared Components), but it would be impractical to create a List and an entry for each report, and then branch to the parameter page...not to mention, whenever a report is added or deleted, the List would need to be updated.
    Can someone give me some pointers on how to approach this? It doesn't seem all too complex, but I just don't know at this point what the most practical way of accomplishing this...not sure what kind of pages, region, items, etc to create.
    Also, any reference books that you guys recommend on the ins/outs of APEX? I realize Oracle has documentation, tutorials, and OBE's on this product, but from what I've seen they aren't thorough enough in explaining what each property/attribute of the various objects that can be created in APEX.

    but rather the concept of a page that reads from table (maybe a "report?") to provide a result set of data which the user can click on a result to direct to another page.You are on the right track with the idea of an initial page with a report region listing your reports as links. Not sure from the provided information if this out of the box capability will meet your actual requirement, but try the Create Page wizard > New page > Form > Form on a Table with Report as a first approximation.
    instead of creating unique individual pages for each of the 100 Oracle Reports, featuring the report's attributes (parameters, etc), what do I need to do just have one APEX page that dynamically reads from the table and builds the Region and its Items based on what's in the table?If this can't be handled using the built-in Form on a Table with Report design pattern, it sounds like it will be possible using a dynamic form generated using the [APEX_ITEM API|http://download.oracle.com/docs/cd/B28359_01/appdev.111/b32258/api.htm#BGBHDGAI] either as another report region or a PL/SQL Dynamic Content region.
    Also, any reference books that you guys recommend on the ins/outs of APEX? [Pro Oracle Application Express|http://www.amazon.co.uk/gp/reader/159059827X/ref=sib_dp_pt#reader-link], the authors of which are active voices on this forum, is a good book. The forum itself is an unbelievable resource, as is the hosted service for learning and experiment at [apex.oracle.com|http://apex.oracle.com/i/index.html].

  • REGEXP_REPLACE issue/bug - replaces only every second occurence

    Hi All
    I am using
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    I need a regular expression to rename a variable in a mathematical formula, when testing my code I discovered that if the variable was repeated right after itself only one occurence was replaced. I need to only replace whole words as some variables can be a subset of a longer variable name, and variable names can have underscores in them.
    Below is an example of what happens.
    Can someone please tell me why this happens? Example code is:
    SELECT REGEXP_REPLACE('ab+ab+ab+ab+ab+ab+ab+abc+abc+ab', '(\W|^)ab(\W|$)' , '\1xy\2',1,0,'i') from DUAL;
    The regular expression matches all 'ab' with a non alpha character or beginning line before and a non alpha or end of line at the end.
    I then replace the 'ab' with 'xy' and keep the original non alpha on either side. What happens is that only every second occurence is replaced.
    If I place a space after every '+' then it replaces all occurences. (Obviously this is a user field in a table of mathematical formulas so I cannot expect the user to worry about this problem.)
    I believe it may be due to the fact the pointer in finding all occurence is moved incorrectly and it does not find the match immediately after.
    Can someone please explain this? Or am I missing something in my example.
    Thanks
    Dudley

    Is this what you require? I changed your query a bit.
    SQL> SELECT REGEXP_REPLACE ('ab+ab+ab+ab+ab+ab+ab+abc+abc+ab',
      2                         '(\W|^)ab(\W|$)',
      3                         '\1xy\2',
      4                         1,
      5                         0,
      6                         'i'
      7                        )
      8    FROM DUAL;
    REGEXP_REPLACE('AB+AB+AB+AB+AB+
    xy+ab+xy+ab+xy+ab+xy+abc+abc+xy
    1 row selected.
    SQL>
    SQL> SELECT REGEXP_REPLACE ('ab+ab+ab+ab+ab+ab+ab+abc+abc+ab',
      2                         '(ab)(\W|$)',
      3                         'xy\2',
      4                         1,
      5                         0,
      6                         'i'
      7                        )
      8    FROM DUAL;
    REGEXP_REPLACE('AB+AB+AB+AB+AB+
    xy+xy+xy+xy+xy+xy+xy+abc+abc+xy
    1 row selected.
    SQL> -- checking data with white spaces
    SQL> SELECT REGEXP_REPLACE ('ab + ab + ab + ab + ab + ab + ab + abc + abc + ab',
      2                         '(ab)(\W|$)',
      3                         'xy\2',
      4                         1,
      5                         0,
      6                         'i'
      7                        )
      8    FROM DUAL;
    REGEXP_REPLACE('AB+AB+AB+AB+AB+AB+AB+ABC+ABC+AB',
    xy + xy + xy + xy + xy + xy + xy + abc + abc + xy
    1 row selected.
    SQL> Regards,
    Jo

  • I'm on Firefox 3.6.8 running on a 2008 IMAC with OS 10.5.8 yet every click to move pages, from start-up, to return to Home Page takes minutes, not seconds! If I use Safari that's greatly faster on this same set-up. How do I get Firefox to be as fast ?

    I'm on Firefox 3.6.8 running on a 2008 IMAC with OS 10.5.8 yet every click to move pages, from start-up, to return to Home Page takes minutes, not seconds! If I use Safari that's greatly faster on this same set-up. How do I get Firefox to be as fast ?
    == Some time back, beggining with Firefox updates, at least three, or more updates ago.

    Thanks for the tip. I took the following steps:
    1) Backed up the existing profile (presumably corrupted somewhere);
    2) Deleted the existing profile;
    3) Moved the existing Firefox to the Trash and downloaded a fresh copy;
    4) Started Firefox (thus allowing it to create its default profile)
    5) Copied the following files from the backup copy of the previous profile: places.sqlite, key3.db, signons.sqlite, permissions.sqlite, persdict.dat, cert8.db ---
    I'm posting this from a Firefox browser, so I guess I'm OK now.

  • HT4641 after modifying a document in Pages I found that there are horizontal lines across every line break when opened and saved it in DropBox.  Does anyone know why?

    after modifying a document in Pages ON MY IPAD AIR I found that there are horizontal lines across every line break when opened and saved it in DropBox.  Does anyone know why?

    Thanks a lot for your swift response. And sorry if it was a bit too hectic to go through my detailed query (which I did because it was misunderstood when I asked previously). As I've mentioned above, I was informed that updating to 5.0.1 would '''require''' me to '''delete''' the current version and then install the new one. And doing so will involve losing all my bookmarks. I guess I should have been more specific and detailed there. By losing, I didn't mean losing them forever. I'm aware that they're secured in some place and deleting and installing the software doesn't harm its existence. What I meant that if I install the new version, I'd have to delete the old one. And after installing the new version, I'd have to transfer them (bookmarks) back from wherever they are. Get it? When it updated from 3.6.9 to 3.6.13, and from 3.6.13 to 3.6.18, I didn't need to follow that process. They were already present on their own.
    BTW, I'm having no problems with 3.6.18 but after learning about the existence of version 5.0.1, I'm a bit too eager to lay my hands over it.
    Thanks for your help; hope this wasn't extremely long.

  • Creating a PDF in pages that retains all line breaks and formatting as source

    Currently when we get pages documents, we convert them to PDF and send them off to be converted by a partner. We do this because said partner doesn't accept pages.
    However, lately we've found issues in PDFs created by pages that do not retain styling nor line breaks correctly.
    Example for line breaks:
    The quick brown fox
    jumped over the lazy dog.
    When converted to PDF it shows exactly the same on the PDF, as it did pages. The paragraph breaks are retain in the pages document, and the PDF looks correct.
    But when you copy/paste the text (which is generally how we test how valid the actual text is) you get something like:
    The quick brown
    fox
    jumped over the lazy dog.
    In some cases we even get line breaks on every word.
    We used the Export to PDF feature, the Print to PDF feature, and even generated a postscript and distilled with Acrobat Pro.
    Does anyone know how to solve this? It seems anything generated with QuartzPDFContext has issues.

    Interesting that preview works, but not Acrobat. Thanks!
    We are using export to word as a second option. The formatting (as in exact spacing and such) isn't always 100% retained. PDF afterall is a representation of what the customer wants. We don't always suggest it but in some type of books it helps.

  • Page numbering every second page

    Hi guys,
    ok I have a 200 page booklet I'm doing, very simple - a notes page on the left hand side and then the contacts details on the right. But in the top right corner I need a page number that correlates with the contact. Problem is if I make page numbers it'll have them as 24, 26, 28 etc when that's not what I want.
    Is there a way to skip a page and just page number every second page?
    Thanks for any help,
    Dave

    It isn't entirely clear, but are we dealing with one person's contact info per page, or many? Sounds like 1.
    If it is, as I mentioned in your other thread, you could set this up as a Data Merge project. Create a two-page template spread, Add whatever you need for the notes page to the left page, and put all of your data fields on the right. You can include a number as one of the fields and palce it anywhere you want. This will only work with one record per page, though.
    If you'd rather number pages after the fact, it's probably scriptable to do something with starting a new section every second page and assign the numbers, or you could just add a master frame to the master page and place a number list, which is pretty simple.
    None of these techniques is truly automatic in the sense of updating if things are added or deleted, or if pages are rearranged. Any numbering outside the merge whould be done as the last step.

  • Anyway to "UN" Ken Burns stills globally or as default bringing in jpeg's?  New to iMovie. I have 3 titles that build.  First is logo, add prod't name second line, add date 3rd line.  They shift when dissolving between them. Title function NG for this.

    Anyway to "UN" Ken Burns stills globally or as default bringing in jpeg's?  New to iMovie. I have 3 titles that build.  First is logo, add prod't name second line, add date 3rd line.  They shift when dissolving between them. Title function NG for this.
    The people at the Apple store gave me a long, tedious workaround which is open Pages and bring in logo.  Export it as a PDF.  Open the PDF in Review and then "Save As" a jpg to the desktop and drag and drop into the imovie.  Even with this process, the text will sometimes shift.  When it works, it looks good, the logo comes up, then the second line fades in under it as part of the build and then the third line completes the graphic.  It would something this easy and straight forward would be easy. 
    HarveyV

    I did the work around for the titles/jpg's in this short video. 
    I'll try your fix on the next one.  I have 22 short 3-5 minute videos to produce
    and I'm on number 5.  This should save me a bunch of time. 
    It would appear that you know more than the guy at the Apple Store. 
    Thank goodness for on-line forums.
    I already tried fixing them individually as you suggested,
      by going the crop/fit route.  However, even then,
      the second in the series had always shifted. 
    The first and the third images lined up, but not number 2.. 
    So  I brought in all the images, (1, 2 and 3).  
    and then the 2nd image again and put it in the third position
    in the sequence on the time line. I deleted the "original" 2nd image.
    So I had 1, 3, then 2.  Then I dragged and dropped the correct number two
    into position two and it worked.  So what happens is that the
    client logo appears, then that stays put and the next line dissolves in
      and then the third dissolves in.  They are three separate titles, but they
    are aligned perfectly so that they build as I dissolve between them.
    I think the problem with the edit copy route would be that while
    I could edit/copy the logo, I couldn't position text through the
    iMovie text function exactly as it only gives you middle or bottom third etc.
      Each title with the product name is positioned individually depending on
    length and number of lines. By going through Pages, I can position the logo
    and the text exactly.  Also, some logos are horizontal, while others
    are square etc., so text positioning is crucial.Anyhow,
    I'll try the global approach for the next one and see how that works.
      Thanks very much for your insight and especially for your prompt reply.
    I trust you're inside on this gorgeous July 4th because you're
    making money on your computer. ;-)HarveyVOn 7/4/2011 3:57 PM, Apple Support Communities Updates wrote:
    > Apple Support Communities <https://discussions.apple.com/index.jspa>>>>       Re: Anyway to "UN" Ken Burns stills globally or as default>       bringing in jpeg's? New to iMovie. I have 3 titles that build.>       First is logo, add prod't name second line, add date 3rd line.>       They shift when dissolving between them. Title function NG for...>> created by AppleMan1958 > <https://discussions.apple.com/people/AppleMan1958> in /iMovie/ - View > the full discussion > <https://discussions.apple.com/message/15552380#15552380>> ------------------------------------------------------------------------>> I am baffled by what you are asking...but if you are asking how to > turn off the Ken Burns effect, you can do it for future photos you add > by going to File/Project Preferences and setting the default initial > photo placement to FIT or CROP rather than Ken Burns.>> For a global change on photos that are already in your project, pick a > photo. Open the Rotate, Crop, Ken Burns Tool. Select FIT or CROP.  > Exit the tool. Now select this same photo and EDIT/COPY.>> Now, EDIT/SELECT ALL.>> Finally, EDIT/PASTE ADJUSTMENTS.../CROP ADJUSTMENTS.

Maybe you are looking for

  • MAC Edge, After update The latest version of the software, it can not start and pop-up an error report, please help me

    Error report Detials: Process:     Adobe Edge Animate CC 2014 [2421] Path:        /Applications/Adobe Edge Animate CC 2014/Adobe Edge Animate CC 2014.app/Contents/MacOS/Adobe Edge Animate CC 2014 Identifier:  com.adobe.Adobe Edge Animate CC 2014.appl

  • Error erase Queries in Query Manager- The query is used with user-define...

    Hello Experts I have deleted a User Field that had a Formatted Search and now I can not remove it because it is linked according to a UF, the error message is as follows: "The query is used with user-defined values [Message 952-23]" There will be a w

  • I need severe help :(

    please help me!!!!1 it gives me some funky error.... /* File: WeatherForecaster.java * Authors: Aaron Schnapp & Andrew Speer * Description: This program creates a GUI which enables a user to input current weather conditions and predicts the future we

  • Why are there no older Safari files in Time Machine?

    For reasons I won't go into now, I lost all my Safari Bookmarks on my mac.  I need to restore them from Time Machine, but TM has NO bookmarks.plist files from before the event occurred, just the current ones from yesterday.  I can't find any Safari f

  • Acess sequence problem in picking MRP

    Dear MM gurus, I have one problem pertaining to access sequence ie for the articles instead of taking price from article group or MC level its picking price from country /vendor which i dont want it to pick from country /vendor. can you guide me in t