Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Colombo
Red Hat Certified System Administrator (RHCSA) - RHEL 10
Sanjeewani95
Updated:
Friday at 7:43 PM
NURSING , CAREGIVER , HOTEL & BEAUTY COURSES
IVA Para Medical Campus
Updated:
Thursday at 9:24 AM
Handmade Character Soft Toys Peppa Pig Family
anil1961
Updated:
Wednesday at 9:58 PM
Ad icon
Video Content Creator
pramukag
Updated:
Jun 28, 2026
Ad icon
QA Engineer Intern
pramukag
Updated:
Jun 28, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
Computers & Internet
Downloads
@@@@@@ What a Amazing Word File (Funny)
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="SAN_APIIT" data-source="post: 2841003" data-attributes="member: 22533"><p><strong>How to get the embeded flash object</strong></p><p></p><p>1. Open a new Microsoft word document,</p><p> </p><p> 2. Click the Tools menu, Marco, Visual Basic Editor. You can also press the ALT+ F11 hotkey to bring up the VBA editor,</p><p> </p><p> 3. While in MS Visual Basic editor, click the View Code icon on the upper-left panel</p><p> </p><p> 4. Copy the VBA program source code at below here and paste it onto the VBA source code editor,</p><p> </p><p> 5. Go to the line with the file path and Change the file path to the place where u have placed the word file Eg: "C:\folder\filename.doc" </p><p> </p><p> 6. Press F5 to execute the VBA source code,</p><p> </p><p> 7. A message box appears shortly after the Excel file is selected, with a message that says where the extracted SWF Flash animation file is saved in local hard disk!</p><p></p><p></p><p>'||||||| CODE TO USE |||||||</p><p></p><p>Sub ExtractFlash()</p><p></p><p>Dim tmpFileName As String</p><p>Dim FileNumber As Integer</p><p>Dim myFileId As Long</p><p>Dim MyFileLen As Long</p><p>Dim myIndex As Long</p><p>Dim swfFileLen As Long</p><p>Dim i As Long</p><p>Dim swfArr() As Byte</p><p>Dim myArr() As Byte</p><p></p><p>'Enter the Word file name with path that u need to extract the flash object.</p><p>tmpFileName = "C:\filename.doc"</p><p></p><p></p><p>If tmpFileName = "False" Then Exit Sub</p><p></p><p>myFileId = FreeFile</p><p></p><p>Open tmpFileName For Binary As #myFileId</p><p></p><p>MyFileLen = LOF(myFileId)</p><p></p><p>ReDim myArr(MyFileLen - 1)</p><p></p><p>Get myFileId, , myArr()</p><p></p><p>Close myFileId</p><p></p><p>Application.ScreenUpdating = False</p><p></p><p>i = 0</p><p></p><p>Do While i < MyFileLen</p><p></p><p> If myArr(i) = &H46 Then</p><p></p><p> If myArr(i + 1) = &H57 And myArr(i + 2) = &H53 Then</p><p></p><p> swfFileLen = CLng(&H1000000) * myArr(i + 7) + CLng(&H10000) * myArr(i + 6) + CLng(&H100) * myArr(i + 5) + myArr(i + 4)</p><p></p><p> ReDim swfArr(swfFileLen - 1)</p><p></p><p> For myIndex = 0 To swfFileLen - 1</p><p> swfArr(myIndex) = myArr(i + myIndex)</p><p> Next myIndex</p><p> Exit Do</p><p></p><p> Else</p><p> i = i + 3</p><p> End If</p><p></p><p> Else</p><p> i = i + 1</p><p> End If</p><p></p><p>Loop</p><p></p><p>myFileId = FreeFile</p><p></p><p>tmpFileName = Left(tmpFileName, Len(tmpFileName) - 4) & ".swf"</p><p></p><p>Open tmpFileName For Binary As #myFileId</p><p></p><p>Put #myFileId, , swfArr</p><p></p><p>Close myFileId</p><p></p><p>MsgBox "Save the extracted SWF Flash as [ " & tmpFileName & " ]"</p><p></p><p>End Sub</p></blockquote><p></p>
[QUOTE="SAN_APIIT, post: 2841003, member: 22533"] [b]How to get the embeded flash object[/b] 1. Open a new Microsoft word document, 2. Click the Tools menu, Marco, Visual Basic Editor. You can also press the ALT+ F11 hotkey to bring up the VBA editor, 3. While in MS Visual Basic editor, click the View Code icon on the upper-left panel 4. Copy the VBA program source code at below here and paste it onto the VBA source code editor, 5. Go to the line with the file path and Change the file path to the place where u have placed the word file Eg: "C:\folder\filename.doc" 6. Press F5 to execute the VBA source code, 7. A message box appears shortly after the Excel file is selected, with a message that says where the extracted SWF Flash animation file is saved in local hard disk! '||||||| CODE TO USE ||||||| Sub ExtractFlash() Dim tmpFileName As String Dim FileNumber As Integer Dim myFileId As Long Dim MyFileLen As Long Dim myIndex As Long Dim swfFileLen As Long Dim i As Long Dim swfArr() As Byte Dim myArr() As Byte 'Enter the Word file name with path that u need to extract the flash object. tmpFileName = "C:\filename.doc" If tmpFileName = "False" Then Exit Sub myFileId = FreeFile Open tmpFileName For Binary As #myFileId MyFileLen = LOF(myFileId) ReDim myArr(MyFileLen - 1) Get myFileId, , myArr() Close myFileId Application.ScreenUpdating = False i = 0 Do While i < MyFileLen If myArr(i) = &H46 Then If myArr(i + 1) = &H57 And myArr(i + 2) = &H53 Then swfFileLen = CLng(&H1000000) * myArr(i + 7) + CLng(&H10000) * myArr(i + 6) + CLng(&H100) * myArr(i + 5) + myArr(i + 4) ReDim swfArr(swfFileLen - 1) For myIndex = 0 To swfFileLen - 1 swfArr(myIndex) = myArr(i + myIndex) Next myIndex Exit Do Else i = i + 3 End If Else i = i + 1 End If Loop myFileId = FreeFile tmpFileName = Left(tmpFileName, Len(tmpFileName) - 4) & ".swf" Open tmpFileName For Binary As #myFileId Put #myFileId, , swfArr Close myFileId MsgBox "Save the extracted SWF Flash as [ " & tmpFileName & " ]" End Sub [/QUOTE]
Insert quotes…
Verification
Dawasata paya keeyak thibeda?
Post reply
Top
Bottom