Insert picture with big DPI

I'm using Crystal Reports for Visual studio 2005 with C#. I need to print some (10-50) drawings 19x10 cm (7.5x4 inch). The drawing creates by my application dynamic and saved in PNG files. For good looking in pictures  DPI set to 600. So my picture become 4488x2362 pixel.
PNG files small (less the 500 kb) , but BMP file 40 MB. When I displaying a report it takes long time, also displaying a next page.
In DataTable I store PNG files as byte[], in section "Details" I inserted BLOB field.
But the biggest trouble is RAM memory, with 10 pictures in report my app become 400 MB size.
I tried during showing display pictures with 96 DPI, and before printing switch pictures, this did not help.
What can I do?

I seem to have another problem with images and Crystal reports.
When I try and print the images the images if they are bigger than the pages size I have tried to re size them keeping the DPI same so that they appear on the page but by default Crsytal reports converst the images into 96 DPI Images.
I am not sure if it does or is there any setting because of which it does.  Since I wan them to retain the DPI I would not want them to change the DPI.
Is anyone aware of how crystal report handles images or any information on the DPI of Images in Crystal reports

Similar Messages

  • Insert Picture with formula?

    Hello,
    Is it possible to have a picture automatically appear when the user types an associated description?
    Here is an example:
    I have a picture of a product. I want that picture to appear in a specific spot when I type in the number "16." I also need the product's list price to appear in a specific cell also.
    How can I do this?

    It's done.
    Here is the script.
    --[SCRIPT billwithpicture]
    Enregistrer le script en tant que Script : billwithpicture.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Sélectionner la cellule où vous souhaitez insérer un code objet.
    aller au menu Scripts , choisir Numbers puis choisir billwithpicture
    Le script vous demandera de saisir le code (ici ce doit être un nombre entier)
    Il extrait le prix et la photo de l'objet correspondant de la table "lookup"
    et insère ces informations dans les cellules requises.
    Le nom de la table et les colonnes prix et photos sont définis
    par trois properties que vous pouvez éditer.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications:AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    Sous 10.6.x,
    aller dans le panneau "Général" du dialogue Préférences de l'Éditeur Applescript
    puis cocher la case "Afficher le menu des scripts dans la barre des menus".
    --=====
    Save the script as a Script: billwithpicture.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Select the cell in which you want to insert an object code.
    go to the Scripts Menu, choose Numbers, then choose "billwithpicture"
    The script will ask you to enter the object code (here it must be an integer)
    From the table "lookup", it extract the price and the picture of the selected object
    then it insert these values in the defined cells.
    The table name as well as the target columns are defined
    by three properties which you may edit.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications:AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2010/04/08
    --=====
    property table_source : "lookup"
    property colonne_prix : 3
    property colonne_image : 5
    property valeurs_numeriques : {}
    --=====
    on run
    my activateGUIscripting()
    my nettoie()
    set {dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
    tell application "Numbers" to tell document dName
    if not (exists table "lookup" of sheet sName) then
    if my parleAnglais() then
    error "The table “" & table_source & "” is unavailable in the sheet “" & sName & "” of the spreadsheet “" & dName & "” !"
    else
    error "La table « " & table_source & " » n’existe pas dans la feuille « " & sName & " » du tableur « " & dName & " » !"
    end if -- parleAnglais
    end if -- not exists…
    end tell
    if my parleAnglais() then
    set Prompt to "Insert an integer item code"
    else
    set Prompt to "Saisir le code d'un objet (nombre entier)"
    end if
    set le_code to my askAnumber(Prompt, 3, "i")
    tell application "Numbers" to tell document dName to tell sheet sName to tell table table_source
    set derniere_ligne to count row
    set my valeurs_numeriques to value of cells 1 thru 2 of rows 1 thru derniere_ligne
    set le_prix to 0.0
    repeat with r from 1 to derniere_ligne
    try
    Useful if the first row is a header with text content
    set maybe to (item 1 of item r of my valeurs_numeriques) as integer
    on error
    set maybe to 0
    end try
    if maybe = le_code then
    set le_prix to item 2 of item r of my valeurs_numeriques
    set selection range to cell r of column 3
    exit repeat
    end if
    end repeat -- with r
    if le_prix is 0.0 then
    my nettoie()
    if my parleAnglais() then
    error "There is no object whose code is “" & le_code & "” !"
    else
    error "Aucun objet ne porte le code « " & le_code & " » !"
    end if
    end if -- le_prix is 0.0…
    end tell -- "Numbers"…
    my raccourci("Numbers", "c", "ca") -- Copy Style
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    tell row rowNum1
    set value of cell colNum1 to le_code
    set value of cell colonne_prix to le_prix
    end tell -- row rownum1
    set selection range to (cell rowNum1 of column colonne_image)
    end tell -- "Numbers"…
    my raccourci("Numbers", "v", "ca") -- Paste Style
    my nettoie()
    end run
    --=====
    on nettoie()
    set my valeurs_numeriques to {}
    end nettoie
    --=====
    set {rowNum1, colNum1, rowNum2, colNum2} to my getCellsAddresses(dname,s_name,t_name,arange)
    on getCellsAddresses(d_Name, s_Name, t_Name, r_Name)
    local two_Names, row_Num1, col_Num1, row_Num2, col_Num2
    tell application "Numbers"
    set d_Name to name of document d_Name (* useful if we passed a number *)
    tell document d_Name
    set s_Name to name of sheet s_Name (* useful if we passed a number *)
    tell sheet s_Name
    set t_Name to name of table t_Name (* useful if we passed a number *)
    end tell -- sheet
    end tell -- document
    end tell -- Numbers
    if r_Name contains ":" then
    set two_Names to my decoupe(r_Name, ":")
    set {row_Num1, col_Num1} to my decipher(d_Name, s_Name, t_Name, item 1 of two_Names)
    if item 2 of two_Names = item 1 of two_Names then
    set {row_Num2, col_Num2} to {row_Num1, col_Num1}
    else
    set {row_Num2, col_Num2} to my decipher(d_Name, s_Name, t_Name, item 2 of two_Names)
    end if
    else
    set {row_Num1, col_Num1} to my decipher(d_Name, s_Name, t_Name, r_Name)
    set {row_Num2, col_Num2} to {row_Num1, col_Num1}
    end if -- r_Name contains…
    return {row_Num1, col_Num1, row_Num2, col_Num2}
    end getCellsAddresses
    --=====
    set { dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
    on getSelParams()
    local r_Name, t_Name, s_Name, d_Name
    set {d_Name, s_Name, t_Name, r_Name} to my getSelection()
    if r_Name is missing value then
    if my parleAnglais() then
    error "No selected cells"
    else
    error "Il n'y a pas de cellule sélectionnée !"
    end if
    end if
    return {d_Name, s_Name, t_Name, r_Name} & my getCellsAddresses(d_Name, s_Name, t_Name, r_Name)
    end getSelParams
    --=====
    set {rowNumber, columnNumber} to my decipher(docName,sheetName,tableName,cellRef)
    apply to named row or named column !
    on decipher(d, s, t, n)
    tell application "Numbers" to tell document d to tell sheet s to tell table t to ¬
    return {address of row of cell n, address of column of cell n}
    end decipher
    --=====
    set { d_Name, s_Name, t_Name, r_Name} to my getSelection()
    on getSelection()
    local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
    tell application "Numbers" to tell document 1
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of tables
    if x > 0 then
    repeat with y from 1 to x
    try
    (selection range of table y) as text
    on error errMsg number errNum
    set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
    return {theDoc, theSheet, theTable, theRange}
    end try
    end repeat -- y
    end if -- x>0
    end tell -- sheet
    end repeat -- i
    end tell -- document
    return {missing value, missing value, missing value, missing value}
    end getSelection
    --=====
    on parleAnglais()
    local z
    try
    tell application "Numbers" to set z to localized string "Cancel"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    on decoupe(t, d)
    local oTIDs, l
    set oTIDs to AppleScript's text item delimiters
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to oTIDs
    return l
    end decoupe
    --=====
    Asks for an entry and checks that it is an floating number
    set myInteger to my askAnumber(Prompt, DefaultValue, "i")
    set myFloating to my askAnumber(Prompt, DefaultValue, "f")
    on askAnumber(lPrompt, lDefault, IorF)
    local lPrompt, lDefault, n
    tell application (path to frontmost application as string)
    if IorF is in {"F", "f"} then
    set n to text returned of (display dialog lPrompt & " (" & (1.2 as text) & ")" default answer lDefault as text)
    try
    set n to n as number (* try to convert the value as an number *)
    return n
    on error
    if my parleAnglais() then
    display alert "The value needs to be a floating number." & return & "Please try again."
    else
    display alert "La valeur saisie doit être un nombre décimal." & return & "Veuillez recommencer."
    end if
    end try
    else
    set n to text returned of (display dialog lPrompt default answer lDefault as text)
    try
    set n to n as integer (* try to convert the value as an integer *)
    return n
    on error
    if my parleAnglais() then
    display alert "The value needs to be an integer." & return & "Please try again."
    else
    display alert "La valeur saisie doit être un nombre entier." & return & "Veuillez recommencer."
    end if
    end try -- 1st attempt
    end if -- IorF…
    end tell -- application
    Here if the first entry was not of the wanted class
    second attempt *)
    tell application (path to frontmost application as string)
    if IorF is in {"F", "f"} then
    set n to text returned of (display dialog lPrompt & " (" & (1.2 as text) & ")" default answer lDefault as text)
    try
    set n to n as number (* try to convert the value as an number *)
    return n
    on error
    end try
    else
    set n to text returned of (display dialog lPrompt default answer lDefault as text)
    try
    set n to n as integer (* try to convert the value as an integer *)
    return n
    on error
    end try -- 1st attempt
    end if -- IorF…
    end tell -- application
    if my parleAnglais() then
    error "The value you entered was not numerical !" & return & "Goodbye !"
    else
    error "La valeur saisie n’est pas numérique !" & return & "Au revoir !"
    end if
    end askAnumber
    --=====
    on activateGUIscripting()
    (* to be sure than GUI scripting will be active *)
    tell application "System Events"
    if not (UI elements enabled) then set (UI elements enabled) to true
    end tell
    end activateGUIscripting
    --=====
    ==== Uses GUIscripting ====
    This handler may be used to 'type' text, invisible characters if the third parameter is an empty string.
    It may be used to 'type' keyboard raccourcis if the third parameter describe the required modifier keys.
    I changed its name « shortcut » to « raccourci » to get rid of a name conflict in Smile.
    on raccourci(a, t, d)
    local k
    tell application a to activate
    tell application "System Events" to tell application process a
    set frontmost to true
    try
    t * 1
    if d is "" then
    key code t
    else if d is "c" then
    key code t using {command down}
    else if d is "a" then
    key code t using {option down}
    else if d is "k" then
    key code t using {control down}
    else if d is "s" then
    key code t using {shift down}
    else if d is in {"ac", "ca"} then
    key code t using {command down, option down}
    else if d is in {"as", "sa"} then
    key code t using {shift down, option down}
    else if d is in {"sc", "cs"} then
    key code t using {command down, shift down}
    else if d is in {"kc", "ck"} then
    key code t using {command down, control down}
    else if d is in {"ks", "sk"} then
    key code t using {shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "k" then
    key code t using {command down, shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "a" then
    key code t using {command down, shift down, option down}
    end if
    on error
    repeat with k in t
    if d is "" then
    keystroke (k as text)
    else if d is "c" then
    keystroke (k as text) using {command down}
    else if d is "a" then
    keystroke k using {option down}
    else if d is "k" then
    keystroke (k as text) using {control down}
    else if d is "s" then
    keystroke k using {shift down}
    else if d is in {"ac", "ca"} then
    keystroke (k as text) using {command down, option down}
    else if d is in {"as", "sa"} then
    keystroke (k as text) using {shift down, option down}
    else if d is in {"sc", "cs"} then
    keystroke (k as text) using {command down, shift down}
    else if d is in {"kc", "ck"} then
    keystroke (k as text) using {command down, control down}
    else if d is in {"ks", "sk"} then
    keystroke (k as text) using {shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "k" then
    keystroke (k as text) using {command down, shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "a" then
    keystroke (k as text) using {command down, shift down, option down}
    end if
    end repeat
    end try
    end tell
    end raccourci
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) samedi 31 juillet 2010 12:15:02

  • How to insert pictures into Excel?

    Hi, all
    I want to insert pictures with hyperlinks into excel files. Could you give me some sample code of this function? The code used abap ole, to insert pictures into excel.  ^ - ^   Thank you very much~~~
                                                                                    Voldemort.

    Hi, I had referred these code before, but it seems I still could not solve my problem...
    I could not understand the line:
    CALL METHOD OF gs_cells 'Select' = select.
    Is it used for insert picture? It does not seems to be...
    And in my program, the SY-SUBRC is 4 after run:
    CALL METHOD OF gs_picture 'Insert'
    EXPORTING
    #1 = 'C:\TEMP\Picture.bmp'.
    Of course my file path is correct, and the picture path is in my own coumputer rather than SAP server. Is that the problem?

  • Perform as pdf form with the ability to insert pictures

    How to perform as pdf form. with the ability to insert pictures?

    You want your users to be able to insert images into a PDF form? That is only possible if they're either using Acrobat, or if they're using the latest version of Reader (XI) and the image is in PDF format.

  • Insert pictures and video

    Hello,
    How can I insert videocuts into a show I recorded myself? I am in the studio, presenting a show and during the presentation I want to show pictures and video to the audience.
    * I wil first record the show in our studio
    * And then I insert pictures and video on certain places in the recorded show.
    Is this possible in Imovie 8 or in one of the older imovies.
    Or must I use finalcut for this?
    Thanks! Richard - The Netherlands

    Hello, Richard,
    I have not used iMovie 8 much, so don't know about doing this in that version, but you can easily do this in iMovie HD 6.
    I am not sure exactly how you want to do this. It depends on whether you want to place those photos and other video clips OVER the recorded show, so that the audio from the recorded show plays while the photos and videos are displayed, or if you want to have them ADDED in the midst of the recorded show.
    If you just want to insert photos and videos in the midst of your recorded show, first import your recorded show into iMovie6. Put it in the timeline. Move the playhead to the point where you want the first photo, and do a 'split video at playhead' command, drag the photos/videos to the time line there. They will be added between the split video clips. Repeat for all the photos/videos.
    It sounds as if the option you want is 'Paste Over at Playhead' which allows the photos and videos you add to be seen over the recorded show, so that the audio plays continually. In tv and movies this is done when someone is talking about something and then there is a 'cut-away' to a photo or video clip of whatever the person is describing so the audience can visualize what he is saying while he is speaking.
    Here are instructions for doing that from iMovie HD6 Help:
    *Inserting video clips or photos in a passage while maintaining running audio*
    +You can paste a new video clip or photo over an existing clip while retaining the audio from the original clip. The video cuts away to a new picture, but you continue to hear the sound from the original clip.+
    +To replace images in a clip while maintaining running audio:+
    +Choose iMovie HD > Preferences, and then click General.+
    +Select the "Extract audio when using Paste Over at Playhead" checkbox.+
    +Select the video or photo that you want to insert.+
    +Choose Edit > Cut or Copy.+
    +Do one of the following:+
    +To paste the entire video you selected in step 3, position the playhead at the first frame to be replaced. When you paste the clip, it will replace a portion of video equal to its length.+
    +To paste over a specific segment of your movie, select the part of the video clip you want to paste over. (To learn more about selecting part of a video clip, see Related Topics below.)+
    +If the video you're pasting is longer than the selected frame range, the excess video will not be pasted. If the video you're pasting is shorter than the selected frame range, the extra space will be filled with a color clip (or the still image, if you paste a still image).+
    +Choose Advanced > "Paste Over at Playhead."+
    +The audio track of the original video is retained and appears in audio track 1 of the timeline viewer.+
    Post back if this does not address what you are trying to do.

  • Inserting pictures into a div in a certain formation. help. thanks!

    I'm new to forums and Dreamweaver cs4 and code... I really could use  some help. I want to put pics where the black boxes are but i cant seem  to get them stacked as they look. I also want to be able to have  words/paragraphs to the left of the four pictures. I tried; insert picts  with padding/floating, tables, seperate divs, create web photo album, i  just cant  get them lined up like that. I'm using dreamweaver cs4 and i  have my layout seperated with divs, so the white body part is a  indidual loating div. Please help. Thanks.
    ps. The "right body" div (white box) is set at like 600w x 400h. I dont want that dimenstion to change.
    thanks again everyone who can help.

    You want something like this??
    http://alt-web.com/TEMPLATES/2-col-fixed-with-floats.shtml
    View source in browser to see the code.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Inserting Pictures in an email

    Can someone help me figure out what the procedure is for getting the second window to come up for inserting a picture into your email.
    I hold my finger down on the screen until the copy paste panel appears with an arrow at the right side which is supposed to take you to the
    second screen where the insert picture is but most of the time it just disappears and you have to keep trying until it finally shows up.

    If you're using Mail on your iPhone, your best bet is to do this:
    Go into your photo stream, or camera roll, by selecting "Photos" from your apps.
    Press "Select" in the upper righthand corner of the screen.
    Tap each picture you want to include in the email, which will place a blue and white checkmark on each photo selected.
    When you've finished selecting the photo(s) you want to email, tap the icon in the lower lefthand corner of your screen, which looks like a box with an up arrow in it.  From the options that come up, choose "Mail" or "Email" (I don't recall offhand which it is).
    This will allow you to create a new email message with the selected photo(s) attached.
    If your'e trying to use a different email application, or email the photos in a different fashion, please provide me with more details so I can try to help you.

  • HT5361 When inserting pictures in a new mail message using the " photo browser" button I can view and select photos but the " choose "  button is gone. What have I done wrong?

    When inserting pictures in a new mail message using the " photo browser" button I can view and select photos but the " choose "  button is gone. What have I done wrong?

    Hi Liz,
    Sorry to hear you are having a similar problem.  Last night I went to the tool bar at the top of iphoto, clicked on "File",  then clicked "Browse Backups" in the drop down menu.    I have an external hard drive that is set up to Time Machine.   The Browse Backups  opened the iphoto pages in the Time Machine.  I selected a date one day ahead of the day I performed the now infamous update, and it showed my iphoto library as it had existed that day.   I then clicked  "Restore Library" at the bottom right corner of the Time Machine screen.   Roughly 2 hours later my iphoto was back to normal.   When I opened iphoto there was a message saying I need to upgrade my program to be compatible with the new version of iphoto(version 9.2.1).  I clicked "Upgrade" and within seconds it had done whatever upgrading it needed to do. 
    The only glitch in the restoration was that it restored the library as it appeared last week, so I no longer had photos I had imported this past weekend.   I simply went back to the Browse Backups in the drop down menu,  when Time Machine opened I selected the page showing my pictures from this weekend and again said to Restore Library.   Roughly 45 minutes later the library was restored including the most recent photos.  
    I am now a happy camper. 
    I don't know if any of this will be of help to you because your email says you are having trouble with photos imported after the upgrade was performed.   Have you had any pop up notices when you first open iphoto,  that tell you you need an upgrade to be compatible with the new iphoto?     If so have you clicked "upgrade"? 
    Good luck Liz,  if you have Time Machine running as a back up to your library, maybe you wil be able to get help there, by following my instructions above.   Otherwise,   good luck with your investigations.   I'd be interested in hearing how you make out.
    Karen

  • Inserting Picture (from Web- through Webdav) to Word document using VSTO code

    Hi,
    I have been trying to insert an image/picture to current selection in word. with help of code -
    Microsoft.Office.Interop.Word.InlineShape s = this.Application.Selection.InlineShapes.AddPicture(
    @"http://127.0.0.1:9001/test/myimage.png", true, true, Type.Missing);
    This code works fine if image is on desktop or network shared location but some issues for URL exposed through Webdav.
    On inserting the picture word shows - "The linked image cannot be displayed....." message. If we close and open word document again then image appears properly.
    Some observations:
    1. If we use same option through Ribbon  "Insert -> Picture -> Enter path and click on "Link to File" then we get Prompt for Wevdav password (Only once, later Word caches it) and linked images appear properly.
    2. Updating the shape explicitly wouldnt help. 
    s.LinkFormat.Update();
    What we are looking for is, Does Ribbon "Insert" functionality do something additional to prompt Webdav authentication to cache? if we want to achieve the same? what needs to be invoked before we make call to AddPicture API?
    Thanks
    H

    Thanks for the response.. 
    No, when document is opened again, then you dont need to enter the password. 
    Somehow on document open event MS word knows how to retreive password from cookie for given domain.
    When you insert the image using ribbon -> insert picture option, 
    MS Word first looks into cache if the domain cokkie already available then bypass authentication/password prompt
    Otherwise it would show the prompt and store the cookie in cache again.
    The mystry is how MS-Word interacts with this "cached cookies"
    while doing more reading on this, it seems MS Word has been using Klink.dll for this kind of functionality https://support.microsoft.com/en-us/kb/899927 but it would be great if you can provide more pointers.
    >>Could you share an image link of Webdav?
    Since, it's my local webdav server, you would not be able to access the image link, may be you can upload an image to sharepoint (as sharepoint also supports webdav) and use that for reproducing this problem at your end.
    Thanks
    H

  • 'insert picture' is not working

    hi
    i'm trying to insert a picture (logo) into report:
    Main menu -> Insert -> Picture... ->
    then i click somewhere in the report and i get browser dialogue where i choose .bmp file. After that a rectangle appears with a line by it's diagonal in my report but no picture at all. what's wrong?
    best regards, Pavel

    Elizabeth Nielsen,
    yes, you understood me right, i did everything as you say.
    but i've solved it!
    the problem is that the bmp file name had cyrillic(russian) characters, i renamed it into latin characters and it's ok now! Seems BO doesn't like russian language
    thanx for reacting.

  • Upload/Insert PDF with Image Manager

    I used to be able to insert a PDF and MP3 file through the Image Manager within the Item Description area but for some time have not been able to. I had asked the question in the old forums to no resolve. I've tried multiple sites from multiple browsers on both Mac and Windows but same issue.
    What I do:
    1.) From within any webpage/web app item description text area, I click on the Image Manager icon (little picture with sun and mtn. in the toolbar above the text area) and the Image Manager opens up.
    2.) Now the Image Manager DOES allow me to upload both PDF and MP3 files onto the server from here (which is good). Then I go to the list and find the file on the server, I'll select the file and then click on "Insert" but the Image Manager just closes and nothing is inserted into the Item Description area.
    This had worked for many years and like I said I can't get it to work in any testing scenerio. Same issue everytime when inserting, nothing gets inserted. The only alternative is manually inserted the href into the HTML but several of my clients have difficulty with this and it used to work before.
    I know it's been stated that the Literature/Media Module is how you handle files but this is way more cumbersome then it should be and the way I and my clients used to do it through the Image Manager worked great. Any help or clarification would be great. I can't even find if this is a feature done away with. Thank you for the help.

    Tersieff,
    I know you mentioned it had worked for your over the years. However I would recommend using the either the file manager or better the media downloads to upload and manage your media files. I see that it would come in handy to be able to select the file through the image manager, but I don't think it's working for media files other than images. Using the media downloads you will be able to provide a download link to this file, the downside is that you will have to manually enter the module for each media download within the item description.
    Nicole Windham | http://bcgurus.com/Business-Catalyst-Templates for only $7

  • Contribute CS4 +Blogger and inserting pictures

    I'm not fluent in Contribute, but I used to be able to insert
    pictures when I published to Blogger. I checked my connection,
    etc., and everything works with text; however, when I hit the
    button for inserting a picture, it is grayed out. When I went back
    to Contribute CS3 and tried the same thing, I inserted the picture
    but I got a message saying the document couldn't be published
    because it included pictures that were local. I had no success with
    pictures from the option of the internet, either.
    I tried signing in to Blogger, but the screen I got was the
    Blogger editor.
    I'd appreciate any help as I really want to use Contribute
    but I'm at a standstill as to what to do. According to what I've
    seen, inserting a picture should be as simple as dragging from an
    application -

    I appreciate your answer to my question. I have purchsed several books on Flash CS4, including Adobes own Classroom in a Book for Flash CS4.  The problem is that none of them show a tutorial on how to do this. I am hoping that you can give a more lengthy description of how to accomplish this task. I'm having a problem invisioning how the movieclip is created with my page. For instance, imagine that my primary page size is 1000 X 750. I want to create a scrollable page that includes text and photos. That page might be 800 X 2000. Therefore it would have a verticle scroll. How do I begin to arrange the text and pictures on such a long page? Do I create a completely different Flash CS4 page that is sized to 800 X 2000? Then insert all of my text and pictures. Do a "select all" and save a s a movieclip? Then this becomes the source for the scrollpane? I've searched all day yesterday on the net and cannot find a tutorial on this subject. It is a staic page by the way. Nothing will ever change or get loaded. Thanks for the help!

  • When I take a picture with the flash on auto, I get a blue circle and no picture. When I turn the flash off the  picture comes out fine. What do I do to take a pic in low light

    When I take a picture with my iphone 4 and the flash is on I get a blue flash and a big blue screen with no pic. When I  turn the flash off the pics come out
    fine. I turn the flash on to take a pic in low light I just get a blue screen. How do I remedy this?

    Try a reset or restart of the device.
    If that doesn't work attempt a restore of the phone's iOS

  • How to insert picture in JTable?

    I want to insert picture in JTable.
    But I don't know how to insert picture in JTable.
    My project must use it very much.
    Plaese help me.

    there is an example with sources
    C:\jdk140\demo\jfc\SwingSet2
    or
    YOUR_JDK\demo\jfc\SwingSet2

  • Inserting images with no backround

    hi, i'm creating a simple webpage with a few pictures.i know how to insert images but the problem is that DW always inserts an image with a white background or any background i have set before exporting edited image from PS or any other image editor. i need to insert a picture with a blended stroke, i mean a picture which is cropped through curves and then its stroke is blended. even though i set no background, the image is exported in white background and DW recognizes it this way. i hope you understand what i have in mind. to illustrate it i need to achieve something like this:
    that yellow background is a background of my website and the flower should be inserted the way you see.
    thanks for your help

    Below, I made a Twitter icon in Photoshop on a transparent background layer, denoted by the gray & white checkerboard.  See screenshot.
    File > Save for Web.   Select PNG-24 with transparency.
    See screenshot.
    Nancy O.

Maybe you are looking for

  • Remove Exchange Calendar from iCal

    I have an Exchange Calendar in iCal (Mountain Lion) that I want to remove. How can I do this? If I select it and choose Edit the Delete option is greyed out. The account is not listed in Preferences > Advanced either. I want to delete it because ever

  • COPA Revenue

    Hi all, We need a suggestion in CO-PA. SD condition type assignment to Value field inKE4I is perfect and for all company codes its fine. But we have included a SD user exit 'EXIT_SAPLV60B_004' to stop the revenue flow to CO-PA value filed and flow it

  • Entering information into a converted word document

    I converted my PDF into a word document. How do I enter information? I'm trying to "type" information onto an application.

  • Having thousands of Host-Named Site Collections - which authentication type?

    So Microsoft seems to state the claims + Host-Named Site Collection (HNSC) approach is the way to go forward. Assuming we have thousands of site collections, and we don't want to go with good ol' NTLM authentication as our claim authentication type,

  • 11.1.1.3 FDQM adapter files name..

    For Hyperion 11.1.1.3 FDQM which adapter files should I use? Please let me know the .xml & .dll files name... Can anybody support me giving the Link of OBE Hyperion FDQM 11.1.1.3.0 installation & config tutorials page? Till now I have used FM11x-G5-C