Tabun,
The code needs to initialize and PowerPoint does not provide autorun macros
within a Presentation, they are available only within an add-in.
--
Regards
Shyam Pillai
"tabun" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> I need to autorun macro!!!
>
> Can I autorun macro without clicks?
>
> I use handler:
>
> Class1:
> -
> Public WithEvents App As Application
>
> Private Sub App_SlideShowNextSlide(ByVal Wn As SlideShowWindow)
> If Wn.View.CurrentShowPosition = 25 Then
> Slide138.WebBrowser1.Navigate "http://www.promo.ru"
> Else
> MsgBox Wn.View.CurrentShowPosition
> End If
> End Sub
> -
>
> Module1:
> -
> Dim X As New Class1
> Sub InitializeApp()
> Set X.App = Application
> End Sub
> -
>
> But I haven't autorun function InitializeApp(), only runs on clicks!
>
> Can I autorun macro without clicks?
>
>
> ------------------------------------------------
> ~~ Message posted from http://www.ExcelTip.com/
> ~~View and post usenet messages directly from http://www.ExcelForum.com/
>