Spanned Columns can't "Keep"?

Urgh, another one that is bugging me.
Can anyone get keep options to keep across pages for spanned columns.
The headings should keep with the body text, but I have headings that split across pages, which is not a good look.
For the moment I'm manually keeping them together by inserting page breaks.

BobLevine wrote:
Known limitation, Eugene.
Bob
A man’s got to know his limitations.
Although in this case I would replace the word “limitation” with “bug”.

Similar Messages

  • InDesign cs5 keeps crashing whenever I try to alter the footnote formatting via Type Document Footnote Option or Paragraph Styles using Span Columns

    InDesign cs5 crashes whenever I try to alter the footnote formatting by going to Type > Document Footnote Option > and then I try to select a Paragraph style I've already set up. The Paragraph style I need to use includes Span Columns, which I think may be the issue. I think this because when I then I tried to create a new document and re-import the styles, it won't even let me add Span Columns feature to the Paragraph Style in question.
    I can send screen shots of everything (e.g. dialog boxes) if that would be helpful in understanding the issue I'm having.
    Any help would be greatly appreciated!!!!!!!!!!
    Thanks.

    It does require running a script to accomplish what you want. Here's the one usually recommended:
    http://www.kahrel.plus.com/indesign/footnotes_columns.html
    Here are instructions for installing scripts:
    How to Install a Script in InDesign That You Found in a Forum or ...

  • CS4 messing up span column layouts from idml

    Hi,
    I've tried searching for this, and although I'm sure there must be topics discussing the issue, I can't seem to find any. Please point me in the direction if this has featured already.
    I've got a large 400page document created in CS6 that uses the span columns feature throughout. After the document was signed off the client requested a copy. They're having issues opening it in CS4 where tables that span columns are messing up the layout. I wondered if it was an issue going from CS6 to 4, so I opened in CS5.5 and created imdl files from there but they are still having the same issues.
    Is this fixable? Hopefully without installing scripts etc as my client is not an experienced Indesign user and I'm unable to work from his machine.

    MrJono wrote:
    I guess it's not surprising that adobe haven't created a solution to this problem when the easiest way to solve it is buy upgrading.
    That's an awful assumption in which to make where you have no authority on the subject.
    http://in-tools.com/article/whats-with-back-save-to-earlier-versions-of-indesign/
    Although I do agree with you to a certain stance.
    What should Adobe do with a 2 column layout that has a heading set to Span?
    Should it remove the Span from the heading - then anchor a text frame across the two columns, make a wraparound for the text frame, anchor it neatly, add back in the text to the style and account for overset text?
    Or should it make it all the text in the 2 column layout into a 1 column layout, then convert the text in the body to a 2 columned anchored frame that sits underneath the heading? How will it adjust for anchored text frames that flow across pages (because InDesign can't really do an anchored text frame that flows between pages unless you've premade the text frames, flowed the text, adjusted the sizes, grouped them then added them as an anchored frame within a text frame then move them around the text frame until satisified with the position.
    Then what will it do with the dozen other updates that you may or may not have used like "Keep With Previous" - how should InDesign handle that in CS4? What about Line Styles and Grep Styles? How should it handle that?
    No - the solution has always been that you and your client work on the same *version of InDesign* on the files at all times.
    *edit*
    If they just want a Word File then you can use a very simple script export your version to Word.
    http://www.kahrel.plus.com/indesign/batch_convert.html
    This will convert any indesign files in a folder to whatever file format you want, inlcluding RTF which can be opened in Word.

  • Spanning columns in a grid messes up column widths

    Hi. I've been struggling with some layout issues when using
    column width percentages with the Flex Grid control. It seems that
    if I add a column that spans 2 or more columns, the column widths
    of the entire grid are altered. The strange thing is that the
    column widths are changed only if the text in the colspan column
    exceeds the width of the text in cells above or below it. Please
    see the code sample at the bottom of this message for a
    demonstration (I can't seem to find a way to "attach code").
    Does anyone have any ideas how to fix this?
    Thanks!
    Dustin
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()" layout="vertical">
    <mx:Script>
    <![CDATA[
    import mx.containers.*;
    import mx.controls.*;
    import mx.core.*;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    private var dynamicText:Text;
    private var charCode:uint;
    private var button:Button;
    private function init():void
    var panel:Panel = createPanel();
    addChild(panel);
    addText(panel);
    addGrid(panel);
    addButton(panel);
    startTimer();
    private function timerComplete(event:TimerEvent):void
    button.enabled = true;
    private function createPanel():Panel
    var panel:Panel = new Panel();
    panel.title = "ColSpan Spacing Problem";
    panel.width = 500;
    panel.height = 200;
    panel.horizontalScrollPolicy = ScrollPolicy.OFF;
    panel.layout = "vertical";
    return panel;
    private function addText(panel:Panel):void
    var text:Text = new Text();
    text.text = "First row contains 5 columns with no col spans.
    Second row contains 4 columns with " +
    "column 2 spanning columns 2 and 3. Notice how the column
    widths are affected when the text " +
    "in the colspan cell grows larger than the text in the cell
    above it.";
    text.percentWidth = 100;
    panel.addChild(text);
    private function addGrid(panel:Panel):void
    var grid:Grid = new Grid();
    grid.setStyle("horizontalGap", "0");
    grid.setStyle("verticalGap", "0");
    grid.percentWidth = 100;
    panel.addChild(grid);
    // FIRST ROW
    var gridRow:GridRow = new GridRow();
    gridRow.percentWidth = 100;
    grid.addChild(gridRow);
    var gridItem:GridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 1;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 48;
    var text:Text = new Text();
    text.text = "No ColSpan Columns";
    gridItem.addChild(text);
    gridItem.colSpan = 1;
    gridItem.clipContent = false;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 1;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 13;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 37;
    gridRow.addChild(gridItem);
    // SECOND ROW
    gridRow = new GridRow();
    gridRow.percentWidth = 100;
    grid.addChild(gridRow);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.colSpan = 2;
    dynamicText = new Text();
    dynamicText.text = "A"; //IF THIS TEXT GROWS WIDER THAN TEXT
    IN THE ROW ABOVE, SPACING IS THROWN OFF
    gridItem.addChild(dynamicText);
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridRow.addChild(gridItem);
    private function addButton(panel:Panel):void
    button = new Button();
    button.label = "Start Over";
    button.addEventListener(MouseEvent.CLICK, startOver);
    panel.addChild(button);
    private function startOver(event:MouseEvent):void
    startTimer();
    private function startTimer():void
    dynamicText.text = "A";
    charCode = 66;
    button.enabled = false;
    var myTimer:Timer = new Timer(250, 25);
    myTimer.addEventListener(TimerEvent.TIMER, timerHandler);
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE,
    timerComplete);
    myTimer.start();
    private function timerHandler(event:TimerEvent):void
    dynamicText.text += String.fromCharCode(charCode);
    charCode++;
    ]]>
    </mx:Script>
    </mx:Application>

    This seems to fix it.
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.colSpan = 2;
    dynamicText = new Text();
    dynamicText.percentWidth = 100;
    dynamicText.text = "A";
    gridItem.addChild(dynamicText);
    gridRow.addChild(gridItem);

  • Span column doesn't work for me?

    Hey guys
    I'm not sure if there's another question/thread about this issue I have. I've tried searching but didn't give me good results.
    Basically, I've received an IND file from my client. The main heading paragraph style has span column (across all) setup already. But according to my client, for some reason, it doesn't work. I've tried fixing but I can't tell what caused it.
    The main heading is a numbered-list heading. Would this cause the span column not working?
    The setting is pretty straight forward, with span set to across all columns and space after span set to 15mm (space before is 0mm).
    If I can get some direction to how to rectify this that would be fantastic because I've got a number of reports to typeset using this template.
    Thanks guys.
    Cheers
    Leanne

    Never mind. I figured out what was the problem.
    It only works if all the text in one text frame with columns.

  • Can I keep the classic look with OS X ?

    I need to switch from OS 9.0.4 to OS X (because the film scanner that I'm gonna buy required OS X)
    but I love the metallic appearance (Classic) of OS 9.0.4
    It's simple, clean.
    Can I keep the classic look with OS X ?
    I know it comes with a different look (and from what I saw I hate it !) I want a computer, not a toy for a kid with "lots of colors and big shiny buttons..that look like a candy.... yeaahh!
    I want the new technology but not the new look.
    The new look seems so crowded
    Now a stupid question:
    does the X have a desktop like OS 9 :meaning an empty space where you can put 50 files or just a few ?
    Or is it like a open files ?
    In wikipedia they show an image of the OS 9.0.4 desktop (which look exactly like what I have) then they show an image of the OS X
    http://en.wikipedia.org/wiki/Image:Xcodescreenshot.png
    and it looks like a open folder. Perhaps they are comparing apples (ha funny !) with oranges but if I were them, I would show 2 desktops (or 2 open files ) not one desktop for OS 9 and something else for OS X
    Maybe it is silly to ask but you never know.
    I like to see my folders and files present on the desktop. Otherwise it looks like a open folder with View-->List instead of View--> icons.
    Hey I said it is a stupid question !!

    Hi Michael,
    "lots of colors and big shiny buttons..that look like a candy.... yeaahh!"Not sure why you say this unless you were looking at the Widgets screen? The Mac OS X is "brushed metal" for the most part.
    does the X have a desktop like OS 9 :meaning an empty space where you can put 50 files or just a few ?Yes.
    In wikipedia they show an image of the OS 9.0.4 desktop (which look exactly like what I have) then they show an image of the OS XThat's not it. This is it minus any open windows.
    I like to see my folders and files present on the desktop. Otherwise it looks like a open folder with View-->List instead of View--> icons.OS X also has "column view" and IMO is much faster to navigate through your files and folders.
    You'll get over OS 9
    -mj
    [email protected]

  • How can I keep the last word without devision?

    Hallo! By applying page brake if it is a word at the end which has a syllable division the division line disappears so that I have an orthographic error: e.g. if the last word is "marketing" and is being devided:
    Before: End of current page: marke-
    Start of next page: ting.
    After applying page brake:
    End of current page: marke
    Start of next page: ting.
    How can I keep the last word without devision?

    In the Hyphenation Options dialog, uncheck the option "Hyphenate across
    columns"

  • How can I keep the browser window stretched across my two displays?

    I run am trying to run dual monitor setup and have the Firefox browser span the two monitors. Whenever a Firefox dialog opens, such as Preferences or Print, the window zooms to fit the one primary monitor. How can I keep the browser window stretched across my two displays?

    Thanks very much for your response to my question -very helpful.
    Do you have any recommendations for a good book on Edge Animate?
    Thanks,
    Shaun
    Date: Thu, 25 Oct 2012 17:10:43 -0600
    From: [email protected]
    To: [email protected]
    Subject: How can I change the browser window background color when playing an Edge animation?
        Re: How can I change the browser window background color when playing an Edge animation?
        created by heathrowe in Edge Animate - View the full discussion
    ADD this to compositionReady handler, change the hex color code to your desired color //Force body of webpage to a specific color$("body").css("background-color","#5d5e61"); Darrell
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4801409#4801409
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4801409#4801409
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4801409#4801409. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Edge Animate by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • I can not Keep shuffle on. It keeps turning off and I do not want to use Genius mixes as I want a variety at all times.  How do I fix this. It did not happen with my previous ipod.

    can not keep shuffle on. i do not want to use Genises mixes as i want to listen to a variety of musicnot the same type.

    Can anyone help me

  • My computer with my original library has crashed, how can i keep all the songs on my iphone, but still add new songs from my new library?

    My computer has died and will not be working ever again. Problem is, i have all of my songs on that computer in my itunes library as well as on my phone. Now i want to add some songs to my phone from some new cds and it tells me i will loose all my songs on my phone right now when i perform the sync. How can i keep all of the songs on my iphone because now i do not have copies of these songs anymore except on my iphone?????? From what i have read, itunes is a joke because it only goes one way apparently. Not happy with itunes right now, more then a bit of a joke

    It has always been very basic to always maintain a backup copy of your computer for this very occasion.  Use your backup copy of your computer to put everything on the new one.
    If for some reason you have failed to backup, big mistake, then you can transfer itunes purchases from the iphone to the computer:  File>Transfer Purchases
    You may be able to buy a 3rd party program to get any other music off of the iphone ( not supported by Apple).
    When you sync the iphone, it will erase the current content and replace with content form the new computer.
    "Not happy with itunes right now, more then a bit of a joke"
    Not itunes fault that you did not do the very basics and maintain a backup copy.

  • How can I keep my child from UNBLOCKING contacts or numbers I have blocked? I know in restrictions when you disable account changes at least on ios 6,this greyed out the iMessage button so the kids couldn't deactivate their text feature.

    Here's the issue.  Kids got themselves into some trouble on iPods.  We set all restrictions any turned off iMessage etc, which I noticed they can't turn back on bc it's gray with the don't allow account changes set.  BUT, it still allows Wi-Fi to be turned on and off!  How can I disable them being able to turn that on wo asking me??  In ios 7, the blocking feature, fabulous, BUT, how can I keep the kids from UNBLOCKING numbers I have blocked?  What I am looking to do actually is allow my kids to be able to text family but block everyone else.  And ask me to turn on wi fi.  How and can this even be done?  Right now my d text is turned off completely.  And she knows the inside and out of her device so she can turn wi fi on herself.  On vacation she entered the wi fi code of our condo and so I did forget network, which didn't work and wi fi kept connecting anyway wo requiring password again!  HELP!  Thanks :)  Also, they have iPods now but am asking these questions based on them getting our 4s's with ios 7.

    TeresaBoo, I empathize with your dilemma and have a similar problem. I'm trying desperately to keep my teenage daughter away from a controlling and abusive boyfriend. Of course, she is in denial and thinks it's love. Sure, I can block text messages through our wireless provider, but iMessages run on an independent network. I can block a phone number from iMessaging on her phone, but she can unblock it just as easily. I wish there was some way for parents to create a password to protect settings. Don't let negative comments get you down. Honestly, if someone can't relate to your question or offer help, why are they even bothering to comment??

  • My iPod 5th gen. doesn't have a back camera. Can I trade it in for one that does have a back camera? If I can, can I keep all my pictures and have them switched over to the other one?

    My iPod 5th gen. doesn't have a back camera. Can I trade it in for one that does have a back camera? If I can, can I keep all my pictures and have them switched over to the other one?

    If you purchased it from Apple within the last 14 days then you can return it for a full refund. otherwise no. If you purchased it elsewhere you have to check with them.
    Do this to transfer info
    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device

  • When Mail is Open on iMac, how can I keep mail from also going to iPhone?

    I spend most of the day on my iMac, with Apple Mail open. Over a few hours, I get dozens or more emails. I deal with them on my Mac as they come in or I have time. Now the same emails also show up on my iPhone and iPad. How can I keep from having the emails sent to my iPhone and iPad when I have mail open on my iMac? It used to be that when my iMac was open and mail on, I couldn't get mail on my iPhone, which is just what I wanted.
    I've messed around with mail preferences, but maybe don't know what to set. (I know I can inactivate my account on the iPhone and iPad, but don't always remember to do that.)

    (I know I can inactivate my account on the iPhone and iPad, but don't always remember to do that.)
    If you can remember to do that, your problem is solved.

  • Can't keep extension settings different in different profiles

    I created a second profile called Shopping. I imported the extensions from my default profile into it. I wanted to run Shopping with a different set of enabled and disabled extensions from what I normally run on my Default profile. (On Shopping I enabled a number of shopping-related extensions I normally keep disabled on Default.) But I have found that I'm not able to separate the two profiles in this respect. When I brought up Default after using Shopping, the enabled/disabled configuration I had left Default with had been replaced with the enabled/disabled configuration of Shopping. This defeats my whole purpose in creating the Shopping profile. How can I keep the enabled/disabled extensions configurations of these two profiles separate?
    Firefox 34.0.5
    Computer: Dell System B3 Desktop
    CPU: Intel Pentium 4-2667 (Northwood, D1)
    2666 MHz (20.00x133.3) @ 2657 MHz (20.00x132.9)
    Motherboard: DELL 0G1548
    Chipset: Intel 845GEV (Brookdale-GEV) + ICH4
    Memory: 2048 MBytes @ 166 MHz, 2.5-3-3-7
    - 1024 MB PC3200 DDR-SDRAM - Kingston K
    Graphics: Intel 82845G/GL/GV Graphics Controller [DELL]
    Intel i845G(L) Integrated, 64 MB
    Drive: ST380011A, 78.1 GB, E-IDE (ATA-6)
    Drive: HGST HTS545050A7E380, 488.4 GB, Serial ATA 3Gb/s <-> USB
    Drive: SAMSUNG CD-R/RW SW-252S, CD-R Writer
    Sound: Creative Technology SB Live! Series Audio Processor
    Network: RealTek Semiconductor RTL8139 PCI Fast Ethernet NIC [A/B/C]
    Network: Broadcom 4401 10/100 Integrated Controller
    OS: Microsoft Windows XP Home Edition Build 2600 SP3
    Enabled Plugins in Default :
    * Google Update
    * NPRuntime Script Plug-in Library for Java(TM) Deploy
    * DRM Netscape Network Object
    * DRM Store Netscape Plugin
    * PDF-XChange Viewer Netscape Gecko Plugin
    * The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    * SaveSenseLive Update
    * VLC media player Web Plugin 2.1.3
    * NPWLPG
    * Npdsplay dll
    Extensions enabled in Default:
    -Add-ons Manager Context Menu 0.4.2
    Add more items to Add-ons Manager context menu.
    3/10/2014
    -Addon List Dumper (restartless) 0.1
    This extension adds a widget on the navigation bar.
    When this widget is pushed, a panel will show the addons list
    9/13/2014
    -Advanced SystemCare Surfing Protection 1.0
    Protect your computer away from malicious website attack.
    12/18/2013
    -Amazon 1Button App for Firefox 5.25
    This is an official Amazon extension for Firefox
    10/12/2014
    -Anti-Phishing 1.0
    Anti-Phishing extension.
    3/28/2014
    -Block Sneaky Redirects 1.3
    Finds links that tracks your browsing activity and blocks redirecting via their sites. This tool will fix the redirects and take you to the intended website directly.
    5/11/2014
    -Browser Security 0.7
    This browser application is designed to secure your browser, while surfing the internet.
    + Enhances your browser performance
    + Makes surfing the internet more secure
    + Protects you from phishing attacts
    9/23/2014
    -Capture & Print 0.1.9.2
    This add-on lets you print a webpage's area easily.
    6/9/2014
    -Classic Theme Restorer 1.2.7
    'Classic Theme Restorer' brings back appmenu button, squared tabs, add-ons bar, small nav-bar buttons, a few older buttons and more to Firefox Australis UI. Use 'Customize' menu to move buttons on toolbars.
    6/16/2014
    -Default 34.0.5
    The default theme.
    2/21/2014
    -Facebook Phishing Protector 4.4.3
    Protects you from Phishing or Scams (through XSS injection attacks) while you're on Facebook™
    9/23/2014
    -FoxBleed 0.1
    Checks all websites you are visiting, whether they are affected by the Heartbleed vulnerability.
    5/1/2014
    -FromWhereToWhere 0.25.5
    List the pages from where you visit one page, and all the other pages you visited from those pages. Link suggestion based on current page title and browsing history.
    9/13/2014
    -GPU Accelerated Flash Player 1.31
    Enables GPU acceleration of flash player by injection «gpu» value to «wmode» flash object attribute.
    9/23/2014
    -Google Image Search 1.15
    Adds Google Image Search to right-click menu on images.
    3/21/2014
    -Google Update 1.3.25.11
    Google Update
    11/14/2014
    -Heartbleed-Ext 3.0
    Checks websites for Heartbleed bug
    5/1/2014
    -Image Zoom 0.6.3
    Adds zoom functionality for images
    3/18/2014
    -JSONView 0.9
    Views JSON in the browser.
    9/23/2014
    -Java Deployment Toolkit 7.0.710.14 10.71.2.14
    NPRuntime Script Plug-in Library for Java(TM) Deploy
    10/20/2014
    -LastPass 3.1.54
    Last Password you will ever need
    2/25/2014
    -Lazarus: Form Recovery 2.3
    Recover lost forms with a single click
    3/10/2014
    -LinkExtend 1.1.5
    The Ultimate Link Tool!
    3/26/2014
    -Memory Fox 7.4
    A Mozilla Firefox Memory Recovery and Retention Add-On
    3/11/2014
    -Menu Editor 1.2.7
    Customize application menus
    9/23/2014
    -Microsoft® DRM 9.0.0.4504
    DRM Netscape Network Object
    7/7/2011
    -Microsoft® DRM 9.0.0.4504
    DRM Store Netscape Plugin
    7/7/2011
    -New Tab King 6.0.5
    Forget about the blank new tab
    3/10/2014
    -No Small Text 4.1
    Easily set a minimum font size for all web content.
    9/13/2014
    -NoSquint 2.1.9
    Manage site-specific zoom levels and color settings
    4/23/2014
    -Norwell History Tools 2.0
    No orwellian history
    8/17/2014
    -Open Tab Count 1.1
    This extension displays the number of open tabs for each window and the total number of open tabs (in all windows) in the status bar.
    3/10/2014
    -OpenH264 Video Codec provided by Cisco Systems, Inc. 1.1
    Play back web video and use video chats.
    12/31/1969
    -Organize Status Bar (Revived) 0.1.0
    Organize your status bar icons.
    9/13/2014
    -PDF Viewer 1.0.277
    Uses HTML5 to display PDF files directly in Firefox.
    5/30/2014
    -Perfect Redirector 4.0.1
    Automatically prevents Malware from known malicious websites. Prevents loading of known blacklisted sites, browse the net-safer!
    9/23/2014
    -Print Edit 13.3
    Print preview with integrated edit capability.
    9/23/2014
    -Print Friendly & PDF 1.1.0
    Add printfriendly button to your browser.
    9/2/2014
    -Print Selection 1.rev39
    Add a context menu option to print the selected text keeping the source format.
    Icon credicts go to dtafalonso (http://dtafalonso.deviantart.com/)
    9/24/2014
    -Print pages to PDF 0.1.9.3
    Creates PDF from Tabs,Bookmarks, Scrapbook(Plus)
    3/9/2014
    -QuickJava 2.0.6
    Enable/Disable Javascript, Java, Flash, Silverlight, Animated Images, Cookies, Images, CSS, and Proxy from Toolbar.
    2/25/2014
    -QuickTime Plug-in 7.7.5 7.7.5.0
    The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    2/28/2014
    -Resurrect Pages 2.0.6
    Resurrect dead pages, by finding their ghosts.
    11/20/2014
    -RightToClick 2.9.5
    Allows right clicks, highlighting and more where forbidden by javascript
    11/15/2014
    -Rotate Image 0.1.3.2
    Rotate images on webpages
    9/13/2014
    -Safe Preview 1.1.2
    Before to jump to any website, make sure that it is safe. Check suspicious links on Google Advisory, McAfee, Norton Safe Web, WOT, Avast, TrustWave, DrWeb.
    3/28/2014
    -Scan Url with 2.2.rev219
    Scansiona Link
    3/28/2014
    -Search Engine Security 1.2.0
    Protects against Blackhat spam Search Engine Optimization (SEO)
    4/22/2014
    -Session Manager 0.8.1.6
    Saves and restores the state of all windows.
    3/10/2014
    -Settings Guard for Firefox 0.5
    Detects and resets changes to settings that are frequently done by add-ons and application installers.
    3/28/2014
    -SiteCheck extension for Firefox 1.0.3
    Scan any website for security issues, blacklisting, and malware with Sucuri SiteCheck
    3/28/2014
    -StatusbarEx 0.3.5
    Display information on the addon-bar, such as memory usage, CPU usage, network speed, and so on.
    9/13/2014
    -Tab Mix Plus 0.4.1.5.2
    Tab browsing with an added boost.
    2/28/2014
    -Textise Add-On v3.0 3.0
    Textise is an Internet tool that can create a text only version of almost any web page.
    9/24/2014
    -Troubleshooter 1.1a
    Provides Firefox troubleshooting data to Mozilla web sites.
    10/6/2014
    -UnPlug 2.056
    Find and download media from websites
    10/23/2014
    -Web2PDF converter 1.12
    Web page to pdf convertion utility
    10/8/2014
    -Windows Live® Photo Gallery 14.0.8117.416
    NPWLPG
    4/16/2010
    -Windows Media Player Plug-in Dynamic Link Library 3.0.2.629
    Npdsplay dll
    7/7/2011
    -iWeb2x 1.0
    Convert web page to printer friendly PDF, image snapshot, or high resolution wallpaper
    9/24/2014
    -open tab count widget 0.99.1
    Adds a widget displaying the open tab count (over all windows) to the add-on bar. Can be moved to the toolbar. Very bare-bones.
    Created with addon builder (jetpack), so it should be future proof.
    3/25/2014
    -toolbarmode 0.7.5
    Context menu to customize individual toolbars.
    6/17/2014
    -urlcheck 0.1
    a basic add-on
    8/16/2014

    ''the-edmeister [[#answer-666854|said]]''
    <blockquote>
    '''''"I created a second profile called Shopping. I imported the extensions from my default profile into it."'''''
    If you used Sync to do that "import", disable Sync for at least one of those Profiles.
    </blockquote>
    Thank you for your suggestion. I have Sync enabled for all the profiles. To my surprise, however, Sync was of no use in getting Default's extension collection into Shopping. For that I had to resort to the article http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox.
    I will try disabling Sync on Shopping.

  • HT204053 I share an iTunes account with my daughter, I just got an ipad and need to set up with my own I'd for iCloud sync  how can I keep my apps and music?

    I share an iTunes account with my daughter, I just got an ipad and need to set up with my own I'd for iCloud sync  how can I keep my apps and music?

    ColleenMcG wrote:
    You can continue to share the same iTunes account ID with your daughter and set up a separate iCloud account with a different ID.
    => is this a different iCloud account for each device?  I thought iCloud account ID had to match some iTunes account ID, for which we only have one i Tunes account?
    You need to set up a separate iCloud account for each person that does not want to share their iCloud data.  If you share an iCloud account with someone, any data you both sync with the shared account is merged, and you end up with each other's data on your device(s).  If, for example, you owned two devices and someone else in the family also owned two devices, you would both want your own iCloud accounts, and you would each set up your personal iCloud account on the two devices you own.  In other words, you want a separate iCloud account for each person to be used on the devices they own.  Each iCloud account has to have a separate Apple ID.  The ID does not need to be the same as the ID used for iTunes.  Many families perfer to share the same iTunes account/ID, but maintain separate iCloud accounts with different IDs to keep there data separated.
    ColleenMcG wrote:
    It does not need to be the same as the ID used for iCloud.
    => what ID, iTunes?  So I can have a separate iCloud account "only" ID which I also assume must be some [valid] email address?  The children currently do not have email accounts anywhere.
    Yes, I was referring to the iTunes ID not needing to be the same as the ID used for iCloud.  In order to set up an Apple ID your children will need to have a valid email address that can be verified by Apple.  Apple requires this so they have a way of contacting the owner if there is a problem with the account, such as when you may need to reset the password on the account.  When you set up the ID, Apple will send a verification email to this email account and you will need to click on the verificating link in the email to complete the process.  If they don't currently have an email account you can just set one up with gmail or another free email hosting service.  They don't have to use the account but you will need it to set up the ID.

Maybe you are looking for