New Paragraph from existing Paragraph's Override

Hi!
I'm looking for something similar to Power Styles (http://www.dtptools.com/product.asp?id=psid), but not quite so generic. Essentially, I'd like to have a script which creates new paragraph styles from the overrides to a paragraph style.
For the extracts placed into our books, we use a specific style (Extract) for them. However, since our extracts are rarely the same, we use overrides to tweak the look in order to appear in the printed version correctly. Unfortunately, since we do it this way, exporting to ePub removes the overrides, causing the look to become generic and loose it's appropraite appearance. Power Styles will fix it, but it tags every override in every paragraph style, causing our ePub's CSS to be bloated. What I'm hoping for is a script we can run which will target the paragraph styles Extract and create new ones based on the overrides and apply the new paragraph style.
Has anybody heard of a plugin or a script which will perform this?
Thank you!

Hi!
I'm looking for something similar to Power Styles (http://www.dtptools.com/product.asp?id=psid), but not quite so generic. Essentially, I'd like to have a script which creates new paragraph styles from the overrides to a paragraph style.
For the extracts placed into our books, we use a specific style (Extract) for them. However, since our extracts are rarely the same, we use overrides to tweak the look in order to appear in the printed version correctly. Unfortunately, since we do it this way, exporting to ePub removes the overrides, causing the look to become generic and loose it's appropraite appearance. Power Styles will fix it, but it tags every override in every paragraph style, causing our ePub's CSS to be bloated. What I'm hoping for is a script we can run which will target the paragraph styles Extract and create new ones based on the overrides and apply the new paragraph style.
Has anybody heard of a plugin or a script which will perform this?
Thank you!

Similar Messages

  • Apply new style for existing paragraph

    How to apply new style for existing paragraph
    I need to apply existing paragraph style "FEBL1" to bullet list (newstyle)

    May be I am not clear with your question.
    You want to apply any style to a paragraph, you can use grep function:
    app.findGrepPreferences = app.changeGrepPreferences = null;        
    app.findGrepPreferences.findWhat = ".+";
    app.findGrepPreferences.appliedParagraphStyle = "FEBL1";   
    app.changeGrepPreferences.appliedParagraphStyle = "bullet list";   
    app.activeDocument.changeGrep();
    app.findGrepPreferences = app.changeGrepPreferences = null; 
    OR
    You want to add bullet list in your existing style "FEBL1", try the below code:
    var pstyles = app.activeDocument.paragraphStyles; 
    for(var i=0;i<pstyles.length;i++) 
        if(pstyles[i].name == "FEBL1")
            pstyles[i].bulletsAndNumberingListType = ListType.BULLET_LIST;
    Vandy

  • How to create new solution from Existing solution in integration services on TFS project?

    Hi,
    I am working on SSIS Project and it is created in VS 2008 .I opened the solution in VS 2010 and it is upgraded and unfortynately i don't have the back up to re open it in VS 2008.I am thinking of creating new solution from the existing one and open the new
    solution in VS 2008.I was struck how can we copy existing solution to new solution on TFS.
    Please let me know will this process work? and also how can we create a new solution without losing any files.
    Any help is appreciated.

    Hi moh1kumr,
    As Joost said, you can try to revert the changes back for the checked in files in TFS. For more information, please see:
    http://msdn.microsoft.com/en-us/library/ee371161(v=expression.40).aspx
    http://stackoverflow.com/questions/2694644/how-to-revert-roll-back-a-checkin-in-tfs-2010
    If it doesn’t work, I am afraid you have to design the package in VS 2008 from scratch.
    Regards,
    Mike Yin
    TechNet Community Support

  • New DB from existing DB with data

    Hi All,
    How to create new DB from an existing DB with all the data? means what could be the sql for that. ?

    i mean to say when we want create a table in db from an existing db with data then we write like
    create table <table_name> as select * from <db_name>.<table_name>
    so is there any sql like this for creating db from an existing db with data?

  • Create a new schema from existing schema

    Hi, I'm wondering whether there is a way of create a schema from
    existing one? Could it done through SQL statement or have to go
    through some sort of tools? Please drop me a few words if you
    know the answer. Thanks.

    Hi,
    U can do that in a few steps.
    First create the User.
    Then Go to the Source User and grant him create any table privs.
    Then write a Sql Stmt to generate the necessary scripts and run it.
    The other way would be to grantr the newuser select on all the tables and then run that script from his account.
    Regards,
    Ganesh R

  • No data found exception when calling a new page from existing page

    hi i have a screen which has a delivery id and i am calling a new page with a different view object and a application module.I need to pass this delivery id in the main page to the view object query in the second page.
    i have defined the second page view object with the following query
    select country,address1,address2,address3,address4,city from hz_locations where location_id=
    (select ultimate_dropoff_location_id from wsh_new_deliveries where delivery_id=:1)
    what i want is to pass the delivery id in the main page to :1 in this query.
    i have written the following CO code for the second page
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    String eventaction=pageContext.getParameter("xxsaneventname");
    String paramval=pageContext.getParameter("xxsanparamvalue1");
    OAApplicationModule deliverydetailam = pageContext.getApplicationModule(webBean);
    Serializable personParamList[]= {eventaction,paramval};
    if ( eventaction!=null && eventaction.equals("viewdelivery"))
    deliverydetailam.invokeMethod("getdetailsmethod", personParamList);
    i have written the getdetailsmethod in the application module impl
    public void getdetailsmethod( String pAction, String pdeliveryId)
    try
    OAViewObjectImpl pervo = getWshDeliveryDetailsVO1();
    String existingWhereClause = pervo.getWhereClause() ;
    System.out.println(existingWhereClause);
    pervo.setWhereClauseParams(null);
    pervo.setWhereClause("delivery_id = :1");
    pervo.setWhereClauseParam(0, new Number(pdeliveryId));
    pervo.executeQuery();
    pervo.setWhereClauseParams(null);
    //pervo.setWhereClause(existingWhereClause);
    catch(Exception exception1)
    throw OAException.wrapperException(exception1);
    can some body please help me to correct this one.
    the exception i got is
    oracle.apps.fnd.framework.OAException: No data found for region (/xxt/oracle/apps/AK/om/webui/deliverydetailpg).

    Provide the complete error stack.
    From the current error line it shows that your custom region/page /xxt/oracle/apps/AK/om/webui/deliverydetailpg is not present in the MDS. Did you use xmlimport to set the page xml into MDS? If yes, use jdr_utils package to confirm it is present at the right location.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Exporting text only from specific paragraph style

    Hi,
    Is there a way to export text from Indesign to txt or preferably Excel from specific paragraph style ? I am trying to export only item numbers and prices to excel spread sheet so I can compare against original excel spreadsheet.
    Thank you !

    Not built in, no. But you could do this:
    Create a new paragraph style called "Delete Me". In the paragraph styles
    palette, select all the paragraph styles you're NOT interested in.
    Delete them in one go, and replace them with "Delete Me."
    Now, in the find/replace box, search for "Delete Me" and replace with
    nothing. This will cause all the paragraphs that have the "Delete Me"
    style to be deleted.
    Now what remains in your document is only the text that you're
    interested in.
    Ariel

  • When I copy/paste a paragraph from a PDF doc, it pastes with no spaces between words. How can I fix this? I've searched everywhere for the solution but didn't find anyone had this issue.

    When I copy/paste a paragraph from a PDF doc (onto Facebook status bar, for example) it pastes with no spaces between words.  I.e: "The manhadajugofcoolwaterand offeredmeadrink." How can I fix this? I've searched everywhere for the solution but didn't find anyone had this issue. I'm new to Apple so any help will be much appreciated. Thanks!

    I can't speak about this occurring with FaceBook since I don't use FaceBook, but I see the same type of thing when I copy and pasted from websites. It doesn't always happen and I cannot find any particular set of circumstances under which it occurs or does not occur.
    I am merely responding to let you know that it happens to me as well and I have seen no way to correct it. I'm not so sure that there is a way to correct in in that it may have something to do with how the original text is formatted in the PDF or on the website and how it eventually "fits" into the text field or the area in which it is pasted.

  • Can i transfer data from existing apple ID to my  new apple ID?

    i currently have a Ipad 2 registered under an Apple ID ( with my son 's email address),
    bought a new Ipad Air,  would like to set up the new iPad Air  under a new Apple ID ( my email address)
    how can i transfer the data from Ipad 2 ( from existing Apple ID with my son's email address )  t  new Apple ID that I will set up based on my
    own email address
    ectogo

    This is why it is important to have backups of your media and other important files.
    The Windows computer will not be able to read the files on the iPod because of the formating (at least that is my understanding).
    The iPod will need to be formated to work with Windows.  The only way to do this is to wipe the device.
    If you do not have a backup, do you know someone else with a Mac?  What you might be able to do is copy your music from the iPod to their Mac or a USB drive via their Mac.  Then you may be able to simply copy that music from the USB drive to your windows computer.  Do not take my word on this... I am only speculating about possibilities.  I do not own a Mac and have never used one, so not entirely sure this would work.

  • I have a new computer, and want to put the new music from there to my existing ipod (which has an existing library that I don't want to erase)

    I have a new computer, with some new music on it in my Itunes Library.  How do I put that new music from here onto my existing ipod (which has a ~1500 song library from an old computer which is no longer accesible, and which music I do not want to erase)? 

    I'm not trying to put the music from my old ipod onto my new computer!!!! I don't really want to do that!
    I would like simply to see if there is a way to put the new music from my new computer onto my old ipod without erasing all my existing music that I have on there.

  • Share new pdf created from existing online pdfs

    Is a solution in the works to be able to create new pdf books from existing individual pdfs online? Let's say I have individual pdfs for each of my recipes, but want to create a book online to share of just my desserts. Without sending each pdf share using an individual email, can this be done?
    Absolutely love the interface and where Adobe seems to be going with this.
    Thanks,
    James

    Hi,
    Thanks for your post. In order to combine multiple PDF's into one, you need the desktop version of Adobe Acrobat. We don't currently have plans in the works to add this feature to Acrobat.com, but I will share your feedback with the team. You could also visit our Ideas site and promote this idea - we actively use the Ideas site to prioritize the roll out of new features.
    Best,
    Michelle

  • I can't pull music from existing playlists to create a new one with the new update.

    I can't find a way to pull music from existing playlists when I create a new one. I make new playlists everyday with my job and this makes it very time consuming for me!

    Unfortunately, you can't.  The primary address for your iCloud account must be a non-Apple email account.  The only exception to this is for former MobileMe subscribers who migrated to iCloud when MobileMe closed, which was 18 months ago.

  • How to create new genius playlists from existing music in library?

    I tried the genius button for creating lists from existing music in my library. The problem is that it continues to show the first list created no matter what song I highlight then hit the genius button. Genius works fine for creating lists I can purchase online, but not new ones from my own music.

    This is the iTunes for Mac forum.
    As you are running Windows you will probably get a better response from posting in the iTunes for Windows forum:
    http://discussions.apple.com/category.jspa?categoryID=150

  • I own an iPod Touch 4g. Now i'm planning to buy iPod Touch 5g. Is it possible for me to register the new one with existing Apple ID so that i can transfer the apps from my existing account to my new Ipod 5g?

    I own an iPod Touch 4g. Now i'm planning to buy iPod Touch 5g. Is it possible for me to register the new iPod with existing Apple ID so that i can transfer the apps from my existing account to my new Ipod 5g?

    There should definitely be no issue. You can register more than one Apple device with the same Apple ID and get the same apps on both devices without having to pay for the apps again.
    Alternatively, if you want all your settings to say the same, do a backup of your old iPod Touch and then whe you receive the new iPod, restore the backup on it and it'll save you the trouble from having to redownload everything.
    Cheers.

  • How Can I detect Underlined Words from a paragraph

    I have an application where I have to detect underlined and strikethrough words from a paragraph. I am using Labview 7 Express. Can someone suggest a possible solution ?
    Thanks in Advance

    It's probably easier to do it with ActiveX functions if you're on Windows. Attached is an example (LV 7.0) that will find all the underlined portions of a Word document and return them in a string array.
    Warning: with ActiveX, the software version is critical, so this may not work for you if you don't have Word 2003.
    Any time you want to use ActiveX to get another piece of software to do the work for you, you'll want to use the object model or API reference for that piece of software to figure out how to do it. For Microsoft Word, that means referring to the Microsoft Office Word 2003 VBA Language Reference. It's still a painful process in LabVIEW, but you should be able to do anything you want.
    Regards,
    John
    Attachments:
    Find Underlined Text in doc.vi ‏74 KB

Maybe you are looking for