Increasing canvas size and re-clipping (intentionally)

Hi,
So I bolluxed up a little bit while creating my first full-bleed print piece. I used Ps to edit the image, Ai to add some stuff, and ignored Id completely for the printer. Now I have a perfect 8.5 x 11 image that I want to print all the way to the edges without scaling; I left white bleeds 1.8" but apparently that won't suffice.
I'm trying to go back into photoshop and increase the canvas size (8.75 x 11.25 to include bleeds), and with it, extend the image that was originally clipped when I trimmed the document from a vertical picture (12 x 16 or whatever) to fit the standard letter paper size. When I do that, I get only white areas around the canvas.
Can anyone provide a solution to create full-color bleeds the way they should have been done originally? I have tried changing the canvas size and re-placing another layer of the image behind the existing one (with the hopes that it would clip automatically), but it didn't work. At this point, should I worry about bringing anything into InDesign?
Thanks,
- boda

The Nish Adeel,
> i wants to increase my fla canvas size from all sides...
when we
> increase the size of a file it increases from right and
bottom , i
> want to make it from all four sides like photoshop ...
is there any
> way to do this.
There is a way to do this; unfortunately, it's not an
automatic feature
like in Photoshop. The approach you'll need to take is to
update the
document dimensions (basically, the canvas size) as desired,
then use the
Edit Multiple Frames button on the lower left of the Timeline
panel to
manually move all assets on the main timeline. To do this,
you'll have to
make sure all layers are unlocked. To do this quickly, click
the
Lock/Unlock All Layers button at the top, between the eye and
the square
buttons, until you see that all locks have been removed (one
or two clicks
will do it). In the Modify Onion Markers button next to the
Edit Multiple
Frames button, choose Onion All. Select Edit > Select All,
then use the
arrow buttons to move your assets.
David Stiller
Co-author, Foundation Flash CS3 for Designers
http://tinyurl.com/2k29mj
"Luck is the residue of good design."

Similar Messages

  • How can I export an image from Illustrator same canvas size and custom resolution?

    Hey all.  i am using Adobe Illustrator CS5 for creating images for iPhone app icons the size of image 374 px 374 px and 264 ppi. i created an image same size and ppi .the problem after export the image file size changing to  1371px x 1371px and 264 ppi pixel dimension.How can I export same canvas size and same resolution file from illustrator

    10111980,
    If you just forget about PPI and use Save for Web, you will get the 374 x 374 pixel size.
    The 1371 x 1371 pixels is because you somehow increase the resolution by 264/72.
    You should never mix pixel by pixel sizes and PPI.
    The 374 x 374 pixels is the actual image size. At 264 PPI that will be about 1.417 inches. At 72 PPI that will be about 5.194 inches.

  • Monitor image has increased in size, and is very unsharp

    for no reason I can think of the image (all) increased in size and is very fuzzy. This happened as I was looking at the screen - was not touching anything at the time - I don't think. Might I have hit a function key and not known it, and made the image bad??? Menu bar runs off screen to the right.

    Hi.
    Go to System Preferences/Universal Access/Seeing tab, and turn the Zoom Off.
    Good Luck.

  • Increase canvas conditionally and Conditonal copyright logo

    Hi,
    I want to increase the Canvas size of image conditionally depends on height or width of images. But the script is not giving proper results.
    Can Anyone help me in this. And also i have done bold for the text as comments. Even i need help in the comment mentioned line also
    Thanks in Advance,
    Script goes here:
    var cm3_5 = 3.5;
            var cm5 = 5;
            var cm8 = 8;
            var cm12 = 12;
            var cm13 = 13;
            var cm16 = 16;
            var cm17 = 17;
            var cm20 = 20;
            var cm21 = 21;
            var cm24 = 24;
            var cm25 = 25;
            var cm28 = 28;
            var cm28_5 = 28.5;
            var cm30 = 30;
            var cm30_5 = 30.5;
            var cm32 = 32;
            var cm32_5 = 32.5;
            var cm34 = 34;
            var cm34_5 = 34.5;
            var cm36 = 36;
            var doc=app.activeDocument;
                if(doc.width>doc.height)
                     if (doc.width<cm3_5){
                     var originalRulerUnits = app.preferences.rulerUnits;
                    app.preferences.rulerUnits = Units.CM;
                    doc.resizeCanvas(doc.width + 0.5, doc.height +0.5, AnchorPosition.MIDDLECENTER);
                    app.preferences.rulerUnits = originalRulerUnits;
                    }else  if (doc.width<cm5){
                     var originalRulerUnits = app.preferences.rulerUnits;
                    app.preferences.rulerUnits = Units.CM;
                    doc.resizeCanvas(doc.width + 0.75, doc.height +0.75, AnchorPosition.MIDDLECENTER);
                    app.preferences.rulerUnits = originalRulerUnits;
                    }else  if (doc.width<cm8 && doc.width>cm4){
                     var originalRulerUnits = app.preferences.rulerUnits;
                    app.preferences.rulerUnits = Units.CM;
                    doc.resizeCanvas(doc.width + 1, doc.height +1, AnchorPosition.MIDDLECENTER);
                    app.preferences.rulerUnits = originalRulerUnits;
                    }else  if (doc.width<cm12 && doc.width>cm8){
                     var originalRulerUnits = app.preferences.rulerUnits;
                    app.preferences.rulerUnits = Units.CM;
                    doc.resizeCanvas(doc.width + 1.5, doc.height +1.5, AnchorPosition.MIDDLECENTER);
                    app.preferences.rulerUnits = originalRulerUnits;
                    }else  if (doc.width<cm20 && doc.width>cm17){
                     var originalRulerUnits = app.preferences.rulerUnits;
                    app.preferences.rulerUnits = Units.CM;
                    doc.resizeCanvas(doc.width + 2, doc.height +2, AnchorPosition.MIDDLECENTER);
                    app.preferences.rulerUnits = originalRulerUnits;
                    if (doc.width<cm24 && doc.width>cm20){
                     var originalRulerUnits = app.preferences.rulerUnits;
                    app.preferences.rulerUnits = Units.CM;
                    doc.resizeCanvas(doc.width + 3, doc.height +3, AnchorPosition.MIDDLECENTER);
                    app.preferences.rulerUnits = originalRulerUnits;
    //Here the Error getting not able to increase canvas. How i want to write canvas conditionally
            if(doc.height>doc.width)
                     if (doc.width<cm8 && doc.height>cm5){
                     var originalRulerUnits = app.preferences.rulerUnits;
                    app.preferences.rulerUnits = Units.CM;
                    doc.resizeCanvas(doc.width + 1, doc.height +1, AnchorPosition.MIDDLECENTER);
                    app.preferences.rulerUnits = originalRulerUnits;
    //Here After the canvas depend on width i should run different waterks. Please  suggest to write conditionally
             if (doc.width<cm8 && doc.height>cm5){
            case1 var fileRef = new File(Folder.desktop + "/Watermark/Logo-8pt.png");//Here width or height is in between 8cm - 12cm i want to run 8pt logo.
            case2 var fileRef = new File(Folder.desktop + "/Watermark/Logo-10pt.png");//Here width or height is in between 13cm - 16cm i want to run 10pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-12pt.png");//Here width or height is in between 17cm - 20cm i want to run 12pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-14pt.png");//Here width or height is in between 21cm - 24cm i want to run 14pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-16pt.png");//Here width or height is in between 25cm - 28cm i want to run 16pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-18pt.png");//Here width or height is in between 28.5cm - 30cm i want to run 18pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-20pt.png");//Here width or height is in between 30.5cm - 32cm i want to run 20pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-22pt.png");//Here width or height is in between 32.5cm - 34cm i want to run 22pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-24pt.png");//Here width or height is in between 34.5cm - 36cm i want to run 24pt logo.
                //Here one more thing also i want to wrie if width in beween 12cm to 13cm(Eg., 12.5, 12.8, 12.6, 12.1). See Case1 & 2.
        var sourceDoc = app.open(fileRef); 
        sourceDoc.activeLayer.duplicate (doc);
        sourceDoc.close(SaveOptions.DONOTSAVECHANGES);

    Hi,
    Thanks for the reply
    Used to work on product images. procedure goes like this:
    1. Cut the product
    2. Change colour mode
    3. Make path
    4. Clear background
    5. Trim
    6. Increase canvas(Relative)
    7. Save as tiff
    Here i am getting error in No.6 Step (The canvas should increase Conditionally Depend on image size in Cm's. If Width is more than height it should consider Width.  If height is more than width it should consider height.). i have standards like this much width means this much canvas(relative) should increase. So the standards are mentioned as variable at the start of the script. So i want to write Canvas as conditionally.
    Script goes here:
            var cm3_5 = 3.5;
            var cm5 = 5;
            var cm8 = 8;
            var cm12 = 12;
            var cm13 = 13;
            var cm16 = 16;
            var cm17 = 17;
            var cm20 = 20;
            var cm21 = 21;
            var cm24 = 24;
            var cm25 = 25;
            var cm28 = 28;
            var cm28_5 = 28.5;
            var cm30 = 30;
            var cm30_5 = 30.5;
            var cm32 = 32;
            var cm32_5 = 32.5;
            var cm34 = 34;
            var cm34_5 = 34.5;
            var cm36 = 36;
                    var doc=app.activeDocument;
                    var originalRulerUnits = app.preferences.rulerUnits;
                    app.preferences.rulerUnits = Units.CM;
                if(doc.width>doc.height)
                     if (doc.width<cm3_5){
                    doc.resizeCanvas(doc.width + 0.5, doc.height +0.5, AnchorPosition.MIDDLECENTER);
                    }else  if (doc.width<cm5){
                    doc.resizeCanvas(doc.width + 0.75, doc.height +0.75, AnchorPosition.MIDDLECENTER);
                    }else  if (doc.width<cm8 && doc.width>cm4){
                    doc.resizeCanvas(doc.width + 1, doc.height +1, AnchorPosition.MIDDLECENTER);
                    }else  if (doc.width<cm12 && doc.width>cm8){
                    doc.resizeCanvas(doc.width + 1.5, doc.height +1.5, AnchorPosition.MIDDLECENTER);
                    }else  if (doc.width<cm20 && doc.width>cm17){
                    doc.resizeCanvas(doc.width + 2, doc.height +2, AnchorPosition.MIDDLECENTER);
                    if (doc.width<cm24 && doc.width>cm20){
                    doc.resizeCanvas(doc.width + 3, doc.height +3, AnchorPosition.MIDDLECENTER);
    //Here the Error getting not able to increase canvas. How i want to write canvas conditionally
            if(doc.height>doc.width)
                     if (doc.width<cm8 && doc.height>cm5){
                    doc.resizeCanvas(doc.width + 1, doc.height +1, AnchorPosition.MIDDLECENTER);
    //End of canvas
    doc.changeMode(ChangeMode.RGB);
    //Here again i want to put watermarks depend on size again (If Width is more than height it should consider Width.  If height is more than width it should consider height.). So i need to write here also conditionally
    add watermarks kindly suggest. How to write.
    //Here After the canvas depend on width i should run different watermarks. Please  suggest to write conditionally
             if (doc.width<cm8 && doc.height>cm5){
            case1 var fileRef = new File(Folder.desktop + "/Watermark/Logo-8pt.png");//Here width or height is in between 8cm - 12cm i want to run 8pt logo.
            case2 var fileRef = new File(Folder.desktop + "/Watermark/Logo-10pt.png");//Here width or height is in between 13cm - 16cm i want to run 10pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-12pt.png");//Here width or height is in between 17cm - 20cm i want to run 12pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-14pt.png");//Here width or height is in between 21cm - 24cm i want to run 14pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-16pt.png");//Here width or height is in between 25cm - 28cm i want to run 16pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-18pt.png");//Here width or height is in between 28.5cm - 30cm i want to run 18pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-20pt.png");//Here width or height is in between 30.5cm - 32cm i want to run 20pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-22pt.png");//Here width or height is in between 32.5cm - 34cm i want to run 22pt logo.
                var fileRef = new File(Folder.desktop + "/Watermark/Logo-24pt.png");//Here width or height is in between 34.5cm - 36cm i want to run 24pt logo.
                //Here one more thing also i want to wrie if width in beween 12cm to 13cm(Eg., 12.5, 12.8, 12.6, 12.1). See Case1 & 2.
        var sourceDoc = app.open(fileRef);
        sourceDoc.activeLayer.duplicate (doc);
        sourceDoc.close(SaveOptions.DONOTSAVECHANGES);
    I hope i explained my problems clearly.
    Thanks in Advance,
    Regards,
    Suresh

  • Question about image size, canvas size and Picture frame

    Hi,
    This has always been a little confusing so let me describe what my question is:
    Assume I have a created a new PSD that is 8 1/2 x 11.
    The canvas size is the same 8 1/2 x 11.
    I want to put a border around the picture (say 1/2 of an inch all around), and put the finished picture in a Picture frame.  After it is in the frame, you would be able to see the entire picture plus the border.
    Q.  Should I change (reduce image size) of the PSD to (for this example), 8 x 10 1/2.      Then increase the canvas size to 8 1/2 x 11.  After I increased the canvas size, do a  Paint Bucket fill with white (to create the White border)?  then print the changed size PSD on 8 1/2 x 11 paper so that it will fit into a 8 1/2 x 11 picture frame
    I realize I could have just created the new PSD to be 8 x 10 1/2 in the first place.
    Hope I made this somewhat clear.
    Bob

    1: Decrease the size as you describe.
    2. Go to File>New or Ctrl N
    3. Make the box 8.5x11. Make sure the other data conforms to your image.
    4. Now,holding down Ctrl-Shift, Drag the image to the new box and release the mouse. Your image will be centered in the box.
    Note: there may be a method to do this including any adjustment layers, but I usually only do this as a last step, flattening a copy of the working file.

  • Increasing canvas size from all sides

    Hello to all,
    i wants to increase my fla canvas size from all sides... when
    we increase the size of a file it increases from right and bottom ,
    i want to make it from all four sides like photoshop ... is there
    any way to do this.
    Thanks in advance

    The Nish Adeel,
    > i wants to increase my fla canvas size from all sides...
    when we
    > increase the size of a file it increases from right and
    bottom , i
    > want to make it from all four sides like photoshop ...
    is there any
    > way to do this.
    There is a way to do this; unfortunately, it's not an
    automatic feature
    like in Photoshop. The approach you'll need to take is to
    update the
    document dimensions (basically, the canvas size) as desired,
    then use the
    Edit Multiple Frames button on the lower left of the Timeline
    panel to
    manually move all assets on the main timeline. To do this,
    you'll have to
    make sure all layers are unlocked. To do this quickly, click
    the
    Lock/Unlock All Layers button at the top, between the eye and
    the square
    buttons, until you see that all locks have been removed (one
    or two clicks
    will do it). In the Modify Onion Markers button next to the
    Edit Multiple
    Frames button, choose Onion All. Select Edit > Select All,
    then use the
    arrow buttons to move your assets.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • Choose canvas size and CS5 freezes ( after Os-X update ?)

    Since yesterday Photoshop freezes when I hit Canvas size ( almost all menu's are greyed out, and only palets are activated )
    Recently I did a mac os update..(10.6.8 ) Is this the reason??
    I did the latest Adobe update 12.0.4 x64
    thanks for any help!

    Thank you for your answer Chris , I know what you mean; In this case this is not the issue:
    ESC. or Ctrl-. or nothing works; just re-start PS. brings things alive again.
    I have not installed any photoshop plug ins recently
    cheers
    Jos.

  • HT4528 The screen when accessing text msg or trying to type increases in size and I can't see the entire keyboard, also a problem in the basic screen the icons get huge, almost like the ipad screen size. How do I correct?

    Sometimes when using the text screen, the font for the keyboard increases in size limiting the view of the entire keyboard on the screen. So far the only way to correct is to poweroff the iphone and the poweron aqgain and the problem ius corrected. This also happens on the basic screen, the size of the icons are enlarged, to a size that you can only see one or two icons or parts of them.

    Try going to Settings>General>Accessibility>Zoom to be sure it's off.  If the screen is already magnified, double-tap the screen with three fingers to zoom out.

  • Increased logfile size and now get cannot allocate new log

    Because we were archiving up to 6 and 7 times per minute, I increased our logfiles from size from 13M to 150M. I also increased the number of groups from 3 to 5.
    Because we want to ensure recoverability within a certain timeframe, I also have a script that runs every 15 minutes and issues 2 commands: ALTER SYSTEM SWITCH LOGFILE; and ALTER SYSTEM CHECKPOINT;
    I am now seeing in my alert.log file the following, almost every time we do a log switch.
    Thread 1 cannot allocate new log, sequence 12380
    Private strand flush not complete
    No other changes have been made to the database.
    Why would this now be doing this?
    Should I not be doing both the ALTER SYSTEM SWITCH LOGFILE and the ALTER SYSTEM CHECKPOINT?
    Is there something else I should be looking at?
    Any suggestions/answers would be greatly appreciated.
    Db version: 11.1.0.7
    OS: OEL 5.5

    Set the FAST_START_MTTR_TARGET parameter to the instance recovery time in seconds that you want...
    ALTER SYSTEM SET LOG_ARCHIVE_MAX_PROCESSES=upto 10; this will make sure that the redo logs are copied faster....
    The sizing redo log files can influence performance because DBWR, LGWR and ARCH are all working during high DML periods.
    A too small online redo log file size can cause slowdowns from excessive DBWR and checkpointing behavior. A high checkpointing frequency and the "log file switch (checkpoint incomplete) can also cause slowdowns.
    Add additional log writer processes (LGWR).
    Ensure that the archived redo log filesystem resides on a separate physical disk spindle.
    Put the archived redo log filesystem on super-fast solid-state disks.

  • How to increase the size and the number of log files

    OS Win2000 BD version Oracle8.0.5
    When i Execute a big Transaction, for example: Insert into a table with 100,000 records,
    Oracle tell me that archive log require,
    but I write log_archive_start =true in init.ora;
    I think Maybe the size of log file too small?
    Any other suggestion?
    Thanks

    Hello Long Guohui,
    If your Database is running in Archive Log mode and if the Automatic Archiving is not enable then obviously Oracle
    will ask that "Archive Log Required".
    But if your Database is running with NoArchive Log mode then Oracle should never ask you that "Archive Log Required".
    If your Database is running with Archive Log Mode then Oracle always recommends that the Tablespace where
    you are going to Insert the 1,00,000 records, make that Tablespace Mode from Logging to Nologging, so that
    Archive will not be generated for those entries because Redo does not Generate for that Tablespace as it is
    Running in Nologging mode. If Redo generates for those 1,00,000 entries then it may affect the other DML
    executing in you Database. So it is always recommended to do like this. But after the Insertion is done
    successfully Oracle recommends immediately takes the Back of that Tablespace where you have just
    Inserted 1,00,000 Data.
    For making a Tablespace Nologging:
    ALTER TABLESPACE <TABLESPACE NAME> NOLOGGING;
    For Making a Database from NoArchive to Archive:
    1)     SHUTDOWN IMMEDIATE
    2)     IN THE init<sid>.ora FILE SET THE FOLLOWING PARAMETER WITH VALUE:
    LOG_ARCHIVE_START = TRUE
    3)     STARTUP MOUNT
    4)     ALTER DATABASE ARCHIVE LOG
    5)     ALTER DATABASE OPEN

  • Can I increase menu sizes and fonts without lowering my resolution?

    This is my first desktop Mac ever and its a huge shock to have the menus and fonts so small. I thought my having a large 27" display that its going to be easy to see everything. 
    At the same time I do not want to lower my resolution as i feel it defeats the purpose and I am also a photographer that needs to have the best resolution.  I am okay with hitting comm+ to make applications bigger but the menu bars and applications I use tend to be much smaller than Im used to. Even a word doc on Pages opens up extremely small to where nobody can read it. I am 32 with perfect vision and its making hard to read.
    Im just wondering and hoping that there is something I can adjust and since Im new to Mac dont realize yet.  If not, than thats pretty disappointing and will start to wonder if i should have bought something else
    I am open to downloading 3rd party stuff if it makes it do what I want it to.
    Thank you!

    Thanks for your suggestions Paul_31 and Strawb268 which, I agree does make a difference to the menu text size but at reduction of screen definition and clarity which is, after all, one of the main reasons I bought the iMac in the first place.
    I've read elsewhere since making the initial post that the Apple engineers don't like a larger font.  Maybe when they get a bit older they will wish they had made that option available!
    I really hope that an option for changing the fonts in menus is included in a future upgrade of Mavericks.  I really don't want to have to go back to a Windows PC to resolve such a simple issue.

  • Update to FF 23 changed resolution from 1600x900 to 1280x720, increased window size, and made text big and images and videos blurry

    After upgrading to ff 23 from ff21 on my Windows 8 ultrabook laptop, the browser window blew up to fill the entire screen. Web pages stopped displaying properly - text is big, but images are blurry, including those on the ff toolbar, and videos are pixelated and unviewable.
    I tried the layout.css.devPixelsPerPx fix - it didn't work. The text became unreadably small instead.
    I noticed that javascript window resolution in Firefox 23 is showing a resolution of 1280x720 instead of the 1600x900 that it should be. How do I get FF 23 to display in 1600x900 resolution?

    Yes, the screen.width and screen.height are adjusted for the device pixel ratio based on your zoom level. (Demo page: [http://dev.jeffersonscher.com/resolution.html])
    It sounds as though your Firefox 23 is picking up a Windows setting of 125% zoom. If you change layout.css.devPixelsPerPx to 1.0, Firefox should display at your display's native resolution instead of your Windows resolution (100% instead of 125%). This will indeed make the text in the toolbar area a lot smaller, but the content area should look the same as Firefox 21. Does it look a lot different? How much zoom (e.g., Ctrl+) is needed to make it look like you remember?
    Meanwhile, you can use this extension to adjust the toolbar area if you stick with the 1.0 setting: [https://addons.mozilla.org/en-us/firefox/addon/theme-font-size-changer/ Theme Font & Size Changer]. Clicking its icon and changing the font size from "Normal" to 14 or 15 usually works pretty well. Once you re done with your adjustments, you can use the Customize feature to take its icon off the toolbar. ([[Customize Firefox controls, buttons and toolbars]])

  • IPhone 4s - Need to increase font size and add dashes to Phone Contact Details and Recents

    I am in my 40s and need reading glasses.  I can't read the Phone>Contacts details/numbers because the font is too small and there are no dashes between numbers.  Same applies to Phone>Recents but there are dashes that make the numbers more readible.  3rd party apps such as Big Names, Big Contacts don't apear to be maintained to work with new IOS releases.  Changing fonts in Accessbility doesn't alter the fonts in Contact details nor Recents.  Zoom is inconsistant and inconvient.
    This should be a simple fix for Apple or a 3rd party app that will help retain middle aged iPhone users and attract new users.  No one want to use there reading glasses to read their phone.  Andriod makes font selection a snap.
    Thoughs or adivce?
    Thanks...
    Neil

    Settings>General>Accessibility>Zoom. Turn it on. That or try bifocals (I've had to wear bifocals since I was in my mid 30's) or consider monovision contacts or lasik.

  • In I Photo using edit the selected photo is not increased in size and I get a black box around the ! displayed. Whats up with this?

    :

    What version of iPhoto?  I'll ask a moderator move your topic to the iPhoto forum that fits your version.

  • Graph canvas size problem - missing rows

    Hi all,
    we have a simple horizontal bar graph based on a view, with just one total value pr. company showing.
    Problem is, if we set the canvas size too a small value, e.g. 400x400, then instead of resizing bars down so that all rows are shown, the graph starts to omit rows at the end!
    Even when enabling "Zoom and Scroll", we're still missing those rows.
    Only way to make sure all rows are displayed is to increase canvas size to a large enough value. Problem is, the number of rows is dynamic - so "big enough" might change over time....
    Is this a bug in the OBIEE graph component, or are we missing something here?
    Regards,
    -Haakon-

    hi,
    can anybody give me a hand.i'm in urgent!
    my request is how to display line graph according to the table rows.
    for example:in the table,i have 100 records(values),then the table range size is 10,so,each time when i scroll down the table,then graph will oso change to the another 10 records(values).
    while,i m adding the graph using jheadstart(10g).
    thank you very much.

Maybe you are looking for

  • Import statement problem

    I am getting this error message: Generated servlet error: C:\Program Files\Apache Software Foundation\Tomcat 5.0\work\Catalina\localhost\_\org\apache\jsp\OBJAVA\WEB\a100_jsp.java:8: package MakePosting does not exist import MakePosting.*; Where do I

  • How do  download to computer from wish list

    I want to download from my wish list to my computer. Can't find a button that says purchase.

  • IPhone 6 Plus 16gb

    Is it suppose to be like that when I checked my status of my order today now it's showing the order # and a blank tracking number? It's not showing "we have recieved your order and is in the process" anymore. I'm glad that it updated but does this me

  • Jdev 11.1.1.0.1 local weblogic server error.

    After migrating Jdev 11.1.1.0.1 following error occurs unexpectedly sometime in local web logic server. How can we solve this problem. Thanks. Root cause of ServletException. javax.faces.el.EvaluationException: java.lang.OutOfMemoryError: PermGen spa

  • I can t sink movies in my ipod classic

    Hello , I can t download a movie that I v just bought in  my ipod classic 160 Gb. I have a lot of space available but my computer screen say that I can t download a movie in my ipod. Can you help ? thanks.