Swap out graphics that have popups

For RoboHelp 7 HTML I have to replace all of the graphics in
a RH 7 HTML project. These existing GIF images have lots of popups.
I had to recapture every graphic and was told to use the PNG
format.
But, what are the mechanics to make the swap so that I do not
lose the popups?
(In RH 5, there was a built-in editor. I would open the image
using the editor within RH. Then I copied the BMP file (unopened)
from within Windows Explorer and then pasted it into RH’s
image editor that had to old file open. It was so cool and easy.)

Welcome to our community, Barbara
Of course the simplest approach would be to simply save the
image to the folder using the same file name and format as before.
But seeing as how you are changing formats, the next approach is
probably best.
Just right-click the image and choose Image Properties from
the context menu. Then point at the new image. Whatever you had
linked should remain linked and shouldn't be altered. At least on
my PC this is how it works.
Cheers... Rick

Similar Messages

  • We wish to keep a spare computer loaded with all the required editing software ready to swap out if we have a hardware issue, what can we do about licensing, can we hot desk to it?

    We wish to keep a spare computer loaded with all the required editing software ready to swap out if we have a hardware issues. What can we do about licensing, can users hot desk to it? We have about 10 users with various software packages loaded on their current machines. Currently if one goes wrong we have no backup.

    You will need to check the licensing requirements for the various software & operating systems that you use.
    A much simpler way will be to make a clone of each machines hard disk drives on seperate external bootable drives using Carbon Copy Cloner or Superduper. You can then keep a couple of blank machines and boot from the an external drive in an emergency and carry on working. At the end of the work day you can then restore the clone to the internal hard drive of the affected machine, and leave it to run over night to complete the restore.
    This method would probably be the cheapest way to implement a disaster recovery option as you will not need to pay for new licenses or 10 new machines.
    Just make sure that each machine has an external HDD attached and a regular clone being made on a schedule, this way you will always have an up to date clone to work from.
    There are many ways to acheive what you require, NAS etc.
    Jerry

  • Swapping out Graphics card on HP Envy 17-k251na

    Hello! I have a feeling that i may have been given the wrong information by the assistant i bought my machine from in PC world... 
    I was assured i would be able to swap out my graphics card, which is a NVIDIA GeForce GTX 850M (4 GB DDR3 dedicated)
    and upgrade. 
    I was also told i could upgrade the processor. 
    I've been told by a few people that this simply isn't true and to upgrade the Graphics Card i'd need a whole new motherboard... but the term "dedicated" is what's confusing me... am i wrong in thinking that it works seperately and the term "intergrated" means that it's part of the motherboard? 
    I spent a lot of money on this laptop on the premis of what the assistant told me! Ultimately that i would be able to upgrade this laptop as time went on. (I want to primarly want to use this for gaming) 
    I'm hoping what people are telling me is all hear say.. it doesn't seem to make sence to me that i can choose between two different graphics cards to run games with and they'd BOTH be intergrated into the mother board....
    The other one that's in my machine is an Intel Graphics HD 5500. 
    Also this machine has a 1 TB HDD and an 8GB SSD, i'd like to also swap out for a larger SSD... i was also told that this was possible. 
    Hoping for good news here, any help woud be appreciated! 

    Right now the links to your product manual are down but assuming the 17-k200 series is like the 17-k000 and 17-k100 series there is no easy access to the hard drives and memory. That is, no customer accessible panels on the bottom you can open by just removing a screw. Further, there is no graphics "card" to just "swap out". "Dedicated" and "integrated" refer to the use of memory. An integrated video card shares system memory; i.e. the RAM supplied by the RAM modules you clip into the RAM slots. Dedicated video memory is memory built into the video chip. On a laptop, both kinds of video cards are soldered to the motherboard and cannot be upgraded. Your laptop has "switchable" graphics and most definitely has two different video chips soldered onto different places on the motherboard.
    As for the processor, you already have one of the newest and best laptop processors offered. The video you have is also pretty top-notch. I am always a bit baffled by people who buy a laptop with the idea of upgrading it. Laptops just do not work that way. Components are way crazy expensive. Your processor is so new there are none to be purchased but when it does become available it will be over $350. On the very few super expensive engineering and high-end gaming laptops that do have a kind of removeable graphics card (mxm) high-end ones run at least $450. So even if you could do the upgrades, which you cannot, you would be looking at over $1000 with labor. I understand people do not appreciate the cold reality of this. 
    And just to hit you with more bad news, on your model the CPU might be soldered to the motherboard so it cannot be upgraded at all. I can confirm when your Manual is back online. 
    Upgrading memory and changing the hard drive for an SSD also requires extensive complex disassembly. 
    You have one of the best consumer laptops on the market. There is just not much upgrade headroom. It sounds like what you really want is a gaming laptop. HP makes one called the Omen which sells for about $1500-1800US, and would be a little stronger than what you have, particularly in the graphics. But even that is kind of a middle of the road thing. You can order a custom gaming laptop from a company like Sager and it is going to cost upwards of $2500 for the very best. Maybe you can complain to PC World and just return the one you have and start over a little wiser for the trouble. 
    If this is "the Answer" please click "Accept as Solution" to help others find it.  

  • Can anyone help with a powershell script using the search-adaccount cmdlet to filter out accounts that have been created in the last 90 days?

    Hi,
    I have the following script that is supposed to search AD for all user accounts that haven't logged into the domain in more than 90 days.  I first did not have the where-object clause because I didn't realize the search-adaccount would provide results
    back of users that have never logged in, but were created less than 90 days ago.  So I tried to incorporate the logic to not include user accounts that were created in the last 90 days.
    #requires -version 4
    #This script creates a file of accounts that have not been logged into in the past 90 days, excluding accounts that have been created within the past 90 days since the -AccountInactive option does not factor for the whenCreated property of an AD object
    $DateThreshold = ((Get-Date).AddDays(-90))
    $ReportDate = Get-Date -Format yyyy-MM-dd
    #Create a folder according to the current date to be used for storing the report
    New-Item -Path ".\$ReportDate" -ItemType Directory
    $InactiveUsers = Search-ADAccount -UsersOnly -AccountInactive -TimeSpan "90" -SearchBase "OU=XXXX,DC=XXXX,DC=XXXX,DC=XXXX" | Where-Object {$_.whenCreated -gt $DateThreshold} | Export-Csv ".\$ReportDate\Inactive90_$ReportDate.csv"
    However, I can't ever get the whenCreated field to populate with data.  What gives?

    Hi,
    Search-ADAccount doesn't return a whenCreated property. If you want that, you'll need to use Get-ADUser as well. Here's a basic example you can build from:
    $dateThreshold = (Get-Date).AddDays(-90)
    Search-ADAccount -UsersOnly -SearchBase 'OU=Users,DC=domain,DC=com' -AccountDisabled | ForEach {
    $whenCreated = (Get-ADUser -Identity $_.SamAccountName -Properties whenCreated).whenCreated
    If ($whenCreated -gt $dateThreshold) {
    $_
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • Can I filter out books that have explicit content?

    I have turned on the Restrictions under Settings -> General -> Restrictions... however this only works for some works..  You can try it your self and you will notice that this only effects a small percentage of the items with explicit content.
    I went to the Apple Store and they confirmed that this is the way Apple knows how to do this and it may be due to the incorrect declaration by the author or by the iTunes Book store.
    Is there a way to fix this? Does anyone know a workaround?  Am I missing something?
    I would assume that by electing to not allow explicit content in my iBooks store, that any book with explicit content would be censored out.
    So far I have been disappointed.

    THIS IS TOTALLY AWESOME!!! Thanks Guys!!
    I'm so glad that I _upgraded to iMovie 06_ from iMovie 08. (It's amazing to me that Apple removed the audio effects in iMovie 08.)
    I experimented with two different settings, Noise Reducer, and Graphic EQ. By lowering the treble in Graphic EQ I obtained similar results as the Noise Reducer.
    I get pretty good results either way, do you have any experience as to which method is best to remove the Hiss?

  • Graphics Card Swap Outs

    PCs using MS operating systems can just swap out graphics cards. I want to buy the 17" MacBook Pro, but want the ATI Mobility Radeon X1800 instead of the 1600 currently packaged in the system so I can game as well as use it for business.
    Question: Can you just swap out the 1600 and replace it with the 1800, or is the proprietary system too inflexible to allow that? A wantabee Mac owner.....

    I want to get a 17" macbook pro with an upgraded ATI card, the 1800 or the 1900 - but there is NO WAY TO TALK TO TECHS! It is not a hard switch, bet there is no special requirements as it is just a faster model that fits in the same PCI express slot. I want someone IN THE TECH DEPARTMENT to tell me that the Mac is so propriety that it is totally inflexible to make that adjustment. OR, tell me that the new operating system 17" will have the new 1800 or 1900 ATI card - I will wait to buy then. Otherwise, I will go get the Dell 2010 that has the 1800 already in it (BUT i WILL NOT BE HAPPY ABOUT THE BUY.) By the way - it was your own sales agent at an Apple store that told me the 1600 was a dog compared to the 1800.....

  • Web Graphics Suddenly Have A Shadow - Is This A Recent Change?

    I just noticed something bizarre has happened to my website - I have graphic that have a drop shadow now, that never had one before. If you look at this page you can see that some text boxes show a rectangular shadow and some don't.
    http://www.imagebrewery.com/SIGHTS.html
    They all have the same settings in iWeb. I tried selecting just the text and adding the drop shadow in iWeb, but it works for some and not for others.
    My front page logo is the same. The "Image Brewery" text was a graphic that I added the shadow to the letters in iWeb. Now it seems to show the shadow of the boundary box instead of the text. In iWeb the logo floats with the drop shadow beneath the white letters.
    It appears the same in FireFox and Safari. Any clue as to why?
    Thanks!
    Bob

    I'm running Safari 4.0.4 and get no drop shadow on those boxes. I do with Firefox 3 however. This type of issue has been around with FF for a while in various degrees of seriousness. The drop shadow on the text is barely visible. You might try removing it entirely and see how that affects the appearance of the boxes.
    OT

  • I recently had to swap out my iphone 4s and I am having problems restoring photos and videos from icloud.  I get a message on my phone that says " the URL you are requesting is not found on this server".  Pics and videos have been deleted too.

    I recently had to swap out my iphone 4s and I am having problems restoring photos and videos from icloud.  When I restored my phone from icloud, half of my pics and videos have been deleted, the pics that were restored on my phone are very blurry, and the videos won't play.  I get a message on my phone that says " the URL you are requesting is not found on this server".  I have erased and reset my phone twice, but every time I do it, more pics and videos are deleted.  I have backed up to icloud and iphoto, however, some of the pics are no longer on iphoto either.  Is there someway to get the videos to play on my phone again?  Make the photos not as blurry as they are now and to restore the pics and videos that have been lost?  I really would love to have them back, this phone is supposed to be the best and right now it doesn't seem to be.  Please help if you can.

    I too have noticed that once i restored from iCloud. Pictures blurry and videos wont play!
    Need help too!!

  • I have a Power MAC G5 dual 2ghz that has a peculiar problem.  The monitor will not report until the machine is stopped and started 5 or 6 times.  Once booted it will restart without problem if done so from the apple menu.  Swapped out all hardware

    My Power MAC G5 has a peculiar problem.  The monitor fails to report until the machine is started and shut down 5 or 6 times.  Once it has booted it can be restarted without incident from the Apple menu.  I have swapped out all of the hardware.  Monitor, Memmory,Video Card and reset the PRAM.  After resetting the PRAM it booted on the first attempt and I thought it was solved.  But the next day it was back to starting and stopping until the Monitor came on.  Does anyone have a suggestion?  Thanks

    It could be a bad PRAM battery corrupting your PRAM.  Typically when I have monitor issues on startup it is a bad PRAM battery.
    Texas Mac Man's PRAM, battery, PMU tutorial - https://sites.google.com/site/macpram/mac-pram-nvram-cuda-pmu-battery-tutorial
    Apple's PRAM reset directions - http://docs.info.apple.com/article.html?artnum=2238
    If you have a digital multimeter you can check the condition of your present battery.  It should read at least 3.2V if it is the 3.6V half-AA battery type.  A new battery provides 3.67 Volts DC. A bad battery provides under 3.2 Volts DC.  Ideally this should be measured while the battery is under load; added recommendation from Hans777:
    >I have recently found out that an exhausted battery will still indicate >3.6 V with a high internal resistance VM.
    >
    >Checking incircuit: powercord disconnected press PMU reset button for >about 5 sec before measuring.
    >
    >Checking outside: load the battery with a 1500 Ohm resistor when measuring.
    Alternatively, test the battery while it is still in the computer.
    If the battery is more than 5 years old, especially if you totally disconnect the computer from the power regularly, or have left it unplugged for several months at one time, it is likely the battery is dead.
    Sometimes you have to do a more intensive reset of hardware management:
    [Resetting Cuda/PMU on Power Mac G5, Power Mac G4, Power Macintosh G3|http://support.apple.com/kb/HT1939]
    [How to reset the SMU on a Power Mac G5 (Late 2004) or Power Mac G5 (Late 2005)|http://support.apple.com/kb/HT1436]
    [iMac G5: How to Reset the SMU|http://support.apple.com/kb/HT1767]

  • Why does IPhoto  create duplicates of photos and graphics that is on my Mac when I import Photostream.  I started out with 4000 photos now I have almost 28,000.  I am using new Ipad and the Mac is  running Mountain Lion

    Why does IPhoto create dupicates of photos and graphic that is on My Mac when I import the photos from Photo stream to the library?  I started out with about 4,000 photos when I transferred everything from my PC.  I use a new IPad and IPhone to take the photos.  The Mac is running Mountain Lion 10.8.2 3.1 Intel prosessor.  I am using IPhoto 11.
    Thanks in advance
    Barry

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • Is there a way to check if the rechargeable battery is the original?  I have a feeling mine has been swapped out...

    I have a feeling my rechargeable battery pack was secretly swapped out by another user (whose battery had died) - left for vacation working computer, returned from vacation battery not charging.  Is there any way to check (serial number, etc.) what battery came with the purchased computer?  Any help would be appreciated.

    kimberlyfrompennington wrote:
    Is there any way to check (serial number, etc.) what battery came with the purchased computer?
    No, but you could check to see if the battery installed has about the same amount of charge cycles if you were paying attention to that number. 

  • How can I tell if the guts of my monitor have been swapped out?

    Hey y’all… I have an HP ZR30w monitor that I sold on ebay. The buyer claimed it didn’t work and I had to give the money back. He returned it but there are pixels burned out and spots where the colors are all purple and the case is all scratched up around the seems. The case has the same serial number, {personal info removed}, but I’m positive the guts were swapped out. (I took it apart and screws are missing) It worked perfectly when I shipped it out.
    Is there any identification or anything that would indicate if the insides belong to the serial number on the outside?
    Thanks!

    Hello badamsios,
    You want to know if you can match the parts inside the monitor to the serial number.
    Sorry to hear what happened.
    The only numbers that are going to be on the parts are the part numbers, and they are generic for the part.
    Have a good day.

  • Can I swap out my airport card for one that handle 802.11n?

    I have an older MacBook Core Duo and I see the newer MacBook Core 2 Duo can connect using 802.11n?
    Is it possible to swap out the airport card in my MacBook with an updated one to get the faster speeds?
    Thanks

    Yes, there are third-party cards that will work. QuickerTek has one that should work.

  • I am using a code based typesetting program (not WYSISYG) that outputs PDFs. I am producing 100 plus pages that have multiple graphics on each page. I need to know how to format a PDF command that I can incllude in my programming that will tag my graphics

    I am using a code based typesetting program (not WYSISYG) that outputs PDFs. I am producing 100 plus pages that have multiple graphics on each page. I need to know how to format a PDF command that I can incllude in my programming that will tag my graphics with "Alternative Text".
    I know that with a Microsoft product graphics can be tagged before a PDF is made. I need to know how to do this with my programming.

    The Acrobat SDK might be a starting point.
    From there, perhaps a plug-in (built with C+).
    Perhaps with a licensed release of a PDF Library (this could be $$).
    The viable and cost effective alternative is use the tried and true.
    Authoring in an appropriate authoring application with appropriate tag management.
    Example:  Adobe InDesign; Adobe FrameMaker or MS Word with PDFMaker (comes with install of Acrobat).
    This way you place "Alternative Text" when mastering content in the authoring file.
    Going the route and with some look-see (research) you may find programmatic approaches to placing the alt txt in the authoring file.
    Note: as discussed in the Matterhorn Protocols there is no programmatic method that provides a fully accessible PDF (specifically, that is an ISO 14289-1, PDF/UA-1 compliant PDF).
    Regardless, here you have a sub-forum for discussions on Acrobat usage.
    Consequently discussions on/of 3rd party software is rather out of scope eh.
    Be well...

  • When open photoshop a message came up saying photoshop has given up waiting for assesment of the display driver. enhancements that use the graphics hardware have been disabled... can anyone help?

    when open photoshop a message came up saying photoshop has given up waiting for assesment of the display driver. enhancements that use the graphics hardware have been disabled... can anyone help?

    The best thing to do is to go into Help > System Info, copy and paste the contents into your reply.
    One of us or several should be able to sort it out for you.
    Gene

Maybe you are looking for