Spider Chart Legend Is Too Long

I have a legend for a Spider Chart that is very long (goes for the whole page vertically). For now, I've had to reduce the font size so that everything is visible but I'm looking other solutions. Any ideas? Thanks so much.

Hai
Take one Check Box  ---Tick Means Legend Should Appear
                                       Untick Means It Should Not Appear
Thank u
Naveen

Similar Messages

  • Legend item text too long

    Hello.
    Question to Flex guru:
    I have too long text in Legend for chart. How can I do line
    folding or how can I show toolTip for legend item (like for a Label
    object)?
    How can I initialize Legend object with array of LegendItem
    objects?
    Sorry for my english :)
    Thanks in advance.

    Im not sure what your asking exaclty as my english is bad
    too, however i know that the label will only show one line of text,
    for wordwrap or multiple lines i think you need to use the "Text"
    control.

  • Chart Legend: Worked in Beta, No longer working in Prod

    Hi everybody,
    The legend attached to the LineChart is no longer displaying the proper color. That is, the line, in the linechart is red (as requested) but the "legend" is black. It is supposed to be a red square and the word "Jobs" but I get a black square (as it is not picking the fact that it should be red).
    <s:SolidColorStroke id="s3" color="red" />
    <mx:Legend dataProvider="{myChart}" />
    <mx:LineChart id="myChart"
      x="10" y="40" width="600" height="400"
      dataProvider="{platformsData}"
      showDataTips="true" >
    <mx:series>
    <mx:LineSeries yField="id" displayName="Jobs" lineStroke="{s3}"/>
    </mx:series>
    </mx:LineChart>
    This worked in Beta but no longer works in Production. Is this a bug or I need to make coding changes to accommodate to new Production ways of dealing with this?
    Regards,
    egm

    Seems like a bug to me.  If you remove lineStroke="{s3}", the chart legend loads fine.
    Might have something to do with fill color perhaps?
    In any case, the fills documentation says:
    "If you specify the fills property and you want to have a Legend  control, you must manually create a Legend control and add LegendItems to it."
    Perhaps the entry for lineStroke should say the same.
    In the mean time you could use the defaults, or a custom Legend, like this (place into an AIR 2 project if you try running it):
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                xmlns:s="library://ns.adobe.com/flex/spark"
                                xmlns:mx="library://ns.adobe.com/flex/mx" width="1059" height="722">
         <fx:Script>
              <![CDATA[
                   import mx.events.FlexEvent;
                   [Bindable]
                   public var platformsData:Array = [{id:1, jobs:'Test1'},{id:4, jobs:'Test2'},{id:6, jobs:'Test3'},{id:9, jobs:'Test4'}];
              ]]>
         </fx:Script>
         <fx:Declarations>
              <s:SolidColorStroke id="s3" color="0xFF0000" weight="2" alpha=".8"/>
         </fx:Declarations>
         <mx:Legend>
              <mx:LegendItem label="Jobs" fontWeight="bold">
                   <mx:fill>
                        <mx:SolidColor color="0xFF0000"/>
                   </mx:fill>
                   <mx:stroke>
                        <mx:SolidColorStroke color="0xFF0000" weight="2"/>
                   </mx:stroke>
              </mx:LegendItem>
         </mx:Legend>
         <mx:LineChart id="myChart" x="53" y="124" width="600" height="400" dataProvider="{platformsData}" showDataTips="true">
              <mx:series>
                   <mx:LineSeries yField="id" displayName="Jobs" lineStroke="{s3}"/>
              </mx:series>
         </mx:LineChart>
    </s:WindowedApplication>

  • Chart legend too wide when using horizontal layout

    I am using a flex chart with about 15 series on it. I've set
    the legend direction variable to "horizontal". However since the
    panel width which contains the chart is fixed, the legend sprawls
    out to the right instead of going "wrapping around" nicely to stay
    within the panel. As a result, you can't read the whole legend when
    looking at the chart. The chart itself stays the proper width, but
    the legend is too wide and can only be seen via using the scrollbar
    to move horizontally. How can that be fixed?

    Solerous, you must create a custom legend. Here's an example
    that uses a grid to lay out the individual grid items. If you have
    a variable number of series, then you can probably come up with
    better logic for laying out the legend, but this should help get
    you going.
    hth,
    matt horn
    flex docs
    <?xml version="1.0"?>
    <!-- charts/CustomLegendInActionScript.mxml -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    backgroundColor="white" creationComplete="init()">
    <mx:Script><![CDATA[
    import mx.containers.GridItem;
    import mx.containers.GridRow;
    import mx.graphics.SolidColor;
    import mx.graphics.IFill;
    import mx.charts.LegendItem;
    import mx.charts.Legend;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var expenses:ArrayCollection = new ArrayCollection([
    {Expense:"Taxes", April:2000, May:321, June:131, July:1100,
    August:200, September:1400, October:42},
    {Expense:"Rent", April:1000, May:95, June:313, July:600,
    August:400, September:200, October:52},
    {Expense:"Taxes", April:2000, May:321, June:131, July:90,
    August:500, September:900, October:300},
    {Expense:"Bills", April:100, May:478, June:841, July:400,
    August:600, September:1100, October:150}
    private function init():void {
    for (var i:int = 0; i < myChart.series.length; i++) {
    var li:LegendItem = new LegendItem();
    li.label = myChart.series
    .displayName;
    var sc:SolidColor = myChart.series.getStyle("fill");
    li.setStyle("fill", sc);
    var gi:GridItem = new GridItem();
    if (i < 3) {
    // First row
    gi.addChild(li);
    gr1.addChild(gi);
    } else if (i >= 3 && i < 6) {
    // Second row
    gi.addChild(li);
    gr2.addChild(gi);
    } else if (i >= 6) {
    // Third row
    gi.addChild(li);
    gr3.addChild(gi);
    ]]></mx:Script>
    <mx:Panel title="Bar Chart with Legend" width="500"
    height="600">
    <mx:BarChart id="myChart" dataProvider="{expenses}"
    height="400" showDataTips="true">
    <mx:verticalAxis>
    <mx:CategoryAxis
    dataProvider="{expenses}"
    categoryField="Expense"
    />
    </mx:verticalAxis>
    <mx:series>
    <mx:BarSeries xField="April" displayName="April (in
    $USD)"/>
    <mx:BarSeries
    xField="May"
    displayName="May (in $USD)"
    />
    <mx:BarSeries
    xField="June"
    displayName="June (in $USD)"
    />
    <mx:BarSeries
    xField="July"
    displayName="July (in $USD)"
    />
    <mx:BarSeries
    xField="August"
    displayName="August (in $USD)"
    />
    <mx:BarSeries
    xField="September"
    displayName="September (in $USD)"
    />
    <mx:BarSeries
    xField="October"
    displayName="October (in $USD)"
    />
    </mx:series>
    </mx:BarChart>
    <mx:Grid id="myGrid">
    <mx:GridRow id="gr1">
    </mx:GridRow>
    <mx:GridRow id="gr2">
    </mx:GridRow>
    <mx:GridRow id="gr3">
    </mx:GridRow>
    </mx:Grid>
    </mx:Panel>
    </mx:Application>

  • Pie Chart legend text when drill down too larger

    Dear Gurus,
    I have this report with Pie chart:
    *)Table:
    Element Group
    Earnings 100
    Deductions 30
    When drill down (after click on Earnings/Deductions), it become detail like this:
    Element Group Classification Name
    Earning Regular
    Earning Irregular
    And the Pie chart legend show this: Earnings, Regular Earnings
    ->how to remove Earnings?I just want to show classification name as legend.
    I use OBIEE 11.1.1.3
    Any help will be appreciated
    Regards
    Joe
    Edited by: JoeSSI on Aug 10, 2012 12:33 AM
    Edited by: JoeSSI on Aug 10, 2012 12:35 AM
    Edited by: JoeSSI on Aug 10, 2012 3:24 AM

    Hi Joe,
    There was a bug associated with repeated legends in 11.1.1.3 version.Can you check the below document and see if the mentioned patch helps,
    Vertical Bar Charts In OBIEE 11g Display Repeated Labels In The Graph Legend [ID 1376185.1]
    Regards,
    Dpka

  • Pie Chart Legend - colors and sorting value

    <p>Hi,</p><p>I have a pie chart with around 20 &#39;segments&#39; representing names of people - so it looks like several of them have the same color.</p><p>So my first question is do the standard 12 colors repeat after 12 segments have been &#39;defined&#39; - can this be extended with custom colors?.  I know you can set colors for specific values but as the list is dynamic, I can&#39;t do that. </p><p>I also have a legend defined which shows the person&#39;s name and then the value - either a percentage or a count etc.    From top to bottom, the legend lists the entries alphabetically by the person&#39;s name - however, it&#39;s not always easy to tell which name is associated with which &#39;segment&#39; and using labels is not an option as they are too long and there are too many of them to be readable<br /></p><p>So what I would like to do is have the legend displayed in numerical size order - e.g. person with largest % is at the top, smallest % is at the bottom etc.</p><p>I&#39;ve been looking at the Chart Expert, CR Help and the forums but have not seen an answer to either question - I&#39;m hoping someone can tell me if it&#39;s possible or not (and if so, how do I do it!).</p><p>Thanks <br /></p>

    Hi,
    If you go to the Chart Expert, on the data tab, you can choose the Top N option. From within there you can get your legend sorted based on the highest or lowest percentage. You can also group information so that you only see the top 5 or lowest 10 or whatever you want.
    Also when I create a pie graph based on 20 plus pieces of data it isn't resusing the colors, but they are somewhat similar. I usually do a group of the top 10 or so, then have an others category for situations like this.Â
    Rody

  • OS X Mavericks (10.9)- Ejecting external drives taking too long

    So ever since I upgraded from 10.8.5 to the 10.9 GM any external hard disk or flash drive take too long to eject (~10 s). I'm sure it's not the drives because I've tested the same one on different Mac mini on 10.9  but it ejects within a second or two. I've tried USB 2.0, 3.0 and Thunderbolt drives. Is anyone having this issue and does anyone know how to fix it? I would rather avoid having to do a clean install. I'm using a mid 2012 MBA.

    In my case the results of EtreCheck
    Hardware Information:
              MacBook Air (11-inch, Mid 2012)
              MacBook Air - model: MacBookAir5,1
              1 2 GHz Intel Core i7 CPU: 2 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 1024 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    Startup Items:
              Jaksta: Path: /Library/StartupItems/Jaksta
              Jaksta Music Miner: Path: /Library/StartupItems/Jaksta Music Miner
              ProTec6b: Path: /Library/StartupItems/ProTec6b
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 0:2:18
    Disk Information:
              OWC Aura Pro 2012 SSD disk0 : (480,1 GB)
                        EFI (disk0s1) <not mounted>: 209,7 MB
                        Macintosh HD (disk0s2) /: 479,24 GB (244,85 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
              com.seagate.driver.PowSecDriverCore          (5.2.2 - SDK 10.4)
              com.rogueamoeba.InstantOn          (6.0.3 - SDK 10.6)
              com.globaldelight.driver.BoomDevice          (1.1 - SDK 10.9)
              com.protech.NoSleep          (1.3.3 - SDK 10.8)
              com.iospirit.driver.rbiokithelper          (1.21 - SDK 10.6)
              com.radiosilenceapp.nke.filter          (1)
              com.eltima.ElmediaPlayer.kext          (1.58 - SDK 10.4)
    Problem System Launch Daemons:
    Problem System Launch Agents:
              [loaded] com.paragon.NTFS.notify.plist
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.bjango.istatmenusdaemon.plist
              [loaded] com.bresink.system.securityagent3a.plist
              [loaded] com.corecode.UninstallPKGDeleteHelper.plist
              [loaded] com.creativebe.MainMenuHelper.plist
              [not loaded] com.econtechnologies.ChronoAgentRemote.plist
              [loaded] com.eltima.ElmediaPlayer.daemon.plist
              [loaded] com.genieoinnovation.macextension.client.plist
              [loaded] com.machangout.glims.loader.plist
              [not loaded] com.maintain.AutoLoginUserScreenLocked.plist
              [not loaded] com.maintain.HideSpotlightMenuBarIcon.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [invalid] com.oracle.java.Helper-Tool.plist
              [loaded] com.radiosilenceapp.nke.plist
              [loaded] com.raynersw.nshctldo.plist
              [loaded] com.soma-zone.LaunchControl.Helper.plist
              [loaded] com.syniumsoftware.CleanAppDaemon.plist
              [loaded] com.zeroonetwenty.BlueHarvestHelper.plist
              [loaded] org.macosforge.xquartz.privileged_startx.plist
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.bjango.istatmenusagent.plist
              [loaded] com.genieoinnovation.macextension.plist
              [loaded] com.machangout.glims.agent.plist
              [not loaded] com.maintain.LogOut.plist
              [not loaded] com.maintain.PurgeInactiveMemory.plist
              [not loaded] com.maintain.Restart.plist
              [not loaded] com.maintain.ShutDown.plist
              [not loaded] com.maintain.Sleep.plist
              [loaded] com.maintain.SystemEvents.plist
              [invalid] com.oracle.java.Java-Updater.plist
              [loaded] com.paragon.updater.plist
              [loaded] com.protech.NoSleep.plist
              [loaded] com.radiosilenceapp.agent.plist
              [loaded] org.macosforge.xquartz.startx.plist
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.google.keystone.agent.plist
              [loaded] com.Livestation.plist
              [loaded] com.macupdate.desktop5.scanner.plist
              [loaded] com.maintain.ShowUserLibraryDirectory.plist
              [loaded] com.vemedio.Snowtape.RadioAgent.plist
              [not loaded] info.lokiware.attachmenttamer.cleanup.plist
              [failed] info.lokiware.attachmenttamer.setupagent.plist
              [loaded] us.theWoodwards.CAPSWarn.plist
    User Login Items:
              Boom
              CAMonitorBackgrounder
              NoSleep
              iTunesHelper
              UnPlugged
              Mountain
              Essentials
              TabLauncher
              PopClip
              Bartender
              Moom
              KeyCue
              iClipboard
              Did I Click
              Caffeine
              deepClock
              SMARTReporter
              EyeTV Helper
              Meridian
              CommandQ
              SharpshooterAgent
              DockView
              UnblunderAgent
              BlueHarvest
              iTrash
              KeyclickServer
              Application Wizard
              MinimizeAll
              XtraFinder
              Zoom It
              My Living Desktop Viewer
              CDSBupd
    3rd Party Preference Panes:
              Application Wizard
              CAPS Warn
              ChronoAgent
              CleanApp Logging Service
              Disksomnia
              EarthDesk
              Flash Player
              Flip4Mac WMV
              FUSE for OS X (OSXFUSE)
              Keyclick
              MenuMeters
              NoSleep
              Paragon NTFS for Mac ® OS X
              Perian
    Internet Plug-ins::
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Outdated! Update
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8
              AdobePDFViewerNPAPI: Version: 11.0.04 - SDK 10.6
              FlashPlayer-10.6: Version: 12.0.0.39 - SDK 10.6
              Silverlight: Version: 5.1.20913.0 - SDK 10.6
              Flash Player: Version: 12.0.0.39 - SDK 10.6 Outdated! Update
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.3.9 - SDK 10.6
              AdobePDFViewer: Version: 11.0.04 - SDK 10.6
              EPPEX Plugin: Version: 4.1.0.0
              DirectorShockwave: Version: 12.0.7r148 - SDK 10.6
    User Internet Plug-ins::
              iGetter Plugin: Version: 2.9.2
              iGetterScriptablePlugin: Version: 2.9.2
              RealPlayer Plugin: Version: Unknown
    Bad Fonts:
              None
    Old applications:
              Aggregator:          Version: 1.1.1 - SDK 10.4
                        /Applications/Additions/File Manage/Organize/Aggregator.app
              AnyToDMG:          Version: 2 - SDK 10.0
                        /Applications/Additions/DMG/AnyToDMG.app
              Audacity:          Version: 2.0.5.0 - SDK 10.4
                        /Applications/Play Audio Convert/Edit/Audacity/Audacity.app
              Audiobook Builder:          Version: 1.5.3 - SDK 10.4
                        /Applications/Play Audio Convert/Audio Books/Audiobook Builder.app
              Blue Crab:          Version: 5.0.06 - SDK 10.4
                        /Applications/Internet/Download Site/Blue Crab.app
              BookPrinter:          Version: 2011.5 - SDK 10.0
                        /Applications/Additions/Print/BookPrinter.app
              CrystalTV:          Version: 2.0 - SDK 10.5
                        /Applications/Play Video/Internet Media/CrystalTV.app
              CursorCoordinates:          Version: 1.0.1 - SDK 10.4
                        /Applications/Additions/Mouse Keyboard/CursorCoordinates.app
              DMG Architect:          Version: 1.2 - SDK 10.0
                        /Applications/Additions/DMG/DMG Architect.app
              DVD2oneX2:          Version: 2.4.2 - SDK 10.4
                        /Applications/Additions/DVD/DVD2oneX2.app
              DVDProbe:          Version: 1.2 - SDK 10.4
                        /Users/pnn314/Library/Application Support/MacTheRipper/DVDProbe.app
              DataGraph:          Version: 3.1.1 - SDK 10.5
                        /Applications/Office/DataGraph.app
              Disc Cover 3:          Version: 3.0.10 - SDK 10.5
                        /Applications/Toast 11 Titanium/Disc Cover 3.app
              Disc Cover 3 RE:          Version: 3.0.10 - SDK 10.5
                        /Applications/Toast 11 Titanium/Disc Cover 3 RE.app
              Droffett:          Version: 1.0.9 - SDK 10.4
                        /Applications/Additions/File Manage/Organize/Droffett.app
              EarthNet:          Version: 1.0 - SDK 10.0
                        /Applications/Internet/Net/EarthNet.app
              Easy-PhotoPrint EX:          Version: Version 4.5.0 - SDK 10.4
                        /Applications/Canon Utilities/Easy-PhotoPrint EX/Easy-PhotoPrint EX.app
              Elmedia Player:          Version: 4.3.4 - SDK 10.5
                        /Applications/Play Video/Flash/Elmedia Player.app
              FLV Spider Pro:          Version: 3.1.30 - SDK 10.5
                        /Applications/Internet/Download Media/FLV Spider Pro.app
              Fast Image Resizer:          Version: 1.0 - SDK 10.0
                        /Applications/Additions/Image/Resize/Fast Image Resizer.app
              Goldfish Aquarium 2:          Version: 2.0.3 - SDK 10.4
                        /Applications/Additions/Screen Savers/Goldfish Aquarium 2.app
              Graphic Inspector:          Version: 1.7.27 - SDK 10.5
                        /Applications/Additions/Image/Graphic Inspector.app
              IPSentinelStatus:          Version: 1.2.2 - SDK 10.4
                        /Applications/Internet/IP/IPSentinelStatus.app
              ImageConvert:          Version: 1.1.3 - SDK 10.4
                        /Applications/Additions/Image/Convert/ImageConvert.app
              Intaglio:          Version: 3.4.2 - SDK 10.5
                        /Applications/Additions/Image Draw/Intaglio.app
              Keynote:          Version: 5.3 - SDK 10.5
                        /Applications/iWork '09/Keynote.app
              Locations 3:          Version: 3.0 - SDK 10.0
                        /Applications/Internet/Net/Locations 3.app
              MTR 4:          Version: 4.3.0.0 - SDK 10.4
                        /Applications/Additions/DVD/MTR/MTR 4.0.app
              Mail Clips:          Version: 1.0.1 - SDK 10.4
                        /Applications/Additions/Email/Utilities/Mail Clips.app
              Marine Aquarium 3:          Version: 3.2.1 - SDK 10.4
                        /Applications/Additions/Screen Savers/Marine Aquarium 3.2.app
              Microsoft Alerts Daemon:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Alerts Daemon.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              Microsoft Chart Converter:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app
              Microsoft Database Daemon:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app
              Microsoft Database Utility:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app
              Microsoft Document Connection:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Document Connection.app
              Microsoft Excel:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Excel.app
              Microsoft Graph:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Graph.app
              Microsoft Outlook:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Outlook.app
              Microsoft PowerPoint:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft PowerPoint.app
              Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app
              Microsoft Word:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Word.app
              Moon Atlas:          Version: 1.0.1 - SDK 10.0
                        /Applications/Приложения/Moon Atlas.app
              MovieDek:          Version: 1.0.11 - SDK 10.4
                        /Applications/Play Video/Snaps/MovieDek.app
              Multidef:          Version: 1.0.1 - SDK 10.5
                        /Applications/Office/Translate/Multidef.app
              Numbers:          Version: 2.3 - SDK 10.5
                        /Applications/iWork '09/Numbers.app
              Open XML for Excel:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Open XML for Excel.app
              PDF2Office Desktop Server:          Version: 6.0 - SDK 10.5
                        /Library/Application Support/Recosoft Corporation/PDF2Office Professional v6.0/PDF2Office Desktop Server.app
              PDF2Office for iWork Desktop Server:          Version: PDF2Office for iWork Desktop Server - SDK 10.5
                        /Library/Application Support/Recosoft Corporation/PDF2Office for iWork v2.0/PDF2Office for iWork Desktop Server.app
              PDF2Office for iWork v2:          Version: PDF2Office for iWork v2.0 - SDK 10.5
                        /Applications/PDF2Office for iWork v2.0/PDF2Office for iWork v2.0.app
              PDFSuite:          Version: 1.5.1 - SDK 10.0
                        /Applications/Office PDF/Manipulate/PDFSuite.app
              Pages:          Version: 4.3 - SDK 10.5
                        /Applications/iWork '09/Pages.app
              QuitsApps:          Version: 1.1.1 - SDK 10.4
                        /Applications/Control/Command/QuitsApps.app
              ResizeIt:          Version: 3.5.0 - SDK 10.5
                        /Applications/Additions/Image/Resize/ResizeIt.app
              SLLauncher:          Version: 1.0 - SDK 10.5
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              Short Links:          Version: 2.0 - SDK 10.0
                        /Applications/Internet/Short Link/Short Links.app
              Solution Browser:          Version: 1.1.5.27 - SDK 10.5
                        /Applications/ConceptDraw Office 2/Solution Browser.app
              Solver:          Version: 1.0 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Надстройки/Solver.app
              Spin Doctor:          Version: 1.0 - SDK 10.5
                        /Applications/Toast 11 Titanium/Spin Doctor.app
              SuperDuper!:          Version: 2.7.1 - SDK 10.4
                        /Applications/Additions/HD Utilities/SuperDuper!.app
              SyncServicesAgent:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/SyncServicesAgent.app
              TilePhotos:          Version: 1.0.3 - SDK 10.4
                        /Applications/Additions/Photo/TilePhotos.app
              URL Manager Pro:          Version: 4.2 - SDK 10.5
                        /Applications/Internet/Bookmarks/URL Manager Pro.app
              Viewer:          Version: 4.1 - SDK 10.0
                        /Applications/View/Viewer.app
              WashingMachineHelper:          Version: 2.5 - SDK 10.5
                        /Library/Application Support/Intego/Washing Machine/WashingMachineHelper.app
              Web2PDF:          Version: 1.5 - SDK 10.0
                        /Applications/Internet/Screen Capture/Web2PDF.app
              WebArchive Extractor:          Version: 0.8 - SDK 10.5
                        /Applications/Additions/Read Convert/WebArchive/WebArchive Extractor.app
              XLD:          Version: 20131102 - SDK 10.4
                        /Applications/Play Audio Convert/XLD.app
              bartunes:          Version: 1.0 - SDK 10.0
                        /Applications/Additions/iTunes/Control/bartunes.app
              iPhoto To Disk:          Version: 4.0 - SDK 10.5
                        /Applications/Additions/iPhoto/iPhoto To Disk.app
              iSkysoft Helper Compact:          Version: 2.2.6.4 - SDK 10.5
                        /Users/pnn314/Library/Application Support/Helper/iSkysoft Helper Compact.app
              Коллекция клипов (Майкрософт):          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app
              Мой день:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/My Day.app
              Напоминания Microsoft Office:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app
              Отчеты об ошибках (Майкрософт):          Version: 2.2.9 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app
              Центр отправки Майкрософт:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app
    Time Machine:
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 446.33 GB Disk used: 218.30 GB
              Destinations:
                        Time Capcule Disk [Network] (Last used)
                        Total size: 2 
                        Total number of backups: 63
                        Oldest backup: 2013-04-21 05:33:32 +0000
                        Last backup: 2013-12-20 16:57:03 +0000
                        Size of backup disk: Excellent
                                  Backup size 2  > (Disk size 446.33 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   5%          WindowServer
                   3%          EtreCheck
                   3%          hidd
                   2%          deepClock
                   1%          coreaudiod
    Top Processes by Memory:
              713 MB          com.apple.IconServicesAgent
              434 MB          Safari
              115 MB          com.apple.WebKit.WebContent
              74 MB          Dock
              66 MB          mds_stores
    Virtual Memory Statistics:
              3.61 GB          Free RAM
              2.90 GB          Active RAM
              708 MB          Inactive RAM
              822 MB          Wired RAM
              413 MB          Page-ins
              0 B          Page-outs

  • Chart legend width in Firefox

    This may already be common knowledge, but we just bumped into what may be the cause of truncated chart legends in Firefox.
    I have been trying to figure out how to expand the width of the legend box that accompanies charts. Firefox sometimes renders the legend box too short to display the full value character strings. But sometimes Firefox renders the legend box with a wider width, so the value strings have plenty of room to fully be displayed.
    IE, on the other hand, reduces the font of the text in the legend box and so can display the full values.
    And then a co-worker noticed a pattern in the way Firefox renders the legend box.
    If the "data point limit" set for a pie chart, for instance, is at least as great as the greatest number of values that can be displayed, Firefox renders the legend box with enough room for the full value character strings. It does not truncate the legend box.
    For example, if the largest number of values that can be displayed in a pie chart is 10, if the "data point limit" for the chart is set to 11 or more, Firefox will render a legend box with sufficient width to display the full value strings.
    On the other hand, if the "data point limit" is set to 10 or less when there can be 10 or more values for the column driving the pie chart, then Firefox will render a legend box that may not be wide enough to display the full value strings. The strings will thus be truncated to the render width of the legend box.
    So far this behavior appears consistent. I

    Actually, it is necessary only to set the "data point limit" equal to, not greater than, the maximum number of column values for a chart. So if the maximum number of column values is 10, if the "datda point limit" is set to 10, the legend box will be wide enough to display the full value strings. It can be set to a number greater than 10 as well, but that is not necessary for the legend box to be wide enough.

  • Chart Legend width

    I have a problem with a chart legend.
    Is it possible to enlarge the width of a chart legend ?
    If yes where I can do it.
    Thank you very much

    I know it is over a year since you posted the reply. But, I just wanted to know if the new version (2.2) has anything to change the size of legend width. The width is much too small. I am using a 3-D pie chart if that helps.

  • Text in flash chart legend

    Hi- We are on APEX v3.1.2.00.02
    A flash chart has been created and works well, but here is my issue:
    In the Chart Series query, we have a select (here's a small piece) select total_rfc "Total R.F.C"
    When the chart is generated, the legend box appears as Total R.F.C (as seen in the above line).
    I really want it to say Total RFC (no periods). If I change the SQL query to "Total RFC", it appears as Total Rfc (2nd & 3rd letters are lower case).
    Anyone know how to fix this? I'm fairly new to APEX and I can't quite determine if this is a SQL or Flash issue.

    Hi "msnewman",
    The behaviour you are seeing is expected in APEX 3.1.2, and is due to the use of the Initcap function in the underlying logic, which is resulting in Legend values appearing with the initial letter in uppercase and the rest of the work in lowercase letters. When you remove the full stops from between R F and C, then the three letters are being picked up as one word, RFC, which will end up like Rfc after being updated by the Initcap function.
    In APEX 4.0, however, this is no longer an issue. With Flash 5 charts it is possible to display the value all in uppercase, as you can see in the Bar Chart example here: http://apex.oracle.com/pls/apex/f?p=36648:5. So if you are contemplating upgrading to APEX 4.0.2, our latest release, you would be able to take advantage of this change to the behaviour of the chart legend, as well as much nicer looking Flash charts.
    Regards,
    Hilary

  • Xcelsius - Embedded 'Jpg' logo not visible, Pie chart Legends not visible

    Hi,
       I am new to xcelsius. could you please help.
       I have two issues.
      1. I incorporated Logo (JPG FILE) and selected options Embed file, resize image to component, but image is not visible when I preview. Why? What needs to be done to make logo visible in preview(swf file). I did not export yet to Infoview though.
    2. Legend values are cropped. I have 35 legends that are to be listed for pie chart. I can see only 31 and remaining four not visible (two from beginning, 2 at the end). I reduced font to lowest visible value i.e.  8 and increased height max possible that looks good . How to make them visible? or make them to fit to chart. Is there any option? Legend values are towards right of chart.
    Please help.
    BR, Nanda Kishore

    Hi,
       Are you using Image Component to insert your JPEG, if not try that. It will work as expected.
       As for your pie chart legends, it will work as long as your Pie Chart is large enough to fit all regions onto the screen.
       Try a simple test just to prove that concept.
          - Create 2 columns in Excel
          - Make Column A your Region Column. Insert up to 35 records
          - Make Column B you Data column. Also insert up to 35 records.
          - Now map your data into the Pie Chart and make sure you reduce the fonts of the region to "8" (Smallest it can go)
          - Preview it.
    Ken

  • Discoverer report taking too long time to open.

    HI,
    Discovere reports are taking too long time to open. Please help to resolve this.
    Regards,
    Bhatia

    What is the Dicoverer and the Application release?
    Please refer to the following links (For both Discoverer 4i and 10g). Please note that some Discoverer 4i notes also apply to Discoverer 10g.
    Note: 362851.1 - Guidelines to setup the JVM in Apps Ebusiness Suite 11i and R12
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=362851.1
    Note: 68100.1 - Discoverer Performance When Running On Oracle Applications
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=68100.1
    Note: 465234.1 - Recommended Client Java Plug-in (JVM/JRE) For Discoverer Plus 10g (10.1.2)
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=465234.1
    Note: 329674.1 - Slow Performance When Opening Plus Workbooks from Oracle 11.5.10 Applications Home Page
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=329674.1
    Note: 190326.1 - Ideas for Improving Discoverer 4i Performance in an Applications 11i Environment
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=190326.1
    Note: 331435.1 - Slow Perfomance Using Disco 4.1 Admin/Desktop in Oracle Applications Mode EUL
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=331435.1
    Note: 217669.1 - Refreshing Folders and opening workbooks is slow in Apps 11i environment
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=217669.1

  • String literal too long error while invoking a package with clob variable

    I have a package.One of the input variables of the procedure in packae is clob.
    I want to invoke this package with a huge clob as input.
    when i invoke this package like that i am getting following error
    PLS-00172 string literal too long
    can't we pass clob(huge clob) as input .is there any solution for that ?
    Thanks
    Pramod Garre

    842802 wrote:
    If insert this data into a table , from sql prompt still i get the same error.Do you mean SQL*Plus? Then there is buffer limitation and it is better to split literal into, let say 1000 character chunks:
    SQL*Plus: Release 10.2.0.4.0 - Production on Tue Mar 29 16:17:26 2011
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' ||
      2  'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' ||
      3  'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' ||
      4  'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' ||
      5  'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'
      6  from dual;
    from dual
    ERROR at line 6:
    ORA-01489: result of string concatenation is too long
    SQL> select to_clob('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA') ||
      2  'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' ||
      3  'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' ||
      4  'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' ||
      5  'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'
      6  from dual;
    TO_CLOB('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    SQL> SY.

  • ITunes v10.6.1.7 "Copying files failed. The File name was invalid or too long."

    I'm trying to organize my music files using iTunes 10.6.1.7 and I keep getting the error message "Copying files failed. The File name was invalid or too long."
    I've got music folders by artist in both the iTunes Music folder and the iTunes Media/Music folder. When I add certain files by drag/drop they sometimes get lost and I don't want that to happen anymore. I used to just consolidate my music files using the File/Library/Organize Library option and that worked, however now when I do that, I get the error message.
    I'm a novice and the only online stuff I see is both confusing and refers to earlier versions of iTunes.
    My concern is that I have heard that people lose entire libraries of their music when they trry to fix things like this and I don't want that. If this is of any importance, I have several files called iTunes library and temp library. I have no idea what that all means but I'm scared to death of it.
    Also, I can't get to the "re-organize library" link at all. It won't let me.
    One thing that be of some interest is that when I pull up the properties of the music and media/music files they are marked "read only" I'm also afraid to touch that!
    Please help and please know that I am a dummy. Be kind and be clear. Step by step would be great, with images even better. Thanks.

    Perhaps nobody knows the answer? We're fellow users here answering questions in our free time when we think we've something useful to contribute.
    You can choose to *Consolidate selected tracks* with a right-click menu. Perhaps if you can identify a specific track that won't consolidate and examine the full path to the file & the path that iTunes would create when it consolidates the problem might become apparent. For example iTunes may not be able to move files if the source or destination path length exceeds 255 characters.
    tt2

  • TS3772 I made a 3 minute movie with my iphone 4s. when I attempt to share it by message or email, a message says the movie is too long and that I must make clips. Is there any way to get around this and send the whole video? I think everything is in the c

    I made a 3-minute movie with my iphone 4S. When I attempt to share it via email or message I get a message that says it is too long, that I should try to make a clip. Of course I had rather send the whole thing. What are the possibilities? I think my music and likely my videos and pictures are in the cloud.

    SadisticIron wrote:
    i just baught my first iphone and it is a jalbroken
    Buzz! Thank you for playing!
    Discussing jailbroken devices is forbidden here by the Terms of Service.
    You can not get help here.

Maybe you are looking for