updating linked images in coreldraw x5

in previous versions of coreldraw, updating externally linked image/s is as easy as selecting the linked image/s in Link Manager, then pressing Update the selected out of date object.

however, i cant seem to do this anymore in x5. do i really have to update the linked images 1 by 1?

is there a way i can update linked images like on the previous version of coreldraw, ie x4?

Parents
No Data
Reply
  • ice said:

    in previous versions of coreldraw, updating externally linked image/s is as easy as selecting the linked image/s in Link Manager, then pressing Update the selected out of date object.

    however, i cant seem to do this anymore in x5. do i really have to update the linked images 1 by 1?

    is there a way i can update linked images like on the previous version of coreldraw, ie x4?

    Hi.

    I didn't test this but hopefully it should work for you.

    It will update links in all bitmaps on page.

    -John

     

    Sub updateLinks()

        Dim s As Shape, sr As ShapeRange
       
        Set sr = ActivePage.Shapes.FindShapes(, cdrBitmapShape)
        For Each s In sr
            If s.Bitmap.ExternallyLinked Then
                s.Bitmap.UpdateLink
            End If
        Next s
    End Sub

     

Children