Captured screenshots stretching in browser window.

Hello.  I'm using RoboHelp HTML 8.0.2.208.  I'm creating an online user manual (exporting as FlashHelp), for which I am capturing many screen shots of my application, and cropping to various sizes (using RoboScreenCapture).  I'm editing the size of the new images, and generally "maintaining aspect ratio" and setting the preferred width to 80%.  When I initially preview the topic and new image, the image is often (not always) stretched horizontally down the screen.  If I close preview, and re-open (without saving or anything), the image is then displayed fine.  The same thing is happening with my generated output file, both while viewing in a web browser, and within a JFrame: When you click on a topic in the TOC, the screen-captured images are distorted and stretched horizontally.  If you simply re-click the topic and reload the page, the displayed image appears fine.  Images in the same topic, further down the page, however, display the same behavior until you re-load with them in the viewing pane.
If there is a fix to this, can it be applied to all of my images?  Thank you!!!
Chris

Hi Peter
I totally agree with you. After all, resizing is resizing and it really doesn't matter if you resize before insertion or after insertion. It just seems simpler to me if you resize before you even insert, because then you don't have to take the extra step of remembering to reset the size in the page once you have finished with the resizing.
I think the issue here is that we are essentially talking about two different approaches. The correct approach totally depends on where the beginning point is.
If you aren't sure about the size to begin with, or you received a system, page or other document that has the image in it already, Peter's approach is the only real approach you have. Insert, observe, resize, save and reset, observe...
If you already know the size you want, just resize and save before dropping into RoboHelp.
This has been an interesting thread. First I've ever seen where someone suggested Visio produces the "cleanest" resized image. We used to see that Microsoft Word was suggested for that very reason. Folks claimed that viewing the image at the scaled size in Word resulted in a nicely reduced size. They would then screen capture that image for use later.
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

  • PrintWindow api with possible solution for capture screenshot Google Chrome window

    Hi,
    as all you know, PrintWindow api give us a black image when us want a capture screenshot  of Google Chrome window. So, a friend said me that a possible solution for this problem is: 
    Reduce Google Chrome window for -1px in both sides and after this, reset  to original size. And so, will repaint again.
    Based on code below, someone could help me make this? sincerely I don't know where begin.
    [DllImport("user32.dll", SetLastError = true)]
    static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
    [DllImport("user32.dll", SetLastError = true)]
    static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);
    [DllImport("user32.dll")]
    private static extern IntPtr GetDC(IntPtr WindowHandle);
    [DllImport("user32.dll")]
    private static extern void ReleaseDC(IntPtr WindowHandle, IntPtr DC);
    [DllImport("user32.dll")]
    private static extern IntPtr GetWindowRect(IntPtr WindowHandle, ref Rect rect);
    [DllImport("User32.dll", SetLastError = true)]
    [return: MarshalAs(UnmanagedType.Bool)]
    static extern bool PrintWindow(IntPtr hwnd, IntPtr hDC, uint nFlags);
    [StructLayout(LayoutKind.Sequential)]
    private struct Rect
    public int Left;
    public int Top;
    public int Right;
    public int Bottom;
    public static Bitmap Capture(IntPtr handle)
    Rect rect = new Rect();
    GetWindowRect(handle, ref rect);
    Bitmap Bmp = new Bitmap(rect.Right - rect.Left, rect.Bottom - rect.Top);
    Graphics memoryGraphics = Graphics.FromImage(Bmp);
    IntPtr dc = memoryGraphics.GetHdc();
    bool success = PrintWindow(handle, dc, 0);
    memoryGraphics.ReleaseHdc(dc);
    return Bmp;
    private void button1_Click(object sender, EventArgs e)
    IntPtr WindowHandle = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Chrome_WidgetWin_1", null);
    Bitmap BMP = Capture(WindowHandle);
    BMP.Save("C:\\Foo.bmp");
    BMP.Dispose();
    Any suggestions here is appreciated.

    Hello,
    I would prefer capture the screen rather than get it from that application directly.
    It has been discussed in the following thread.
    Is there any way to hide Chrome window and capture a screenshot or convert the Chrome window to image?
    In this case, you could remove the line "ShowWindowAsync(mainHandle, 0); " since you don't want to hide it.
    using System;
    using System.Runtime.InteropServices;
    using System.Diagnostics;
    using System.Drawing.Imaging;
    [DllImport("user32.dll")]
    private static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
    [DllImport("user32.dll")]
    public static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);
    [DllImport("user32.dll")]
    public static extern bool PrintWindow(IntPtr hWnd, IntPtr hdcBlt, int nFlags);
    public WhateverMethod()
    //initialize process and get hWnd
    Process chrome = Process.Start("chrome.exe","http://www.cnn.com");
    //wait for chrome window to open AND page to load (important for process refresh)
    //you might need to increase the sleep time for the page to load or monitor the "loading" title on Chrome
    System.Threading.Thread.Sleep(4000);
    chrome.Refresh();
    IntPtr mainHandle = chrome.MainWindowHandle;
    RECT rc;
    GetWindowRect(mainHandle, out rc);
    Bitmap bmp = new Bitmap(rc.Width, rc.Height, PixelFormat.Format32bppArgb);
    Graphics gfxBmp = Graphics.FromImage(bmp);
    IntPtr hdcBitmap = gfxBmp.GetHdc();
    PrintWindow(mainHandle, hdcBitmap, 0);
    gfxBmp.ReleaseHdc(hdcBitmap);
    gfxBmp.Dispose();
    bmp.Save("c:\\temp\\test.png", ImageFormat.Png);
    ShowWindowAsync(mainHandle, 0);
    [StructLayout(LayoutKind.Sequential)]
    public struct RECT
    private int _Left;
    private int _Top;
    private int _Right;
    private int _Bottom;
    public RECT(RECT Rectangle)
    : this(Rectangle.Left, Rectangle.Top, Rectangle.Right, Rectangle.Bottom)
    public RECT(int Left, int Top, int Right, int Bottom)
    _Left = Left;
    _Top = Top;
    _Right = Right;
    _Bottom = Bottom;
    public int X
    get { return _Left; }
    set { _Left = value; }
    public int Y
    get { return _Top; }
    set { _Top = value; }
    public int Left
    get { return _Left; }
    set { _Left = value; }
    public int Top
    get { return _Top; }
    set { _Top = value; }
    public int Right
    get { return _Right; }
    set { _Right = value; }
    public int Bottom
    get { return _Bottom; }
    set { _Bottom = value; }
    public int Height
    get { return _Bottom - _Top; }
    set { _Bottom = value + _Top; }
    public int Width
    get { return _Right - _Left; }
    set { _Right = value + _Left; }
    public Point Location
    get { return new Point(Left, Top); }
    set
    _Left = value.X;
    _Top = value.Y;
    public Size Size
    get { return new Size(Width, Height); }
    set
    _Right = value.Width + _Left;
    _Bottom = value.Height + _Top;
    public static implicit operator Rectangle(RECT Rectangle)
    return new Rectangle(Rectangle.Left, Rectangle.Top, Rectangle.Width, Rectangle.Height);
    public static implicit operator RECT(Rectangle Rectangle)
    return new RECT(Rectangle.Left, Rectangle.Top, Rectangle.Right, Rectangle.Bottom);
    public static bool operator ==(RECT Rectangle1, RECT Rectangle2)
    return Rectangle1.Equals(Rectangle2);
    public static bool operator !=(RECT Rectangle1, RECT Rectangle2)
    return !Rectangle1.Equals(Rectangle2);
    public override string ToString()
    return "{ + _Left + "; " + " + _Top + "; Right: " + _Right + "; Bottom: " + _Bottom + "}";
    public override int GetHashCode()
    return ToString().GetHashCode();
    public bool Equals(RECT Rectangle)
    return Rectangle.Left == _Left && Rectangle.Top == _Top && Rectangle.Right == _Right && Rectangle.Bottom == _Bottom;
    public override bool Equals(object Object)
    if (Object is RECT)
    return Equals((RECT)Object);
    else if (Object is Rectangle)
    return Equals(new RECT((Rectangle)Object));
    return false;
    And the key method used is the one shared in
    Get a screenshot of a specific application.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Footer seems to be "sticking" to bottom edge of browser window and not bottom of website

    Hi, all
    I am designing a site in Muse CC (2014) and have my footer on the master template located in the designated footer area. But for some reason the footer is anchoring or sticking along very bottom edge of the browser window instead of at the bottom of the live website area. Below is a link to the website:
    Home
    You may need to adjust your window and drag down to see whats actually happening, since on first appearance it seems to sit correctly at bottom edge of website.
    Thanks for your assistance!!
    Howard

    No, its still not correct. It looks like it upon first appearance but if you reduce the view so you can get space below the website, the footer stays fixed to bottom edge of browser window. Seems to happen in most browsers not just Safari. You need to stretch the browser window down and footer moves with it. Thanks.

  • How can I keep the browser window stretched across my two displays?

    I run am trying to run dual monitor setup and have the Firefox browser span the two monitors. Whenever a Firefox dialog opens, such as Preferences or Print, the window zooms to fit the one primary monitor. How can I keep the browser window stretched across my two displays?

    Thanks very much for your response to my question -very helpful.
    Do you have any recommendations for a good book on Edge Animate?
    Thanks,
    Shaun
    Date: Thu, 25 Oct 2012 17:10:43 -0600
    From: [email protected]
    To: [email protected]
    Subject: How can I change the browser window background color when playing an Edge animation?
        Re: How can I change the browser window background color when playing an Edge animation?
        created by heathrowe in Edge Animate - View the full discussion
    ADD this to compositionReady handler, change the hex color code to your desired color //Force body of webpage to a specific color$("body").css("background-color","#5d5e61"); Darrell
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4801409#4801409
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4801409#4801409
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4801409#4801409. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Edge Animate by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • In landscape view Firefox browser not visible, need to make browser window NOT ZOOM or STRETCH!

    Screen goes to black when tablet (ASUS Eee Pad Tablet) is turned to the landscape view I need to make the browser Window on the Android Firefox Browser NOT ZOOM or STRETCH to fill the Screen! [email protected]

    Yes we know that Android improperly suggests using zoom for Firefox mobile. Firefox 9 has a specific tablet UI that will correct this issue. It will be in the Android Market as Firefox beta around Nov 10th.
    https://ianbarlow.wordpress.com/2011/09/30/firefox-for-tablets-lands-in-aurora/

  • Capturing data entered on 2nd browser window

    I have a unique situation. A friend wrote an application to look up employees. This works great. The app searches by last name, and hidden to the user, is the employee numbers and phone numbers of the list that is produced in the search. The only thing the user sees is the list of names from the search result.
    On my website, I want to incorporate this feature. I have a button 'Lookup' on page 1. The user clicks on the the Lookup button and another small window opens (page 2) with the application to search. Once the search is complete, the user will click on a name to select it and then press a Select button.
    What I'd like to happen is:
    When they click on Select, that window will close and all the data associated with the person they selected is populated into various form fields on the original browser window (page 1). I was told I could do this in JavaScript but was wondering if it's just as easy to do in JSP-plain old JSP. If not, any suggestions for JavaScript? Thanks!

    You couldn't do it in jsp without refreshing the parent window.
    Javascript is probably the best approach.
    However that doesn't mean you do it completely without structure.
    I would write a function on the parent window such as
    function populateFieldsFromChild(name, id, phone){
      var theForm = document.forms[0];
      theForm.nameField.value = name;
      theForm.idField.value = id;
      theForm.phoneField.value = phone;
    }then on the popup window have javascript that calls this function:
    function copyFieldsToParent(){
      var parent = window.opener();
      parent.populateFieldsFromChild(.......);
    }Ok, so it adds a bit of redirection, but to my mind it is better than having one html page fiddle with the internal structure of another. Using an interface like this means that if you ever rename fields on the "parent" page you only need to fix things up in that one HTML file, rather than go search through all of the pages that access its internal workings.
    Just my 2 cents,
    evnafets

  • Help capturing screenshots from script

    Hi all,
    I'm helping someone with a project, I'm a fairly experienced Unix and Windows developer but don't know much about Macintosh or Applescript so please excuse me if any of these are stupid questions; if you can direct me to the relevant documentation that would be great.
    I'm trying to write a script to capture screenshots (actually single window captures of the browser window) and save them to disk every N minutes.. I've seen how to do this with the Grab application, or from the command line using screencapture. I don't see how to automate either of these applications through Applescript though; when I select file-> open dictionary they aren't in the list. Does this mean I can't use applescript to drive them? If so, can anyone suggest an alternative?
    2GHz PowerPC G5   Mac OS X (10.4.10)  

    You can use AppleScript to execute screencapture:
    <pre class="command">do shell script "screencapture -S file"</pre>

  • I would like to make firefox browser window much smaller.

    I think this would be so much easier but because I can't seem to shrink or decrease length of browser like I can the Google search window. When I pull it in it just increases length of Google browser window. There isn't room for my add-ons to show. It is unnecessarily long. This should be a complete no-brainer.
    The Troubleshooter add-on doesn't show even though it has been installed because of this issue.

    Are you talking about the location bar and the search bar on the Navigation Toolbar?
    Those two bars have a flex attribute and expand automatically to fill the available space.<br />
    When you add other items to the Navigation Toolbar then they should adjust their width automatically.
    If you mean something different then please try to explain this with more details and possibly attach a screenshot.

  • Opening sales order in new browser window

    hi experts,
    i have ALV table in which one of the columns is sales order number. I made the column as hyperlink so that user can click on it. when the user clicks on this i am calling an event handler method which is linked on_click event of the ALV interface controller . i am able to capture the sales order number in the method. Now i want to call va03 transaction for this sales order in a new browser window. we are going to integrate this application in portal. any ideas?. i heard something about the object based navigation. how to do this?
    thanks
    Edited by: sudhakar murthy on May 12, 2010 6:04 PM

    Hi Sudhakar,
    Check out the below code to open a Transaction from WD in an external window and pass the value in that Transaction. I am passing the value here in the VF03 transaction's Billing document screen field .
      DATA: url TYPE string,
            host TYPE string,
            port TYPE string.
    *Call below method to get host and port
      cl_http_server=>if_http_server~get_location(
         IMPORTING host = host
                port = port ).
      CONCATENATE host ':' port
      '/sap/bc/gui/sap/its/webgui/?~transaction='
      '*VF03 VBRK-VBELN=123456' " 123456 is the value you are passing into the Billing document screen field of the    
       INTO url.                                      "VF03   transaction
    *get the window manager as we are opening t code in external window
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component TYPE REF TO if_wd_component.
      DATA lo_window TYPE REF TO if_wd_window.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
    call the url which we created above
      lo_window_manager->create_external_window(
      EXPORTING
      url = url
      RECEIVING
      window = lo_window ).
      lo_window->open( ).
    Hope it helps you...

  • Managed Attachments - creating a customCO for 'Managed Attachments' and opening a new browser/window  as ActionEvent through processFormRequest()

    Hi All,
    I am working on 'Managed Attachments' integration of Oracle E-Business Suite with Oracle WebCenter Content and I am very new to EBS.
    As per the customer requirement, we needed to enable the Managed Attachments on an SIT page (Employee Self Service --> Special Information-> and click on 'Add' for any of the 'Special Information' section) and the values they fill on these pages need to be passed to webcenter content.  As you know these segment data will not be inserted into the database until the user clicks on 'Submit' button from the review page,
    But the customer wants to save it on the 'Special Information' add page itself.
    Managed Attachments is an out of the box feature offered by Oracle WebCenter Content to replace FND Attachments functionality. Instead of storing the attachments in EBS, it will store to WebCenter Content.
    My requirements are as follows
    1) Enable the managed attachments on he special information 'add' page (e.g Company Property, Disabilities etc),- I am able to do this
    2) The data user fills in these fields , when user clicks on 'Managed Attachments' button , these values should be passed to the URL for managed attachments(which is already set on the button through processRequest() method when the page gets loaded) and thus pass to webcenter content
    With these requirements, the challenges i am facing are
    1) Since the user clicks on 'Managed Attachments' before even he/she clicks on 'Apply' button, how do I capture these values? can pageContext.getParameter('id') can get these?
    (i have already tried to do this in processFormRequest() method and i found that it is working for LOV fields but not for text fields)
    2) if i can get the values in processFormRequest(), how can i open a browser/window for the new URL()
    e.g, i wanted to write something like this and the finalURL is what i wanted to open in a new browser or window as the actionEvent
        public void processFormRequest(OAPageContext pageContext,   OAWebBean webBean) {
    super.processFormRequest(pageContext, webBean);
       String param1 = pageContext.getParameter(“Param1”);
    String param2 = pageContext.getParameter(“param2”);
    String redirectURL = “http://rstnssiovm0072.us.oracle.com:8000/OA_HTML/OA.jsp?page=/oracle/apps/ak/ucm/axf/webui/RedirectToAxfPG&bypassPageCounterIncr=Y&retainAM=Y”;
    String paramURL = “&Parameter1=”+ param1+”&Parameter2=”+ param2;
    String finalURL = redirectURL+paramURL;
    Code part to open the url in a new browser/window
    If anybody can help me with these part, it will be a great help
    thanks a lot in advance
    Regards
    Poornima

    Hi Poornima ,
    Has your prob resolved ? Have you made Managed attachment working via standard adapter as per UCM Admin guide ?
    Configuring the Managed Attachments Solution - 11g Release 1 (11.1.1)
    1. You have first store in some VO if you want to pass this metadata to UCM page , other wise it will not work .Take temp table /VO to store first then same can passed to UCM page as input parameters
    2.What needs to be passed , please refer webcenter guide with key examples given
    Once it is configured properly automatically params will be associated with URL which actually will open UCM page with metadata ( params) being passed.
    Thanks,
    Ashish

  • Opening up PDF in browser window automatically saves it to temp file

    Hi,
    In our application, we send pdfs to a popped open browser window for the user to access.
    One of the access features is a "Save" button on the pdf that will send an xfdf post of the form data back to the server. (we have the server url embedded in a form field an Acrobat JavaScript attached to a button does the "post").
    This usually works fine.  However, we have a few customers that complain the "Save" doesn't work.
    Turns out that the "Save" doesn't work because when the pdf is first loaded, it is being saved to a temporary file on the disk (and not held in the browser memory), so the authentication cookie of the browser session is now no longer retained with the "Saved As" copy of the pdf.  Thus, the pdf "Save" fails.
    So the question is, why does sometimes, the pdf automatically "save as" to the temporary directory, and usually it doesn't have this problem?
    We've seen this both with Acrobat Reader 8 and Acrobat Reader 9 (including the latest 9.3.).
    Thoughts?
    Thanks!

    Hi Bill and Dave,
    Thanks for the thoughts.
    I'm confident that this pdf is getting opened in IE (see attached screenshot from a customer).
    As far as additional clues...  I was banging on this on my machine (Windows 7, IE 8.0.7600.16385), and I did see it occur once.
    Thanks for the thought on the browser.  I'll query the problem customers about their IE version (the site only allows using IE).
    When it occurred, (later it dawned on me...but not at the time), the "plug-in" that opened appeared to be Acrobat Standard window (because in hind-sight, I realized that the "Save As" button was available).  The way I seemed to cause it (but cannot reproduce it now) was to change the "Documents/Save Settings/Every X minutes (to value of 1 minute)", and also the Security(Enhanced) to "Enable Enhanced Security" to "true".
    note:  I have both Acrobat 9 Standard, and Acrobat 9 Reader installed on this machine.
    When I went an reset those values to the original, it was still "stuck" in the "saving to temporary disk" mode (great because it reproduced the problem, but then I seemed to have my machine stuck in this mode).
    So I rebooted, and then the IE plug-in seems to now always run Acrobat Reader...and I had the problem no more.
    I have not yet been able to get this stuck in this mode again...
    Any thoughts would be appreciated!
    Kind regards,
    Andy

  • Captured Clips Not in Browser

    Am having a problem capturing video. The clips exist in the Capture Scratch folder but they have never made it to the project browser window.
    Running 10.4.9 in an iBook G4. Using FCE HD 3.5. Scratch Disk set to an external hd (Maxtor 120) and Easy Setup to DV-NTSC 32 kHz Firewire Basic because my video camera is a Canon ZR 45. Using DV tape---no HD. What else? Initially had a problem with camera recognition, but did the QT thing which solved that.
    Capturing is a problem, yet when I played the QT clips in the Capture Scratch folder they seem OK.
    Anyone have an idea about what is (isn’t) going on? Maybe these clips were never captured at all. So why are they in the folder?

    G'Day Lee.
    If they are on the Scratch Disc and play correctly then the capture side of things is OK.
    The only thing I can think of is that you may have had more than one Sequence open at the time and the captured clips in question have been associted with the Browser Folder that was the active capture bin.
    Always look for a little clapper board icon at the top left of the Browser. It's into this Folder/Bin all captures appear. If so:
    Open your Seqeunce, use File>Import Files, then navigate to your Scratch Disc where the files are you wish to have in Browser, select them and hopefully it's all good.
    Al

  • Changing (master) clip name in browser window

    Hello,
    Did a search for this but found very little and that which was found confused me. Does anyone know whether it's safe to rename clips in the browser window within FCP? And whether it maters if they are master clips or not?
    I just got back from Iceland (went specificly to film) and captured each whole tape with "capture clip" letting FCP automaticly cut it up and name 1, 2, 3 etc. I wouldnt usually do this but I had to get it onto the computer quickly as I was so scared the tapes might break or get lost and the whole trip could be wasted.
    Thanks in advance for any help.
    PS running: iBook G4 1.2GHz, FCP 5, OSX 10.4.5, Pal HDV (HDV HC1) And I know it's not really fast enough for HDV but thats beside the point

    You'll be fine. Just make sure you rename the clips within FCP's browser window, NOT the Finder. (Unless you want to re-import the clips and reconnect all the media) Cheers.
    Quad G5   Mac OS X (10.4.5)   HD Editing Bay

  • HT201361 How do I take a screenshot of a long window that has content too far off the page to see?

    I know about standard tools for capturing screenshots of:
         • whole screen
         • a given window
         • a given selected area drawn with the mouse
    But oftentimes I have a window that has content outside the visible area - where I'd have to scroll up or down to see it all, and cannot see it all at one time. I usually try to shrink the magnification to get it all in my visible area, but this often doesn't work, and degrades resolution.
    I'd really like a tool that captures the whole contents of a long window.  There's got to be a way. How?
    Thanks. - Josh

    If these are web pages, try donationware Paparazzi!
    http://derailer.org/paparazzi/.

  • What metadata is saved within the Quicktime file from the Browser window?

    I'm wondering if anybody could provide a list which contains the metadata that's saved in relation to the available columns in the browser window in Final Cut.
    For example, I know if I change a clip's Reel name, that information is saved into the actual Quicktime file so if I bring that file into a new project, FCP's Reel column will automatically display the new Reel name.
    On the flipside, information such as "Angle" doesn't seem to be saved. Curious as to what's saved and what isn't.

    If you rename the clip in the Browser, that does not affect the captured file. But, if you change the reel name, it is. However, any log notes or things you add in the columns after you capture won't be included in the clip if you import that from the raw file. HOWEVER, it will be attached if you drag the clip from one project to the new one.
    Shane

Maybe you are looking for

  • How to I install Pages 5.2.2 on a second computer using Family Sharing?

    I have Pages 5.2.2 installed on one Mac. The license indicate that it is Family Shareable but how do I install it on the second computer without having to purchase it again?

  • APEX & Workspace Manager

    Hi, I am creating an application using APEX which would be the front end for the WorkSpace enabled database. I am facing trouble with the data that is being displayed in APEX. For example, I am able to add data to a particular workspace using the fro

  • Can I download Forms 6 or 6i for Win.98?

    Does anyone know where I might find either Forms 6 or Foms 6i for Widnows 98 to download? I can't see them anywhere in the OTN. I've downloaded Oracle 8i Personal Edition for Windows 98 (but not unzipped it yet), but what's the good of that without D

  • Computer won't get on Internet, shows its connected but its not.

    When I try to get on the Internet it won't let me, the assistance doesn't work. Other computers can get on just fine. I can't get on the Internet no matter what wireless network I try to connect to.

  • Creating a faux dock, resizing leftover window space, w/devilspie.

    Here's my example. Start a *box session. Start and maximize a program. Then start tint2 or some other dock with a window_role of dock. The maximized program is then resized around the dock. I'd like to do something like this, but with a non dock appl