Import skins from the web

I am having trouble importing skins from the web for the RoboHelp 10 application.  I have downloaded the skin from the Adobe's website and changed the file name (ie, xp_gov.zkn), but the application is not allowing me to import the skin.  I'm receiving an error "Please insert Disk Volume 1854 of 8225.".  Is there a way to go around that?  I don't know how else to import a skin.
Thank you!

Try this:
Download the file to your PC. It downloads as a .zip file.
Extract the .zip file.
Expand your project's Skins folder.
Right click and select Import Skin.
Point to the extracted .skn file.
Make any required skin changes.
Click OK.
If required, rename the skin.
Click OK.

Similar Messages

  • Import pages from the web

    Here is the situation I have a 1st Gen Mac Mini and a MacBook. I created the iWeb site on my Mini. I have an older copy on my MacBook. (I do have dotmac/mobleme) Is there a way to import from the web into my MacBook so it will match what is on the web and on my Mini?

    http://iwebfaq.org/site/iWebTwocomputers.html

  • Import picture from the web

    how can i import images from google images to make it a clip with that images

    In most cases you should be able to drag images from a website direclty to your Desktop.
    From there, add them to iPhoto or drag them directly into iMovie.
    But (and this could be a big but) many of the images, if not most, that you encounter on web sites are copyrighted and their may be restrictions on how you can legal use them.
    Matt

  • I cannot save (to desktop) or send (to another computer), a certain important document from the web.  Can I have a back and forth discussion with someone about my issues?

    Technically, I'm just trying to print my online pay stub, and am having an impossible time with the options given to me!!  
    Since my printer isn't working, I'd like to save document to my desktop ("save as" is the only option given to me) and send it as an attachment to a friend's computer and working printer.  I'm given 2 options for the format when trying to "save as", neither work, because when I open the saved icon on my desk top, sometimes there is an empty page that states something like, there is no webpage here, or there is nothing there at all!
    Now, I am currently trying to send the document directly (via email, an option given under "file") the pay stub from my employer (who uses ADP online payroll services), to that computer and working printer ....and I'm receiving a window (with apple mail logo on it) that begins with  "To view this page, you must log in to this area on agateway.adp.com:443:"  and asks for "name" and "password".  I've put in both ADP's information, and what I believe (could be very wrong) to be apple mail's information, and either/neither/nothing seems to work!
    [back story] About 5 years ago, I attempted to set-up apple mail (4.5) on my MacBook (OS X 10.6.8), didn't appreciate the process and abandoned my efforts.  Since then I've always used different email applications (yahoo, go daddy, and currently, gmail).  I've been successfully able to avoid apple mail up until this point.
    Can anyone help me save or send this document?
    Please someone ....help me!

    JRP IV wrote:
    I'm just trying to print my online pay stub
    Since my printer isn't working, I'd like to save document to my desktop ("save as" is the only option given to me) and send it as an attachment to a friend's computer and working printer.
    What browser are you using?
    Are you trying to print or to save the doc? Whether you have a working printer or not is really immaterial. If you're trying to print, then File > Print > PDF > Save as PDF…. If the resulting PDF is small enough (<5MB, though my preference is <1MB), e-mail it to your pal. If it's too big, transfer it using a chat programme or a file service (MediaFire, RapidShare, etc).
    Now, I am currently trying to send the document directly (via email, an option given under "file") the pay stub from my employer (who uses ADP online payroll services), to that computer and working printer ....and I'm receiving a window (with apple mail logo on it) that begins with  "To view this page, you must log in to this area on agateway.adp.com:443:"  and asks for "name" and "password".  I've put in both ADP's information, and what I believe (could be very wrong) to be apple mail's information, and either/neither/nothing seems to work!
    I don't understand any of this. You need to explain better—or perhaps just post a screen shot (blank any private or confidential info on it prior to posting).

  • I can't import images from the web into my iphoto 8

    I installed snow leopard a few weeks ago and when I try to click on an image on a website like a friends photo from myspace, and drag it to my Iphoto's icon in my dock it gets rejected, But I was able to do that very same thing before and it would work. I don't know why it won't now unless it is snow leopard. can someone help me fix this problem? Thanks to anyone who can help.

    Welcome to the Apple Discussions.
    Several people have mentioned this and it seems to be a change with 10.6
    If you're using Safari then right click on an image and choose 'Add Image to iPhoto Library'. Otherwise drag the image to the desktop first.
    Regards
    TD

  • Adobe 8 - Unexpected Corrupt or incorrect file type warning when viewing a PDF file from the Web

    Hi,
    On downloading a PDF file from my web site using Adobe 8 on the client machine I expect the file to open automatically however I receive encounter the "File Download" dialog. It has the following warning message: "The file you are downloading cannot be opened by the default program. It is either corrupted or it has an incorrect file type. As a security precaution, it is recommended that you cancel the download."
    This issue did not occur within previously tested versions of Adobe Reader (e.g. Version 5.1).
    On investigating the issue I discovered the factor that results in Adobe 8 failing to open the file automatically is the Content-Type = "application/pdf; Charset=utf-8". However, if I intercept the response and alter the Content-Type to contain only "application/pdf;" the issue on Adobe 8 does not occur.
    I have even tested when the Content-Type contains an empty Charset (i.e. "application/pdf; Charset=") but this issue still occurs. In addition setting the Charset to other encodings (e.g. "ISO-LATIN-7", "iso-8859-1") the issue occurs.
    QUESTION(s):
    1. Why is it necessary for Adobe 8 when opening PDF files from the web to expect no Charset within the Content-Type?
    2. If this was not an issue within previous versions of Adobe surly this is a bug?
    Since I cannot ensure that the Response's Content-Type does not contain a Charset at all please can someone suggest either a work-around or more importantly a solution to the issue?
    Please Note:-
    1. Within Adobe, Edit -> Preferences -> Internet option it's compulsory for our users to have "Display PDF in browser" ticked!
    2. We cannot prevent a Charset from being present within the Content-Type of the response sent to the client, hence this issue.
    Many Thanks in advance,
    Martin.

    Bill,
    This is exactly the same behavior I observed when I rendered a PDF stored in a database through a .NET page. If I chose to save it, it would open fine after the save, but if I chose to open it in the browser without saving it, I would get the error.
    The problem was not with the PDF or Acrobat. It was with the way I was delivering the PDF. Putting the following code before my binarywrite fixed the issue completely:
    Response.ClearHeaders()
    Response.ClearContent()
    Response.ContentType = "application/octet-stream"
    Response.AddHeader("content-disposition", "attachment; filename=" + saveFilename)
    where saveFileName is the name you want to give the PDF.
    You can use 'inline' instead of 'attachment' above if you just want the PDF to open (no option to save first). You can also use 'pdf' instead of 'octet-stream' (not sure the difference).
    The trouble seems to be that .NET puts some info in the header and/or content by default prior to anything your code says to write. If you don't clear this, IE has an issue with it. Other browsers seem to ignore it.
    Bottomline is that this is an issue the website programmer needs to fix and is not something the user can fix by changing some setting(s).
    I hope this helps.

  • How can I move photos in iPhoto from the WEB Photo Stream or WEB Facebook to one of my Events?

    How can I move photos in iPhoto from the WEB Photo Stream or WEB Facebook to one of my Events?

    From PhotoStream either drag the photos form PS to the iPhoto window or set the iPhoto peference to automatically import PS photos
    From Facebook save to isk and import from there
    LN

  • How can I access a shared calendar from the web ?

    Hi !
    I use OSX SL, iCal 4.0.4, MobileMe.
    When I share an ical calendar, I can not access it from the web. I can share it with other ical users, but can not find the correct url to access it from Safari. I have been searching the net and find suggestions, but all of them is about using the url stated in the share-dialog. When I share a calendar, there is no url for web access.
    Hope someone can help.
    Sveino

    There is a method for publishing a MobileMe calendar to a web page (as can still be done with an 'On My Mac' calendar, though of course that won't sync to other devices).
    The method is almost a hack, and depends on what appears to be a bug in iCal, so there is no guarantee that it will work, or continue to work, or won't cause problems. Also it appears that once published the calendar cannot be removed from the web page, even if the original is deleted.
    With those caveats in mind, please see this web page:
    http://homepage.mac.com/rfwilmut/notes/icalpublish.html
    Note that there is a simpler method, involving exporting your MobileMe calendar as an .ics file, re-importing it as an 'On My Mac' calendar, and publishing it in the usual way. However of course it won't update if you update the MobileMe version, and if you make it the only version then of course it won't sync to MobileMe. It's one or the other, or use the hack described above.

  • Can you open word doc. In pages? (Opening a doc. From the web) in the iPad or iPod tuch?

    Can you open word doc. In pages? (Opening a doc. From the web) in the iPad or iPod tuch?

    NH,
    This may seem a fine point, but iWork apps don't actually Open Office apps. They Import them. The reason I make this distinction for you is that when you view the result of the import, you may see some variations from what was in the Office document because of an imperfect translation, and when you make edits, you are editing an iWork document, not the original Office document.
    Jerry

  • My iphoto library has become unreadable. I am wondering if I shoudl delete iphoto and reinstall? Can I download iphoto from the web? I bought my computer in February of this year. Do I have to buy a new copy of iphoto?

    My iphoto library has become unreadable. I am wondering if I shoudl delete iphoto and reinstall? Can I download iphoto from the web? I bought my computer in February of this year. Do I have to buy a new copy?

    It's probably the library that's the prolem and not the application. Try this:  launch iPhoto with the Option key held down and create a new, test library.  Import some photos and check to see if the same problem persists. If you can create and open a new library then your existing library is damaged.
    If that's the case, Make a temporary, backup copy (if you don't already have a backup copy) of the library and apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot. 
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • How can I launch or open a pdf from the Web using Reader X?

    Before I upgraded to Adobe Reader X, I could click on a file to download from the web and it would give me the option to Open, Save or Cancel. Now that I have upgraded, I only have the option to Save or Cancel. Often I would rather Open the document to see it before deciding to save it or not. Is there a Setting or Preference somewhere that will bring back the Open option? btw, I'm using Windows 7 as my OS.

    ImagineThat:
    Welcome to the Apple Discussions. There is a 3rd party application, pdf-RecoverPro, that will let you lock the file to printing, changing, etc. You set two passwords, one to let the user view it and one to unlock the restricted features. Just provide the first password and send the file. You can try the demo version. It just saves one page in demo mode.
    Do you Twango?
    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 written 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. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Copy&paste formatted text from the web

    Hello,
    I'm from IT department. Employees graphic gave me a difficult task. They need to copy text from the web browser which is underlined, into Illustrator. The problem is that while pasting the text loses it's formatting. I found the solution about pasting the text into MS Word and then import it AI. Unfortunatly they not accept that way, the said "we need something more easy, it's possible, someone told us". Is there any other way to copy text from the web browser to illustrator with keeping format? Maybe plugins? I'm googling about 2 days about it and didn't find any other solution. Please help me.

    thank you
    unfortunately it's not good solution because:
    1.) "omg, too much clicking, we need ctrl+c ctrl+v"
    2.) They change the text, change size, color, background etc in AI. When AI imports pdf all letters looks like seperate objects (it's hard to explain for me, because I'm not familiar with AI and my english is not good enough)

  • Error retrieving data from the web server in Excel fo BPC

    Hello Everybody,
    I'm working with BPC v7.5 , i created some reports with the EVDRE formula and they were working perfectly.
    The problem started when i created new users, that in fact have the same access profile and task profile as my user.
    i started to test these new users in excel and every time i expand the report this legend appears: " EVDRE Retrying... EVDRE encountered an error retrieving data from the Web Server. Retrying in (X) Seconds...". After waiting a while a push cancel, then appears a window with the legend: Ev4excel Addin, Errors found retriening data.
    The funny thing is that when i login back to my user everything works fine again, any idea what could be the problem? the other user have the same permissions.
    Thanks a lot in advance!!
    Nidia Olguí

    very strange. Normally the member access profile must be diifferent. So it is not important the task profile but the member access profile. Can you please double check ?
    If you are doing a simple EVDRE with users having problems is it working or you still have problems?
    Regards
    Sorin Radulescu

  • Running from the web

    I'm trying to combine two collage courses... Problem is I don't really KNOW where to start.
    I've got this great little java program. I worte it with a total of four files all ending with .java. What I'd like to know is where to look to find out how to "compile" (I'm not sure if that's the right word) them and link them to a web page.
    I'm assume I can run a java program from the web, I see it all the time.
    Any good resources??
    THX
    Mark

    phoenix has the online stuff but I can't stand it...
    I prefer the classroom. All my education came in a classroom. I don't know how I'd feel about a Web class.
    In my JAva class, almost six months ago, we played
    around with writing calculators and such. Problem is,
    we only ever ran the programs from within the IDE.
    I'm using NetBeans, everyone else in the class was
    playing with JGrasp. You were wise to use NetBeans. I've never heard of JGrasp.
    So your calculator was working fine? That's good.
    I recently wrote a new little program (more
    calculator BS) and it does great from within the IDE.
    But that doesn't help me build it into the web page
    e for my current class.
    We play around with JavaScript a LITTLE. We're doing
    things like mouseOver, and form varification. Not a
    lot of help... And like you said, very different
    mess.Javascript is okay, but it's not at all like Java.
    Is there a way I can use all the code I've got,,,
    like convert it or, export it, save as, or something
    that will give me a file I can upload to our server
    and link to the page??Depends on how you did your calculator.
    If you wrote it so it displayed in a Swing JFrame, you can take the JPanel that displayed all the code and put it in a JApplet. You can insert that into an HTML page using an <applet> tag. You will package all your .class files in a JAR file and put that on the server. When a client's browser connects to the server, it'll download the JAR file and display the applet.
    Can be done. Check out that tutorial link I sent. I bet that'll sort you out.
    I'll confess that I don't do anything with applets. I don't think they're very important in my work. UIs that I write to run in a browser are HTML generated by Java Server Pages, or JSPs.
    %

  • Illustrator CC (Mavericks) crashes when pasting images from the web.

    I have read many forums of illustrator crashing, and most of them is about the Wacom tablet. I do have a tablet, so I uninstalled the software, but tried pasting an image from the web, and sure enough it crashed again.
    Hope you can help me, because this is very frustrating
    Thanks in advance,
    Alexandra

    Umm, well, have you considered that this is the most rubbish workflow one can imagine? Seriously. Save the images locally from your browser and them import them using the place command and even that only after checking them in Photoshop. There could be any number of issues here like files being damaged or having crooked color profiles attached that make AI go kaboom... Again, it's simply a very, very bad workflow.
    Mylenium

Maybe you are looking for

  • Thoroughly fed up with quality of service from BT

    Because broadband was so slow on our normal phone line I pay for an additional line dedicated to broadband.  The last time both these (BT) lines were working was 27th July! The main phone line died on 28th July and that was finally sorted out on 28th

  • Depreciation GL A/C balance and table ANLC-NAFAG value are different

    Dear All I have faced a problem after charging depreciation I found that the balance of Depreciation General ledger account is higher than the value of Table ANLC-NAFAG How can I find out the reason of this difference and what is the table link betwe

  • Trigger on Insert into a custom table from external application

    This is the problem I am facing. External Application using a different schema lets say extdb on a different server. This writes into a table in a schema called appscustom schema. Appscustom schema is under Oracle Apps. A trigger in Oracle Apps to be

  • Import ATO Star Item directly into OM

    Hi, We are using CPQ tool to configure and quote to customers. Once quote is approved we want to import the Quote into OM as Order. We have ATO Models in EBS maintained. While importing the Quote to Order we want to directly create one line Item of t

  • Adobe Premiere CS5.5 GOPRO HERO

    Hi, I need your help. I'm trying to import a GOPRO HERO movie to Adobe premiere CS5.5. It imports the file, but when I click it twice to open it in the source monitor the software hangs and closes. I think it's a mp4 file: 1920x1080p / 25fps. Another