Using same image twice

I want to use the same image twice, one in colour, the other black and white. But when I use the monochrome mixer, both images in the book turn to b/w. Do I have to import two separate images?

Using the right click menu (or shortcut key) duplicate the version - using the top stack menu extract item from the stack, make it b+w, drag it to the book and viola.
RB

Similar Messages

  • Use same table twice in subform

    Hi,
    i´ve created a form like this
    subformA   -> positioned
    --subformB -> flowed
    table
    header
    body row
    Everything is working fine and a I´m able to see the expected data.
    But when my table includes more than 10 rows it destroys the layout of my page.
    My idea:
    Create a second subform with same table data and place it right beside it. And using FormCalc to show data from row 11 to end.
    But only the first subform is filled. There is no data in second subform (FormCalc code is not implemented).
    It seems, that I can´t use same tabele twice.
    Any ideas?
    Regards
    Andy

    Hi Andy,
    Have both the subforms as flowed and page breaked, it should work.
    As per as having 2 tables techically i believe its not possible.reason behind.
    When you do data binding for 1st table and say multiple rows, at runtime data is iterated and displayed in the 1st table.
    when it reaches to the 2nd table the pointer on the table data source is already eof i.e., last record so it will not display it again.
    to acheive this on form load of the 2nd table you need to initialize and iterate through the data source again.
    I have never tested this scenario but read it in some adobe fourms.
    Check it and let me know, if its still not working i can design a sample form with this scenario for you.
    Cheers,
    Sai

  • Cost of using subquery vs using same table twice in query

    Hi all,
    In a current project, I was asked by my supervisor what is the cost difference between the following two methods. First method is using a subquery to get the name field from table2. A subquery is needed because it requires the field sa_id from table1. The second method is using table2 again under a different alias to obtain table2.name. The two table2 are not self-joined. The outcome of these two queries are the same.
    Using subquery:
    select a.sa_id R1, b.other_field R2,
    (select b.name from b
    where b.b_id = a.sa_id) R3
    from table1 a, table2 b
    where ...Using same table twice (table2 under 2 different aliases)
    select a.sa_id R1, b.other_field R2, c.name R3
    from table1 a, table2 b, table2 c
    where
    c.b_id = a.sa_id,
    and ....Can anyone tell me which version is better and why? (or under what circumstances, which version is better). And what are the costs involved? Many thanks.

    pl/sql novice wrote:
    Hi all,
    In a current project, I was asked by my supervisor what is the cost difference between the following two methods. First method is using a subquery to get the name field from table2. A subquery is needed because it requires the field sa_id from table1. The second method is using table2 again under a different alias to obtain table2.name. The two table2 are not self-joined. The outcome of these two queries are the same.
    Using subquery:
    Using same table twice (table2 under 2 different aliases)
    Can anyone tell me which version is better and why? (or under what circumstances, which version is better). And what are the costs involved? Many thanks.In theory, if you use the scalar "subquery" approach, the correlated subquery needs to be executed for each row of your result set. Depending on how efficient the subquery is performed this could require significant resources, since you have that recursive SQL that needs to be executed for each row.
    The "join" approach needs to read the table only twice, may be it can even use an indexed access path. So in theory the join approach should perform better in most cases.
    Now the Oracle runtime engine (since Version 8) introduces a feature called "filter optimization" that also applies to correlated scalar subqueries. Basically it works like an in-memory hash table that caches the (hashed) input values to the (deterministic) correlated subquery and the corresponding output values. The number of entries of the hash table is fixed until 9i (256 entries) whereas in 10g it is controlled by a internal parameter that determines the size of the table (and therefore can hold different number of entries depending on the size of each element).
    If the input value of the next row corresponds to the input value of the previous row then this optimization returns immediately the corresponding output value without any further action. If the input value can be found in the hash table, the corresponding output value is returned, otherwise execute the query and keep the result combination and eventually attempt to store this new combination in the hash table, but if a hash collision occurs the combination will be discarded.
    So the effectiveness of this clever optimization largely depends on three different factors: The order of the input values (because as long as the input value doesn't change the corresponding output value will be returned immediately without any further action required), the number of distinct input values and finally the rate of hash collisions that might occur when attempting to store a combination in the in-memory hash table.
    In summary unfortunately you can't really tell how good this optimization is going to work at runtime and therefore can't be properly reflected in the execution plan.
    You need to test both approaches individually because in the optimal case the optimization of the scalar subquery will be superior to the join approach, but it could also well be the other around, depending on the factors mentioned.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Upgrading to Mountain Lion using free upgrade, download froze halfway, tried again and unable to use same code twice. Please help?

    Upgrading to Mountain Lion using free upgrade, download froze halfway, tried again and unable to use same code twice. Is there a way I can get a new code without having to submit other information (scan/photo of proof of purchase)?

    Open the App Store and navigate to the Purchases tab. You should see Mountain Lion there. You can click there to restart the download.

  • Use same image column twice in a report

    Hello,
    I have a question  which is, can I use a same image column (example column A) twice in a report? first occurrence (column A) will show the image thumbnail and the second occurrence (column A) will show  image download link which opens image in a new window. Is it possible?
    Thanks
    Pravish

    LA-APEX-DEv wrote:
    Yes, it's possible. However, if you intent to have two different images, then I would suggest you use a javascript to link or download the blob.
    What on Earth for? Why is JavaScript necessary to download two different images? Even if this were in any way true, the OP is clear that the displayed thumbnail and download link involve the same image.
    To accomplish this task, you either use decode or create a union query.
    No, all that should be necessary is to reference the image column twice in the report query projection, and apply a download format mask to one column and an image mask to the other. That the OP has apparently failed to do this probably indicates that they are unnecessarily complicating things.
    For example:
    select '<a href="javascript:downloadImg(' || image_id || ');"><img src="/i/download.gif"></a>' link_col
    from table
    where allow_view = 'Y'
    union all
    select '<img src="/i/folder.gif">' link_col
    from table
    where allow_view = 'N'
    or
    select decode(allow_view,'Y',
              '<a href="javascript:downloadImg(' || image_id || ');"><img src="/i/download.gif"></a>',
              '<img src="/i/folder.gif">') link_col
    from table
    What is downloadImg? it is not a standard APEX JavaScript API. It is therefore highly unlikely that this is of any use to the OP.

  • Lack of detail in Preview vs. GIMP using same image file.

    Originally posted at usenet group: comp.graphics.apps.gimp
    I am in the process of working on an image using GIMP's propietary
    format, XCF. The image in question is approx. 6200x3200 px in size, at
    a resolution of 72x72 dpi, RGB, True Color, 24-bit. The problem is
    that when I export it to a more portable format, the image loses
    clarity. I've uploaded an image to Photobucket demonstrating this.
    This image consists of three windows, each displaying the same portion
    of the piece I'm trying to export. The window top-left indicates the
    original XCF format image at 100%, displaying in GIMP; the top-right
    image is the same image at 100% exported to TIFF format (with no
    compression), displaying in GIMP; the centre image is the latter TIFF
    image, displayed in Preview.app, zoomed as close as possible to the
    same degree as the GIMP images above - though in reality just a touch
    larger, more like 110%. As is clear, the centre image is far less
    detailed. <edit: I made this image forgetting that you can use "Use Actual Size" to view it. Nevertheless, when viewed at actual size the image is substantially smaller and less detailed.>
    Could this be partly/altogether because i configured/calibrated
    GIMP's display preferences to more accurately reflect my LCD screen's
    resolution? in GIMP->Display Preferences, I manually set my monitor
    resolution to 106x106dpi. However, the monitor resolution reported by
    the windowing system, according to GIMP Display Prefs, is 75x75dpi.
    I have tried saving as PNG without the resolution data, but the result is identical.
    Can someone please explain this to me? Or, at the very least, suggest
    a work-around? Is this, in actual fact, a problem with Preview.app or
    my Quartz Extreme rendering?
    I hope someone can help with this.
    Thanks,
    SiR G.

    >I wish the developers could give us a switch to defeat this. PS displays, or at least hints at, sharpening when zoomed out.
    They are quite set against it so I doubt it. Photoshop is really lying to you in many different ways when you judge sharpness at zoomed out levels. Of course, the only reason you see it in Photoshop is that it is a pixel editor. If you have rendered 1:1 previews, in Lightroom, you always see the effect of sharpening in the Library module when zoomed out as it is rendered from the preview image. In fact what you see there is the same when in Photoshop at power of two zoom levels (25%, 50%, etc.). So it is there, they just don't show it in Develop when you are zoomed out, where it would not tell you anything anyway.

  • Using same cell twice in one formula

    Example: (B2+B3)*(B2/B4)
    If I want to use B2 twice in the same formula, numbers does not accept the second entry of B2. Any solution to this irritating problem?

    Geert,
    If you are clicking on cells to enter them as references in an expression, you must hold down the Command (Apple) key if you want to enter (click on) the same cell a second time in the same expression. Of course you are always able to type the reference into the Formula Bar entry area as many times as you wish without any special gestures.
    Jerry

  • Using Same Photo Twice (iLife 11 Photobook)

    Hi,
    I was making a Photobook using iLife '11. I had the photos selected and used one for the cover picture. I went to use the photo again later in the book but was unable to. Has anyone else experienced this and if so, any solutions ??
    Thanks

    No - I have done it in previous versions and it works just fine
    And I just did it in '11 with no problem - how are you trying to do it and what happens?
    I picked a blank page and double clicked on it to open it and drug the cover photo form the photos sidebar to a spot on that page and now the cover and that page have the same photo on it.
    LN

  • Using same photo twice in book w/ iPhoto6

    I want to use a photo on the cover that I have used inside my book. Is there a way to do this without making a duplicate and therefore importing a copy into my Library? Seems that I saw that there was an easy way to do this at some point.

    No. You'll have to make a duplicate. That was changed in iPhoto 7.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • How do I use the same photo twice in a slideshow created in iPhoto'11?

    I created a slideshow in iPhoto'11 and would like to use the first slide also as the last slide.
    How can I use the same photo twice?

    Seems you have to duplicate the photo in your Library to add the same picture twice.

  • Can I use the same SSI twice in same page?

    Hey all,
    i'm having a problem whereby several SSI's are not showing on my page.
    I'm wondering if it's because the instances that are not showing are the ones called the second time round.
    Before i start posting code etc, i just wondered if it was actually not possible to call the same SSi more than one time on a page.
    I can't seem to find documentation stating this anywhere.
    Thanks in advance,
    Katrina
    Edit 1: I tested using a new unique SSI (i.e. one that wasn't called anywhere else on teh page, and it doesn't show either... so I've started a new thread where i post my code here: http://forums.adobe.com/message/5345250#5345250
    Edit 2: I guess i didn't test properly initially. It seems it is NOT possible to use the same SSI twice on a page...   What a bummer!!!

    This issue was resolved in a different thread where s member supplied the following information...
    t's certainly possible depending on the PHP command which you use as the include directive.
    <?php require_once('includes/include-address.php'); ?> will only include the file once
    <?php require('includes/include-address.php'); ?>  will include the file more than once
    <?php include('includes/include-address.php'); ?>  will include the file more than once
    Each has its own rules and quirks.
    http://php.net/manual/en/function.require-once.php
    http://www.php.net/manual/en/function.include.php
    http://www.w3schools.com/php/php_includes.asp

  • How do I make a 20 X 30 print with layers of 16 X 20, 12 X 18, 11 X 14, 8 X 12, 8 X 10, 5 X 7 and 4 X 6 of the same image to display the different sizes available to someone?  Using Elements 13 with Windows 8.1

    How do I make a 20 X 30 print with layers of 16 X 20, 12 X 18, 11 X 14, 8 X 12, 8 X 10, 5 X 7 and 4 X 6 of the same image to display the different sizes available to someone?  Using Elements 13 with Windows 8.1
    A senior citizen needs some help.
    Thanks

    Saving each image as different size - is it an option for you?  I would save images with their name as: 20x30.png, 16x20.png etc etc.
    Or explain whether you want these in a webpage  in which case only one image is necessary and different sizes are displayed with good CSS code.  this is question for Dreamweaver forum if this is what you want.

  • How to use same taskFlow with inputparam twice on page

    Hi,
    I have 2 taskFlows (Task1, Task2) with imputParams and CallMethod default activity.
    Tsak1 is form, task2 is table.
    I need to use Taskflow 1 twice on same page.
    TaskFlow1(without param)-taskFlow2(get param from taskflow1)-TaskFlow1(get param from taskFlow2).
    Based on this example [http://andrejusb.blogspot.com/2010/04/communicating-between-adf-regions.html]
    If shared data control is checked - taskFlow1's refresh both like copy.
    If unchecked - region's doesn't refresh and taskFlow2 can't use inputParam like #{data.taskFlowTest_view_view3PageDef.Oid.inputValue} (because i have 2 same taskFlow with this param).
    Can I use one taskFlow for this and how?

    For the Taskflow, set the data control scope for the task flow to "isolated" change the behavior.
    Thanks,
    Navaneeth

  • Using slideshow function yield very fuzzy/soft focus show.  Same images in MS slideshow are sharp.

    When I view a selection of images using the slideshow function in Bridge, (CS6) it significantly softens the focus of every image.  If I view the same images in the MS slideshow viewer, the images, same screen size, of possibly even slightly larger, are very sharp.  Why the problem?  Typically I am working with 3-8 MB files.

    Thanks for your reply and for the link. However, the link addresses the problem for TV appearance while mine was concerned about the playback on my iMac.
    When I burned other DVDs from Keynote, there was no "blurring or fuzziness" with photos or text on playback with my iMac or TV!
    Also, the playback was automatic when the disk was inserted. When the latest one was inserted, the disk icon etc had to be clicked for it to run after which full screen had to be selected as well.
    I do not want to make a DVD from iDVD - just one that will run the slideshow.
    Any other suggestions on burning would be appreciated.
    Vernon

  • Can I use the same scrollpane twice in my project?

    I am creating a project that has 3 scenes. 1 scene has a movieclip. Inside the movieclip, I have a scrollpane that generates dynamic text called welcome_scroll. The file runs fine when I test it displaying the scrollpane window and loading the text. However, I need to use the same scrollpane with the same dynamic text in Scene 2 titled Home in the main timeline. So I copied and pasted the scrollpane into scene 2's main timeline. When I test it, Scene 1 runs fine, but Scene 2 only displays the scrollpane with no text. Plus I get an error message:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Maritime_splashpage_01_fla::MainTimeline/__setProp___id1__home_scrollpane_0()
    at Maritime_splashpage_01_fla::MainTimeline/frame1()
    Error #2044: Unhandled ioError:. text=Error #2035: URL Not Found. URL: file:///C|/Documents%20and%20Settings/username/Desktop/welcome_scroll
    I tried once test. I decided to delete the scrollpane in Scene 1's movieclip thinking that using the scrollpane twice was the problem. But that did not work. Scene 2 stills gives me an error message with just scrollpane and no text.
    I was also thinking of duplicating the scrollpane in the library with a different name but not sure if that is efficient or the solution. If that is the case, would I have to duplicate the the dynamic text movieclip in addition changing the actionscript to reflect the changes?
    It's just a headache for me thinking Flash would be efficient in allowing you to reuse the scrollpane with the same dynamic elsewhere in my project.

    Below is the only code that I had to create which is basically variables for the textfield's point size and fonts to use that I embedded into the library for runtime. The way I was able to get the scrollpane to load the movieclip is by first creating a movieclip, drawing a textfield, naming the textfield instance called welcomeField, creating the actionscript in frame 1 of the movieclip (which you will see below), then setting up the properties of the movieclip by checking Export for Actionscript and Export in frame 1. The class and base class automatically created the names. I copied the class name and entered that into the source field of the component inspector of the scrollpane. That was it.
    var myFont1:Font = new Font6();
    var myFormat1:TextFormat = new TextFormat();
    myFormat1.font = myFont1.fontName;
    myFormat1.size = 15;
    var welcomeField:TextField;
    welcomeField.autoSize = TextFieldAutoSize.LEFT;
    welcomeField.defaultTextFormat = myFormat1;
    welcomeField.embedFonts = true;
    welcomeField.antiAliasType = AntiAliasType.ADVANCED;
    welcomeField.text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam et viverra sapien. Quisque lacinia velit in diam tempor at aliquam nisi tincidunt. Maecenas ut libero enim, eget viverra ligula. Suspendisse potenti. Quisque ut enim lobortis tortor pulvinar lobortis sed lacinia turpis. Nunc quis eros nunc. Curabitur quis tortor neque, in suscipit libero. Duis sit amet nisl lectus, eleifend imperdiet ligula. Integer vestibulum blandit nisi ut tincidunt. Praesent sapien magna, vestibulum sit amet pellentesque a, auctor vitae tellus. Sed dignissim neque non dolor malesuada volutpat. In hac habitasse platea dictumst. Pellentesque pulvinar imperdiet facilisis. Aenean tincidunt magna in turpis euismod ac imperdiet lectus luctus. Sed aliquam semper urna vel ultricies. Proin posuere lacinia ligula vel tincidunt. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eu velit ac ante euismod elementum.\n\nAliquam erat volutpat. Praesent a dolor a leo imperdiet ultricies. Maecenas rutrum varius mi nec bibendum. Proin in leo quam, in mollis quam. In laoreet, lacus sed elementum volutpat, velit elit condimentum lorem, faucibus hendrerit est ante id metus. Morbi sed purus ac felis laoreet rhoncus. Donec a felis vitae ligula pharetra vestibulum. Vivamus vehicula aliquet mauris ut posuere. Aenean eget lacus est. Donec lacinia mi vel tellus blandit luctus ac id lectus. Vivamus pharetra felis ac massa cursus hendrerit. Nulla elementum sagittis turpis in laoreet. Nunc tempor felis ut est fringilla cursus. Praesent in rhoncus velit. Aliquam fringilla felis non tortor auctor sit amet euismod velit dictum. Donec ligula eros, suscipit et egestas eget, ultricies ut dui. Integer et lorem felis, at tincidunt ante. Suspendisse tincidunt ultrices sapien. Nunc nibh elit, varius ut viverra quis, fringilla et sem. Duis nec mattis massa.\n\nVivamus interdum auctor diam, id dignissim risus iaculis convallis. Phasellus ac sagittis elit. Aenean est metus, tincidunt in suscipit ornare, vestibulum at massa. Sed ut enim a orci pharetra adipiscing. Proin quis neque sapien. Sed nec vehicula dolor. Nunc metus urna, adipiscing a euismod pharetra, vehicula eu nibh. Etiam a augue in velit auctor commodo. Nulla dictum tempor faucibus. Nunc porta bibendum ante eget condimentum. Sed in ipsum nec dolor malesuada tristique ac sed lorem. Donec nec tortor lacus, sodales dignissim nisl. Curabitur lacus orci, lacinia in dignissim eu, sodales ac ipsum. Nunc viverra magna at erat molestie non ultrices ipsum faucibus.";

Maybe you are looking for

  • Loading a DLL without JNI

    I'm new to java, but I've been programming for a long time, and I'm looking for a way to load a DLL into java. I see a lot of places online that talk about using JNI, but I'm terrible with C++, so that's not really an option for me. I also see variou

  • IPad 1 gives error message -54 when sync music  it won't sync songs

    It gives error -54 when sync music

  • Can't bring out the video control penal

    When playing the video, the control penal is not displayed. Tried all settings but can't bring it out. Pl. help.

  • DB02 empty space overview

    Hello Experts, We are facing issue after implementing master note for Db correction 1456402 latest version, Db02 is showing zero values. Component level SAP-Basis 731. Data collector not updating the data. Searched SDN and performs all workaround but

  • I can't attach Word file to mail on iCloud

    I want to send my resume to a recruiter, but it does not work. I click on the icon to attach a file (paperclip icon) i wait for a moment but nothing happens, so i don't know if the file is attached or not. My resume is only 57Kb so the file size is n