VBA script powerpoint auto play random video in slide show mode with looping

Got some VBA code doing great work but lacking the ability to autoplay the video in slideshow mode. Also, since this is a slide used in a bigger kiosk kind of presentation in a loop, I need the slide to being able to execute the random video VBA code each time this slide # is called upon. Maybe I need a complete overhaul of this VBA code to reach my goal? Maybe I need a different perspective on how to achieve my goal? Hope someone can help me with this.

Kind regards, JB from the Netherlands

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>Sub ShowRandomMovie()
Dim pptSlide As Slide
Dim pptShape As Shape
Dim movieFolder As String
Dim movieFiles As Collection
Dim movieFile As String
Dim randomIndex As Integer
Dim videoWidth As Single, videoHeight As Single
Dim shapeLeft As Single, shapeTop As Single
Dim playEffect As Effect
' Set the folder path containing the movies
movieFolder = "C:UsersjohndoeVideos" ' Path to your video folder
' Initialize the collection to hold movie files
Set movieFiles = New Collection
' Check if the folder path ends with a backslash, add one if not
If Right(movieFolder, 1) <> "" Then movieFolder = movieFolder & ""
' Retrieve all MP4 files from the folder
movieFile = Dir(movieFolder & "*.mp4")
Do While movieFile <> ""
movieFiles.Add movieFolder & movieFile
movieFile = Dir
Loop
' Exit if no movies found
If movieFiles.Count = 0 Then
MsgBox "No MP4 files found in the specified folder.", vbExclamation
Exit Sub
End If
' Randomly select an index
Randomize
randomIndex = Int((movieFiles.Count * Rnd) + 1)
' Get the selected movie file
movieFile = movieFiles(randomIndex)
' Set the active slide to insert the video
Set pptSlide = ActivePresentation.SlideShowWindow.View.Slide
' Remove any existing video shapes from the slide to avoid overlap
Dim shp As Shape
For Each shp In pptSlide.Shapes
If shp.Type = msoMedia Then
shp.Delete
End If
Next shp
' Set the video size to fill the entire slide (full screen)
videoWidth = pptSlide.Master.Width
videoHeight = pptSlide.Master.Height
' Position the video to cover the entire slide
shapeLeft = 0
shapeTop = 0
' Add the movie to the slide
Set pptShape = pptSlide.Shapes.AddMediaObject2(Filename:=movieFile, _
LinkToFile:=msoFalse, _
SaveWithDocument:=msoTrue, _
Left:=shapeLeft, _
Top:=shapeTop, _
Width:=videoWidth, _
Height:=videoHeight)
' Ensure the video auto-starts and covers the full slide
With pptShape
.LockAspectRatio = msoFalse
.Width = videoWidth
.Height = videoHeight
End With
' Add play effect to ensure video starts automatically with the slide
Set playEffect = pptSlide.TimeLine.MainSequence.AddEffect(pptShape, msoAnimEffectMediaPlay, , msoAnimTriggerWithPrevious)
playEffect.Timing.TriggerType = msoAnimTriggerWithPrevious
playEffect.Timing.Duration = 0 ' Set duration to 0 to start immediately
' Force the video to start automatically
pptShape.AnimationSettings.PlaySettings.PlayOnEntry = msoTrue
pptShape.AnimationSettings.PlaySettings.HideWhileNotPlaying = msoFalse
End Sub
Private Sub App_SlideShowNextSlide(ByVal Wn As SlideShowWindow)
' Check if the current slide is the one that should play the video
If Wn.View.Slide.SlideIndex = 3 Then ' Change "3" to the index of your video slide
ShowRandomMovie
End If
End Sub
</code>
<code>Sub ShowRandomMovie() Dim pptSlide As Slide Dim pptShape As Shape Dim movieFolder As String Dim movieFiles As Collection Dim movieFile As String Dim randomIndex As Integer Dim videoWidth As Single, videoHeight As Single Dim shapeLeft As Single, shapeTop As Single Dim playEffect As Effect ' Set the folder path containing the movies movieFolder = "C:UsersjohndoeVideos" ' Path to your video folder ' Initialize the collection to hold movie files Set movieFiles = New Collection ' Check if the folder path ends with a backslash, add one if not If Right(movieFolder, 1) <> "" Then movieFolder = movieFolder & "" ' Retrieve all MP4 files from the folder movieFile = Dir(movieFolder & "*.mp4") Do While movieFile <> "" movieFiles.Add movieFolder & movieFile movieFile = Dir Loop ' Exit if no movies found If movieFiles.Count = 0 Then MsgBox "No MP4 files found in the specified folder.", vbExclamation Exit Sub End If ' Randomly select an index Randomize randomIndex = Int((movieFiles.Count * Rnd) + 1) ' Get the selected movie file movieFile = movieFiles(randomIndex) ' Set the active slide to insert the video Set pptSlide = ActivePresentation.SlideShowWindow.View.Slide ' Remove any existing video shapes from the slide to avoid overlap Dim shp As Shape For Each shp In pptSlide.Shapes If shp.Type = msoMedia Then shp.Delete End If Next shp ' Set the video size to fill the entire slide (full screen) videoWidth = pptSlide.Master.Width videoHeight = pptSlide.Master.Height ' Position the video to cover the entire slide shapeLeft = 0 shapeTop = 0 ' Add the movie to the slide Set pptShape = pptSlide.Shapes.AddMediaObject2(Filename:=movieFile, _ LinkToFile:=msoFalse, _ SaveWithDocument:=msoTrue, _ Left:=shapeLeft, _ Top:=shapeTop, _ Width:=videoWidth, _ Height:=videoHeight) ' Ensure the video auto-starts and covers the full slide With pptShape .LockAspectRatio = msoFalse .Width = videoWidth .Height = videoHeight End With ' Add play effect to ensure video starts automatically with the slide Set playEffect = pptSlide.TimeLine.MainSequence.AddEffect(pptShape, msoAnimEffectMediaPlay, , msoAnimTriggerWithPrevious) playEffect.Timing.TriggerType = msoAnimTriggerWithPrevious playEffect.Timing.Duration = 0 ' Set duration to 0 to start immediately ' Force the video to start automatically pptShape.AnimationSettings.PlaySettings.PlayOnEntry = msoTrue pptShape.AnimationSettings.PlaySettings.HideWhileNotPlaying = msoFalse End Sub Private Sub App_SlideShowNextSlide(ByVal Wn As SlideShowWindow) ' Check if the current slide is the one that should play the video If Wn.View.Slide.SlideIndex = 3 Then ' Change "3" to the index of your video slide ShowRandomMovie End If End Sub </code>
Sub ShowRandomMovie()
    Dim pptSlide As Slide
    Dim pptShape As Shape
    Dim movieFolder As String
    Dim movieFiles As Collection
    Dim movieFile As String
    Dim randomIndex As Integer
    Dim videoWidth As Single, videoHeight As Single
    Dim shapeLeft As Single, shapeTop As Single
    Dim playEffect As Effect

    ' Set the folder path containing the movies
    movieFolder = "C:UsersjohndoeVideos" ' Path to your video folder

    ' Initialize the collection to hold movie files
    Set movieFiles = New Collection

    ' Check if the folder path ends with a backslash, add one if not
    If Right(movieFolder, 1) <> "" Then movieFolder = movieFolder & ""

    ' Retrieve all MP4 files from the folder
    movieFile = Dir(movieFolder & "*.mp4")
    Do While movieFile <> ""
        movieFiles.Add movieFolder & movieFile
        movieFile = Dir
    Loop

    ' Exit if no movies found
    If movieFiles.Count = 0 Then
        MsgBox "No MP4 files found in the specified folder.", vbExclamation
        Exit Sub
    End If

    ' Randomly select an index
    Randomize
    randomIndex = Int((movieFiles.Count * Rnd) + 1)

    ' Get the selected movie file
    movieFile = movieFiles(randomIndex)

    ' Set the active slide to insert the video
    Set pptSlide = ActivePresentation.SlideShowWindow.View.Slide

    ' Remove any existing video shapes from the slide to avoid overlap
    Dim shp As Shape
    For Each shp In pptSlide.Shapes
        If shp.Type = msoMedia Then
            shp.Delete
        End If
    Next shp

    ' Set the video size to fill the entire slide (full screen)
    videoWidth = pptSlide.Master.Width
    videoHeight = pptSlide.Master.Height

    ' Position the video to cover the entire slide
    shapeLeft = 0
    shapeTop = 0

    ' Add the movie to the slide
    Set pptShape = pptSlide.Shapes.AddMediaObject2(Filename:=movieFile, _
                                                   LinkToFile:=msoFalse, _
                                                   SaveWithDocument:=msoTrue, _
                                                   Left:=shapeLeft, _
                                                   Top:=shapeTop, _
                                                   Width:=videoWidth, _
                                                   Height:=videoHeight)

    ' Ensure the video auto-starts and covers the full slide
    With pptShape
        .LockAspectRatio = msoFalse
        .Width = videoWidth
        .Height = videoHeight
    End With

    ' Add play effect to ensure video starts automatically with the slide
    Set playEffect = pptSlide.TimeLine.MainSequence.AddEffect(pptShape, msoAnimEffectMediaPlay, , msoAnimTriggerWithPrevious)
    playEffect.Timing.TriggerType = msoAnimTriggerWithPrevious
    playEffect.Timing.Duration = 0 ' Set duration to 0 to start immediately

    ' Force the video to start automatically
    pptShape.AnimationSettings.PlaySettings.PlayOnEntry = msoTrue
    pptShape.AnimationSettings.PlaySettings.HideWhileNotPlaying = msoFalse
End Sub

Private Sub App_SlideShowNextSlide(ByVal Wn As SlideShowWindow)
    ' Check if the current slide is the one that should play the video
    If Wn.View.Slide.SlideIndex = 3 Then ' Change "3" to the index of your video slide
        ShowRandomMovie
    End If
End Sub

New contributor

JBH999 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

VBA script powerpoint auto play random video in slide show mode with looping

Got some VBA code doing great work but lacking the ability to autoplay the video in slideshow mode. Also, since this is a slide used in a bigger kiosk kind of presentation in a loop, I need the slide to being able to execute the random video VBA code each time this slide # is called upon. Maybe I need a complete overhaul of this VBA code to reach my goal? Maybe I need a different perspective on how to achieve my goal? Hope someone can help me with this.

Kind regards, JB from the Netherlands

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>Sub ShowRandomMovie()
Dim pptSlide As Slide
Dim pptShape As Shape
Dim movieFolder As String
Dim movieFiles As Collection
Dim movieFile As String
Dim randomIndex As Integer
Dim videoWidth As Single, videoHeight As Single
Dim shapeLeft As Single, shapeTop As Single
Dim playEffect As Effect
' Set the folder path containing the movies
movieFolder = "C:UsersjohndoeVideos" ' Path to your video folder
' Initialize the collection to hold movie files
Set movieFiles = New Collection
' Check if the folder path ends with a backslash, add one if not
If Right(movieFolder, 1) <> "" Then movieFolder = movieFolder & ""
' Retrieve all MP4 files from the folder
movieFile = Dir(movieFolder & "*.mp4")
Do While movieFile <> ""
movieFiles.Add movieFolder & movieFile
movieFile = Dir
Loop
' Exit if no movies found
If movieFiles.Count = 0 Then
MsgBox "No MP4 files found in the specified folder.", vbExclamation
Exit Sub
End If
' Randomly select an index
Randomize
randomIndex = Int((movieFiles.Count * Rnd) + 1)
' Get the selected movie file
movieFile = movieFiles(randomIndex)
' Set the active slide to insert the video
Set pptSlide = ActivePresentation.SlideShowWindow.View.Slide
' Remove any existing video shapes from the slide to avoid overlap
Dim shp As Shape
For Each shp In pptSlide.Shapes
If shp.Type = msoMedia Then
shp.Delete
End If
Next shp
' Set the video size to fill the entire slide (full screen)
videoWidth = pptSlide.Master.Width
videoHeight = pptSlide.Master.Height
' Position the video to cover the entire slide
shapeLeft = 0
shapeTop = 0
' Add the movie to the slide
Set pptShape = pptSlide.Shapes.AddMediaObject2(Filename:=movieFile, _
LinkToFile:=msoFalse, _
SaveWithDocument:=msoTrue, _
Left:=shapeLeft, _
Top:=shapeTop, _
Width:=videoWidth, _
Height:=videoHeight)
' Ensure the video auto-starts and covers the full slide
With pptShape
.LockAspectRatio = msoFalse
.Width = videoWidth
.Height = videoHeight
End With
' Add play effect to ensure video starts automatically with the slide
Set playEffect = pptSlide.TimeLine.MainSequence.AddEffect(pptShape, msoAnimEffectMediaPlay, , msoAnimTriggerWithPrevious)
playEffect.Timing.TriggerType = msoAnimTriggerWithPrevious
playEffect.Timing.Duration = 0 ' Set duration to 0 to start immediately
' Force the video to start automatically
pptShape.AnimationSettings.PlaySettings.PlayOnEntry = msoTrue
pptShape.AnimationSettings.PlaySettings.HideWhileNotPlaying = msoFalse
End Sub
Private Sub App_SlideShowNextSlide(ByVal Wn As SlideShowWindow)
' Check if the current slide is the one that should play the video
If Wn.View.Slide.SlideIndex = 3 Then ' Change "3" to the index of your video slide
ShowRandomMovie
End If
End Sub
</code>
<code>Sub ShowRandomMovie() Dim pptSlide As Slide Dim pptShape As Shape Dim movieFolder As String Dim movieFiles As Collection Dim movieFile As String Dim randomIndex As Integer Dim videoWidth As Single, videoHeight As Single Dim shapeLeft As Single, shapeTop As Single Dim playEffect As Effect ' Set the folder path containing the movies movieFolder = "C:UsersjohndoeVideos" ' Path to your video folder ' Initialize the collection to hold movie files Set movieFiles = New Collection ' Check if the folder path ends with a backslash, add one if not If Right(movieFolder, 1) <> "" Then movieFolder = movieFolder & "" ' Retrieve all MP4 files from the folder movieFile = Dir(movieFolder & "*.mp4") Do While movieFile <> "" movieFiles.Add movieFolder & movieFile movieFile = Dir Loop ' Exit if no movies found If movieFiles.Count = 0 Then MsgBox "No MP4 files found in the specified folder.", vbExclamation Exit Sub End If ' Randomly select an index Randomize randomIndex = Int((movieFiles.Count * Rnd) + 1) ' Get the selected movie file movieFile = movieFiles(randomIndex) ' Set the active slide to insert the video Set pptSlide = ActivePresentation.SlideShowWindow.View.Slide ' Remove any existing video shapes from the slide to avoid overlap Dim shp As Shape For Each shp In pptSlide.Shapes If shp.Type = msoMedia Then shp.Delete End If Next shp ' Set the video size to fill the entire slide (full screen) videoWidth = pptSlide.Master.Width videoHeight = pptSlide.Master.Height ' Position the video to cover the entire slide shapeLeft = 0 shapeTop = 0 ' Add the movie to the slide Set pptShape = pptSlide.Shapes.AddMediaObject2(Filename:=movieFile, _ LinkToFile:=msoFalse, _ SaveWithDocument:=msoTrue, _ Left:=shapeLeft, _ Top:=shapeTop, _ Width:=videoWidth, _ Height:=videoHeight) ' Ensure the video auto-starts and covers the full slide With pptShape .LockAspectRatio = msoFalse .Width = videoWidth .Height = videoHeight End With ' Add play effect to ensure video starts automatically with the slide Set playEffect = pptSlide.TimeLine.MainSequence.AddEffect(pptShape, msoAnimEffectMediaPlay, , msoAnimTriggerWithPrevious) playEffect.Timing.TriggerType = msoAnimTriggerWithPrevious playEffect.Timing.Duration = 0 ' Set duration to 0 to start immediately ' Force the video to start automatically pptShape.AnimationSettings.PlaySettings.PlayOnEntry = msoTrue pptShape.AnimationSettings.PlaySettings.HideWhileNotPlaying = msoFalse End Sub Private Sub App_SlideShowNextSlide(ByVal Wn As SlideShowWindow) ' Check if the current slide is the one that should play the video If Wn.View.Slide.SlideIndex = 3 Then ' Change "3" to the index of your video slide ShowRandomMovie End If End Sub </code>
Sub ShowRandomMovie()
    Dim pptSlide As Slide
    Dim pptShape As Shape
    Dim movieFolder As String
    Dim movieFiles As Collection
    Dim movieFile As String
    Dim randomIndex As Integer
    Dim videoWidth As Single, videoHeight As Single
    Dim shapeLeft As Single, shapeTop As Single
    Dim playEffect As Effect

    ' Set the folder path containing the movies
    movieFolder = "C:UsersjohndoeVideos" ' Path to your video folder

    ' Initialize the collection to hold movie files
    Set movieFiles = New Collection

    ' Check if the folder path ends with a backslash, add one if not
    If Right(movieFolder, 1) <> "" Then movieFolder = movieFolder & ""

    ' Retrieve all MP4 files from the folder
    movieFile = Dir(movieFolder & "*.mp4")
    Do While movieFile <> ""
        movieFiles.Add movieFolder & movieFile
        movieFile = Dir
    Loop

    ' Exit if no movies found
    If movieFiles.Count = 0 Then
        MsgBox "No MP4 files found in the specified folder.", vbExclamation
        Exit Sub
    End If

    ' Randomly select an index
    Randomize
    randomIndex = Int((movieFiles.Count * Rnd) + 1)

    ' Get the selected movie file
    movieFile = movieFiles(randomIndex)

    ' Set the active slide to insert the video
    Set pptSlide = ActivePresentation.SlideShowWindow.View.Slide

    ' Remove any existing video shapes from the slide to avoid overlap
    Dim shp As Shape
    For Each shp In pptSlide.Shapes
        If shp.Type = msoMedia Then
            shp.Delete
        End If
    Next shp

    ' Set the video size to fill the entire slide (full screen)
    videoWidth = pptSlide.Master.Width
    videoHeight = pptSlide.Master.Height

    ' Position the video to cover the entire slide
    shapeLeft = 0
    shapeTop = 0

    ' Add the movie to the slide
    Set pptShape = pptSlide.Shapes.AddMediaObject2(Filename:=movieFile, _
                                                   LinkToFile:=msoFalse, _
                                                   SaveWithDocument:=msoTrue, _
                                                   Left:=shapeLeft, _
                                                   Top:=shapeTop, _
                                                   Width:=videoWidth, _
                                                   Height:=videoHeight)

    ' Ensure the video auto-starts and covers the full slide
    With pptShape
        .LockAspectRatio = msoFalse
        .Width = videoWidth
        .Height = videoHeight
    End With

    ' Add play effect to ensure video starts automatically with the slide
    Set playEffect = pptSlide.TimeLine.MainSequence.AddEffect(pptShape, msoAnimEffectMediaPlay, , msoAnimTriggerWithPrevious)
    playEffect.Timing.TriggerType = msoAnimTriggerWithPrevious
    playEffect.Timing.Duration = 0 ' Set duration to 0 to start immediately

    ' Force the video to start automatically
    pptShape.AnimationSettings.PlaySettings.PlayOnEntry = msoTrue
    pptShape.AnimationSettings.PlaySettings.HideWhileNotPlaying = msoFalse
End Sub

Private Sub App_SlideShowNextSlide(ByVal Wn As SlideShowWindow)
    ' Check if the current slide is the one that should play the video
    If Wn.View.Slide.SlideIndex = 3 Then ' Change "3" to the index of your video slide
        ShowRandomMovie
    End If
End Sub

New contributor

JBH999 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật