G
Guest
2 things
When I write the macro and execute the macro from the vb editor to change one of the pictures in the slideshow, it works just fine. I made a button and had the button execute the macro from inside the show, everytime my macro stops on the line that would change the picture. It stops at this line
With ActiveWindow.Selection.ShapeRange is there some other line I am suppose to use that works for inside of the slideshow?
Secondly, I run a query on my database, which in turn gives me a webaddress for the desired .gif. When I was writing the macro earlier, I had a shorter url and it worked just fine, but now I have a quite long url, it is http://cormorant.cse.ogi.edu/~works...-01-01/images/isosal_far_5/anim-sal_far_5.gif
the line I am using to edit the shape is
ActiveWindow.Selection.SlideRange.Shapes("Rectangle 5").Select
With ActiveWindow.Selection.ShapeRange
.Fill.UserPicture url
End With
where url is equal to the picture.
Is there a limit to how long the address can be? can it be changed somehow?
When I write the macro and execute the macro from the vb editor to change one of the pictures in the slideshow, it works just fine. I made a button and had the button execute the macro from inside the show, everytime my macro stops on the line that would change the picture. It stops at this line
With ActiveWindow.Selection.ShapeRange is there some other line I am suppose to use that works for inside of the slideshow?
Secondly, I run a query on my database, which in turn gives me a webaddress for the desired .gif. When I was writing the macro earlier, I had a shorter url and it worked just fine, but now I have a quite long url, it is http://cormorant.cse.ogi.edu/~works...-01-01/images/isosal_far_5/anim-sal_far_5.gif
the line I am using to edit the shape is
ActiveWindow.Selection.SlideRange.Shapes("Rectangle 5").Select
With ActiveWindow.Selection.ShapeRange
.Fill.UserPicture url
End With
where url is equal to the picture.
Is there a limit to how long the address can be? can it be changed somehow?