Use of Font Sets in CHM Navigation Pane

Hi everyone.
One of our product suites is going to be published for the first time using WebHelp Pro as its primary output but with a CHM file as a backup in case the client's internet connection fails or isn't present.
To cut a long story short we have setup a font set to use with our Webhelp Pro output that allows for both Windows and Apple Mac fonts. We have applied this to all our styles and are looking at other places where it can be used (e.g. skins). One of these is the Navigation Pane to be used in the CHM file. It seems like you can not use a font set when defining the font characteristics of the TOC and Index in the Advanced options of the Microsoft HTML Help single source layout.
I know this is not really a problem as CHM files are only designed to be run on Windows PCs and the Windows fonts we are using as part of the font set are 99.9% percent likely to be installed. However I am more interested in how the fonts inside the navigation pane works. The fact that you can't specify a font set (i've checked this in RH8 and RHX5) would seem to indicate that the font setting is part of the compiled file, rendering a font set unnecessary in this instance. Either that or it is an oversight.
Read the RoboColum(n).

Hi Colum
I stand to be corrected on this. Perhaps Pete Lees will pop in to confirm or deny.
I don't believe Font Sets are even necessary for .CHM files. As they are Windows only, I'm not sure Microsoft saw any need to provide for using them.
Cheers... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
Adobe Certified RoboHelp HTML Training
SorcerStone Blog
RoboHelp eBooks

Similar Messages

  • Configure java environment to automatically use a font set

    I am having trouble setting up my environment to use a font - like cyberbit. Specifically, I would like to be able to display Chinese/Japanese unicode data on my appliation - all I can view are boxes. I have installed the cyberbit font under ../jre/lib/fonts and have modified the file fontconfig.properties.src (dialog.x=Bitstream Cyberbit,DEFAULT_CHARSET and filename.Bitstream_Cyberbit=Cyberbit.ttf) and saved it as fontconfig.properties.

    iWeb doesn't remember your default choice like that
    unfortunately. Are you finding that you use the same
    template pages though? If so, you can just
    preconfigure one with your choice of fonts and text
    sizes. Then just keep it blank and use it as your
    "template" by 1) removing it from being displayed in
    the navigation menu and 2) by duplicating the page
    (select it in the organizer and right-click or
    control-click to select "duplicate").
    It's probably easier to just make the changes when
    you want.
    James, thanks, and hi. I will end up using the Photo Album and the Welcome templates the most. The Welcome templates I will use as top level theme hyperlinks to all of the examples of said theme.
    iWeb is a lot of fun.
    — Lorna in Southern California

  • "Use Local Fonts" setting seems to switch while viewing PDF

    I open up a pdf with no embedded fonts, and the text looks fine. Then after a few seconds of paging through the document, all of the sudden the next page is shown with adobe-substituted fonts like "Adobe Serif MM" instead of "ArialNarrow,BoldItalic".
    -Using Adobe Reader 8.1 on Windows XP pro, SP2
    -Using fairly standard fonts like ArialNarrow, plain, bold, and italic.
    -If I close Reader and open the document again, a few seconds later, I go to another page, and the fonts are fine again. This toggles back and forth each time I open Reader.
    -Italic fonts are especially heinous looking: instead of being slanted to the right a few degrees, they are slanted to the left about 45 degrees.
    -This seems to have started happening after installing some Windows Updates, but I'm not sure whether that is related.
    -I'd rather not use embedded fonts due to increased file size.
    -I create the pdf using a third-party app. Is there a way I can test the pdf to verify whether it was created correctly?
    -s

    This was kind of a confusing post now that I read it again - sorry.
    Anyway, I found the problem:
    Arial Narrow version 2.37 was messing everything up. I uninstalled that from my Windows Fonts folder, installed Arial Narrow version 2.35, and now everything looks great again.
    (I had to delete the font list and user cache too)

  • Why is getLineMetrics inaccurate when using device fonts* or immediately after resizing a TextField?

    1.  We need getLineMetrics to return correct values immediately after changing a TextField's width/height or any property that would affect the layout metrics, withouth having to alter other properties like setting the text to itself (p1.text = p1.text).  Currently, if you change the width of a text field to match the stage width for example, getLineMetrics will not return correct values until the next frame.... UNLESS you set the text property.
    2.  We also need some kind of "stage scaled" event in addition to the "stage resize" event (which only fires when stage scale mode is no_scale), because stage scaling affects the rendered size of device fonts so dramatically that we must call getLineMetrics again.  This is not the case for fonts antialiased for readability, since their size is relatively stable with scaling, as demonstrated by drawing a box around the first line once and then scaling the stage.
    So those are the problems.  The asterisk in the title of this post is there because it seem that TextField.getLineMetrics is accurate with device fonts, but I cannot take advantage of that accuracy without a way to detect when the player is scaled.  I can only confirm its accuracy at a 1:1 scale, since there is no way to recalculate the size of the line rectangle once the player is scaled, aside from setting a timer of some sort which is a real hack not to mention horribly inefficient with no way to detect when the stage has actually be scaled.
    I use device fonts because embedded fonts look terrible and blurred compared to device font rendering.  The "use device font" setting matches the appearance of text in web browsers exactly.  The only way to get embedded/advanced antialiased text in flash to approximate that of the device font look is to primarily set gridFitType to PIXEL instead of SUBPIXEL, and secondly set autokerning to true to fix problems caused by the PIXEL grid fit type.  That ensure strokes are fitted solidly to the nearest pixel, however it still lacks the "ClearType" rendering that device fonts use, which has notable color offset to improve appearance on LCD monitors, rather than the purely grayscale text that flash uses in its subpixel rendering.  Frankly, failure to use device fonts because of API issues, is the only reason why Flash sometimes doesn't look as good as HTML text and why people say text in Flash "looks blurry".  I'm tired of hearing it.  If the player simply dispatched an event when scaled and updated the metrics immediately when any property of the text field that would affect the metrics is changed, then we could all happily use device fonts and Flash text would look great.  As is stands, because of the two problems I mentioned in the opening paragraph, we're stuck dealing with these problems.
    If you create two text fields named "p1" and "p2" for paragraph 1 and 2, populate them with an identical line of text and set one to "use device fonts" and the other to "antialias for readability", then use this code to draw boxes around the first line of text in each of them:
    import flash.text.TextField;import flash.text.TextLineMetrics;graphics.clear();drawBoxAroundLine( p1, 0 );drawBoxAroundLine( p2, 0 );function drawBoxAroundLine( tf:TextField, line_index:int ):void{          var gutter:Number = 2;          var tlm:TextLineMetrics = tf.getLineMetrics( line_index );          graphics.lineStyle( 0, 0x0000ff );          graphics.drawRect( tf.x + gutter, tf.y + gutter, tlm.width, tlm.height );}
    The box surrounding the line of text in the "use device fonts" box is way off at first.  Scaling the player demonstrates that the text width of the device font field fluctuates wildly, while the "antialias for readability" field scales with the originally drawn rectangle perfectly.  That much is fine, but again to clarify the problems I mentioned at the top of this post:
    Since the text width fluctuates wildly upon player resize, assuming that getLineMetrics actually works on device fonts (and that's an assumption at this point), you'd have to detect the player resize and redraw the text.  Unfortunately, Flash does not fire the player resize event unless the stage scale mode is set to NO_SCALE.  That's problem #1.  And if that's by design, then they should definitely add a SCALE event, because changes in player scale dramatically affect device font layout, which requires recalculation of text metrics.  It's a real issue for fluid layouts.
    The second problem is that even when handling the resize event, and for example setting the text field width's to match the Stage.stageWidth property, when the text line wraps, it's not updated until the next frame.  In other words, at the exact resize event that causes a word to wrap, calling getLineMetrics in this handler reports the previous line length before the last word on the line wrapped.  So it's delayed a frame.  The only way to get the correct metrics immediately is basically to set the text property to itself like "p1.text = p1.text".  That seems to force an update of the metrics.  Otherwise, it's delayed, and useles.  I wrote about this in an answer over a year ago, showing how sensitive the text field property order is: http://stackoverflow.com/a/9558597/88409

    As I've noted several times, setting the text property to its own current value should not be necessary to update the metrics, and in some subclasses of text field, setting a property to its own value is ignored as the property is not actually changing and processing such a change would cause unnecessary work which could impact application performance.  Metrics should be current upon calling getLineMetrics.  They are not.  That's the problem.
    From a programming perspective, having to set the text property (really "htmlText" to preserve formatting) to itself to update metrics is almost unmanagable, and doesn't even make sense considering "htmlText" is just one of a dozen properties and methods on a TextField that could invalidate the layout metrics (alignment, setTextFormat, width, height, antiAliasMode, type, etc.), and I would have to override every one of those properties so that I could set htmlText = htmlText.  Using such a subclass isn't even possible if I want to use the Flash IDE to add text fields to the stage.  I would have to iterate over the display list and replace all existing fields with my subclass, which also isn't a good workaround because there's no way to update any and all variable references that may have been made to those instances.
    Frome what I've read, the invalide+render event system is unreliable.  My layout framework is similar to that of Windows Forms, and performs layout immediately, with dozens of docking modes and uses suspend and resume layout calls for efficiently resizing multiple child objects in a component.  Certain calculations cannot be aggregated for a render event, because some containers are semi-reflexive, meaning they can expand to fit the child contents while also contraining the child size, depending on whether the contain was resized or the child component was resized, so as a matter of correctness the resizing calcultation must occur immediately when the child resizes, otherwise a top-down pass on the display hierarchy for resizing will not be sufficient.
    As far as waiting until the next frame, no that is not possible, as it will cause one frame to be completely wrong.  If I was dragging the browser window to resize it, it would look terrible as virtually every single frame during the resizing operation would be incorrect.  Also, in the case where a user clicks the maximize or restore button of the web browser, the resizing event will occur exactly once, so if the metrics are not correct when that occurs, there is no recalculation occuring on the next frame, it will just be wrong and sit there looking wrong indefinitely.
    In case it's not obvious by now, this is a web application.  It uses the NO_SCALE stage scaling option, so notification of the event is not actually an issue for me personally.  I was just pointing out that for anyone not using the NO_SCALE option, there is no event in Flash to detect player scale.  What you're suggesting is using a JavaScript event and using the ExternalInterface bridge to send a message, which there is no guarantee whether it will be processed in a timely matter by the player and introduces possible platform inconsistancies, depending on whether the browser has actually resized the Flash interface at that point or what state Flash is in when it tries to recalculate the size of the text.  The browser may send that event to flash before the player is actually resized, so it will be processing incorrect sizes and then resized after the fact.  That's not a good solution.  Flash needs a scale event in addition to a resize event.  I'm really surprised it doesn't have one.  At the very least, the existing resize event should be dispatched reguardless of the stage scale mode, rather than occuring exclusively in the NO_SCALE mode.
    Bottom line is that getLineMetrics needs to return correct values every time it is called, without having to set the "text" property immediately before calling it.  If such a requirement exists, which seems to be the case, then that needs documented in the getLineMetrics method.

  • Navigation Pane on WorkBook

    Hi All,
    I havent had that much exp on workbooks,
    I have a task to change the navigation pane in workbook by removing existing characteristic and adding new.
    I was also asked to create a new navigation pane in the Workbook.
    As given in thehelp sap i opened the workbook in BEx analyser 3.x and clicked the design mode. But after that i am unable to add anything in Navigation Pane or ableto add a new one.
    Kindly help and guide me in doing this.
    Thansk & Regard
    Jana

    I believe our intrepid developer actually also needs to make changes to his QUERY, not the Navigation Pane, unless all of the key figures and characteristics are already in there. Please check the query and see if it has all the elements you need. If not, you will need to change the query as well using Query Designer.
    I'm also a bit uncertain why you would use Bex 3.x and discuss 'Navigation Pane'. In Bex 3.x these individual cells are referred to as "Filter Cells" and the like.
    If you are using Bex 3.x, you can only hide or unhide these cells. You can move them around a bit. Text Elements, on the other hand, can be deleted and shuffled around inside Excel by deleting the cell or moving it.
    For Bex 7, you can add and remove elements inside the navigation pane by turning them on and off. You can also add more than one navigation pane to your workbook, so as to support formatting and organizing. The same rule applies to text elements.

  • Using custom fonts in the Navigation pane

    Hi
    I'm using custom fonts in my webhelp. To do this, I created a folder for the web versions of the custom fonts and put it in the same folder as my css. I then added the font face elements to the top of my css (in Notepad). Next I used the custom font name for all the style defined in the css (in Notepad). That makes the content of the topics use the custom font. All good.
    Next, I edited the htt file (in Notepad) to use the name of the custom font. Now the breadcrumbs and topic footer use the custom font. All good.
    Finally, I want to use the custom font in the navigation pane (the text next to the books and page icons). I edited the skn file (in Notepad) to use the custom font. I also added a dependency for my css to the bottom of the skn file. Then I generated the webhelp.
    When I launch the help, the browser (IE) doesn’t allow running scripts or ActiveX controls (this is normal). At this point, the TOC in the Navigation pane looks like it uses the correct font. Once I click to allow IE to run scripts, etc. the font in the TOC changes to something that looks like Times or some default serif font.  So, it appears that something in the javascript is changing the font.
    For good measure, I checked the whtdhtml file and the custom font name is used there.
    Any ideas on what's happening and how to get my custom font to appear in the Navigation pane?
    BTW, I use images only in the toolbar pane (that spans the top of the webhelp window), so I don't need to specify the custom font there.
    Deborah

    Hi William
    I found one error. In the skin file, I had added a dependency to my css. It was missing a slash (/) to point to the correct folder level. Now that I've added that, the TOC displays the same font as the Index, Search results, and the topic (content, breadcrumbs, and footer). So, that's good, but on closer inspection, it looks like Verdana, not my custom font.
    I changed the font in whthost.js to the name of my custom font and generated the help, but it made no difference. I also changed the font and just opened the help without generating and got the same results.
    For your second suggestion, you mean whtdhtml.htm not whtdhtml.js? The custom font is in the lines:
    setFont("Normal", "MyFont","10pt","Black","Normal","Normal","none");
    setFont("Hover", "MyFont","10pt","#004080","Normal","Normal","underline");
    I added the <font> tag to this file, but the tag just shows up as plain text within the webhelp TOC (no matter where I insert it in the file).
    I also tried changing the font to my custom font for the Index body and Search results using the steps in Rick's Skinny on Skins (editing the whibody.htm and whfbody.htm files). When I do this, the serif font appears in the Index body and Search results.
    It seems like the files cannot "see" my custom fonts (which are in a folder at the same level as my css).
    Deborah

  • How do I use a font variation in a pages document. I no longer have the "viewer" -glyph option in special characters pane only new mbPro with Lion. I know the variation is available because I can see it in the font book. so now what I just want to be

    How do I use a font variation in a pages document? or other app for that matter? I no longer have the "viewer" - glyph option in the special characters pane (under edit  in toolbar). I know the varaition ia available because I can see it in my font book. I depended on that alot so I need to find a way to still use character and embellishments. I don't want to have to go back to my od computer (from2007) Please Help!

    I really don't understand.
    The menu item is available :
    Maybe, you didn't activate the tool :
    Yvan KOENIG (VALLAURIS, France) mardi 2 août 2011 23:10:17
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • PS CS6 has a different set of installed fonts than my old PS CS4.  How do I get my old fonts back?  Don't like most of the CS6 fonts.  Dell Precision, Windows 7.  Does PS use the fonts in the Windows directory or does it use its own?  A lot of my preferre

    PS CS6 has a different set of installed fonts than my old PS CS4.  How do I get my old fonts back?  Don't like most of the newer CS6 fonts.  Dell Precision, Windows 7.  Does PS use the fonts in the Windows directory or does it use its own?  If so, where are they in the directory?  A lot of my preferred fonts show in the Windows directory but not in Photoshop, which does not display them within the program.  Please help.  If I get free fonts (NOT CC fonts) from elsewhere, where do I put them for Photoshop[ CS6 to use them?  Thanks.

    All versions of Photoshop get their fonts from your OS.  Just install any missing font wherever Windows keeps fonts.
    I don't do windows myself.

  • Applying background colour to navigation pane in a CHM

    Hi
    I am using Robohelp 7 to create a Compiled HTML Help project and I would like to apply a background colour to the navigation pane (i.e. the TOC).
    I feel sure that this is going to be a very obvious option, but I've been searching for ages and just can't find it! Can anyone help?
    Many thanks.
    CJ

    Hi, CJ,
    If RoboHelp doesn't provide an option to change the background colour of the Contents pane, it's almost certainly because of a long-standing bug in the HTML Help compiler. Although Microsoft did make provision for changing the background colour of the TOC — the basic procedure is described here — the colour does not change behind the text in the TOC. This issue is described in article 267973 in the Microsoft Knowledge Base. See:
    http://support.microsoft.com/?kbid=267973
    Strangely, there's never been any way to change the background colour of the Index pane, Search pane, or any other pane — only the Contents pane. So, this is one of those unfinished areas of HTML Help that Microsoft has never got round to fixing.
    Pete

  • Customizing Font Size of Date Navigator Header Using CSS

    Hi All,
    Can anyone offer any advice on how I'd change the font-size of the Date Navigator Header (i.e. May 2010, June 2010, etc)?
    I've tried the good ol' CSS hack underneath the "Font Color of Date Navigator Header" and despite it working during preview, it doesn't come through when I save it.
    This is what I've entered:
    #000;padding:7px;font-weight:bold;font-size:medium
    What am I doing wrong?
    Is it because there are too many arguments?
    Where else could I modify this?
    Thanks,
    Bim.

    Hello Bim,
    I am not sure about your requirement using CSS. But, one way of changing the "Font Color of Date Navigator Header" is through editing the properties of your current theme in "Portal theme editor". For portal theme editor, logon to portal and navigate to System Administration>Portal Display>Theme Editor--> Click on the theme that is currently active.
    Now, navigate to "Date Navigator" under Complex Elements and change the required properties. I hope this helps you. Let me know if you need any other information.
    Regards,
    Gopal.

  • Using Navigation Pane and Filter on WAD

    Hi experts,
    Couple of quick questions regarding WAD :
    1) When I first execute the WAD planning layout, I basically get the selection screen based on the variables that were defined on the query. One of my variables is basically a naviagtional attribute. After I make the selection and execute the WAD based layout, I get my results screen with my plan data. But I also want to see above my layout the values that were  entered in my selections when I executed the layout. I treid to use the 'Navigation Pane',  and by defining it to show me those ' Free characteristics in my query'.
    The problem is, it only shows me those 'Free characteritics', but does not show me the VALUES that I selected for those free characteristics. What am I missing ??? It seems like you can only using them for drag&drop.. !!  I need a way for the layout to show/default those values that were originally selected when the template was first executed.
    2) I created a 'Drop-down' in WAD for one of my naviagation attaributes. I defined it as follows:
    Data Binding :  Char/Structure
    Data Provider: Query that I have that reads the navigation attribute from master data.
    Characteristic: Selected the techincal name of the navigational attribute.
    Affected Data Providers : Since I have 4 querieson the one web template that will be affected (changed) by this drop-down, I have listed all 4 here.
    The problem is, when I execute query, and I get to my results area, when I select a different value from my drop-down of that navigational attribute, the results area does not change. In other words, the drop-down selections have NO affect on any of my WAD layouts (results area). It keeps and stays on the original results. Can someone helps with this.
    Thanks

    Hi Ehab,
    For the first one, you can have a property in the Template properties.
    Click on anywhere in the template other than on web items. Now select Web item properties tab on the left side. Go to "Entries in Context Menu">"Display Variable screen">Always Display.
    By doing this, the variables you have selected will not be displayed once you have executed but you can go to variable screen with the selections you have made in that execution using Context menu.
    Hope this helps u...
    Regards,
    KK.

  • Can one set "Navigation Pane Buttons" Left Sidebar to 'Default Hidden' and 'Not Open' upon opening Any .pdf document?

    Can one set "Navigation Pane Buttons" Left Sidebar to 'Default Hidden' and 'Not Open' upon opening Any .pdf document?

    Photoshop has to have full administrator rights to have read/write access.
    This means you need to run Photoshop CS5.1 in an Administrator account and set it up to "Run as Administrator."
    1. Close Photoshop if it's open.
    2. Right click on your Photoshop CS5.1 launch icon then select "Run as Administrator" from the context menu. (You will have to enter Admin Password if UAC is enabled to change this setting.)
    3. Launch Photoshop CS5.
    4. See if you create and save a document.
    Even if you are in an Administrator account you have to do this as Vista's Admin account isn't really the Super Admin as it is in XP so you have to elevate the rights by selecting "Run as Administrator". This setting is sticky so you should only have to do this once. I am not sure why CS3 is suddenly acting as if it does't have Admin rights unless you are running it in a new account that isn't an administrator or maybe uninstalled (cleanScript?) then reinstalled.
    If can't create or save a document, check that the account that Photoshop is in is an Administrator account.
    To check if you are in an Administrator account...
    1. Type user account in your Vista or Windows7 start search bar. (Start search bar is at the bottom of the panel that opens when you click the start Windows start globe located on the far left hand side of your Windows task bar.)
    2.  Click on "User Accounts" which should show up at the top of the list. This will open the dialog to User Accounts where you can "Change Your Account Type". If UAC (User Account Control) is turned on, you will need to enter the Admin password to change this setting.

  • Use Windows Display Setting to enlarge the font size

    Hi,
    I'm using JDK1.4.1 on Windows2000. I wrote a Swing app that used native Windows LookAndFeel.
    I'm wondering if I can use the Windows Control Panel->Display->Settings to adjust the font type and size for the Swing app. I tried it but failed.
    So are the font type and font size in Java App adjustable only through programing APIs?
    thanks,
    Richard

    So are the font type and font size in Java App adjustable only through programing APIs?Yes. WindowsLookAndFeel doesn't see any Windows native font settings.
    But I think there's a way to do so (Although I have no experience about
    that). Here's some hints...
    Get the font settings from Windows by using JNI, and set these fonts
    to UIManager like this.
    UIManager.getDefaults().put("Button.font", new Font("Dialog", 0, 20));
    (Try this code and you will see the Button-font changes).

  • Can I adjust the amount of detail in thumbnails / navigation pane?

    We have started making pdfs from Word 2004 documents, via Distiller. Word>Print>Save as ps>Distiller and the amount of detail in the thumbnails (which are embedded) is very low. Sometimes I can't tell if there is content on the page or not (his is when I am looking at the Pages section of the navigation pane.
    Our previous work process had us creating a ps file via Framemaker 7. In those pdf files the pages view had a lot of fine detail, but we won't be using Framemaker anymore, since it's been dropped for the Mac.
    I'm not talking about the thumnail size... I've looked at them larger and it still has no detail, only with a larger view.
    I've looked at all the Distiller, Acrobat, and Word settings and preferences to see if there's a setting or dialog that will help, but I can't find any.
    Any ideas?

    Have you tried exporting using the Save as PDF button on the lower left of the Print dialog box? I don't know if that will help, but it might.
    I have not tried that, but I will. I always thought that going through Distiller gave you better quality. That's how I was converting the .ps files before that were created out of Framemaker.
    Your page thumbnails are strange, though. Are you using Distiller to convert fonts to outlines or something? Text is suppose to stay as text to help thumbnail previews
    I'm not converting fonts to outlines. It's very strange... there must be a setting in Distiller somewhere that I have mis-marked... I'll be darned if I can find it though.
    I've included a shot of pages from a previous project, there is a distinct difference.

  • Navigation pane disappears when the focus is changed

    I using Robohelp 7.01.001 and am generating a Microsoft HTML Help (Primary Layout). When I open up the CHM file everything looks fine, but when I change the focus off of the Help file the navigation pane hides. Is there a setting to always show the navigation pane?

    Welcome to our community
    If you edit your Window definition you should see an option labeled Auto-show/hide Nav Pane.
    If this option is enabled, clear it and you should be golden. If it's not enabled, enable it and click OK. Then disable it and click OK.
    If the steps listed earlier don't seem to resolve the issue, perhaps try creating a new window and defining that as the window for your CHM file.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 moments from now - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcererStone Blog
    RoboHelp eBooks

Maybe you are looking for

  • Disk utility burning issue

    I'm trying to burn some DVD/DVD DL from disk images..... I never got a success with *disk utility*.. after burning one with *disk utility*, checking disk always fails: an error on a sector (never the same) in the other side, burning same image with t

  • Invalid or unknown password

    hello, i cannot access tzo because of an invalid or unknown password. I am using a wvc80n camera. I have the camera working fine at my store using the wireless here but i want to access it remotely. Solved! Go to Solution.

  • Client Export and Import (Speacially Import Procedures)

    Dear All, I have requirement to copy my production client's all data to Quality System's client. What procedure should I follow? If I am going to export and Import. I am not getting followings's Steps 2.3 to 2.6. 1. Client Export:      1.1 Run SCC8  

  • Recovery Discs for P505-S8980 not working

    I just replaced the HDD after the original one failed. The Toshiba recovery disks contain a set of five disks that I made with the Recovery Disc Creator. The first three are marked as "Recovery DVD Disc 1, 2 and 3" . The fourth is marked "Windows Rec

  • Illustrator CS5 Mac is slow to save and open.

    My OS ism Lion with 500Gigs free space.  Recently Illustrator has slowed down and is almost unuseable,  I have re installed my system and Illustrator but the problem is still occuring.  Anything else I can check?