Hi!
Here is my problem. I have 26 videos that I am working with as I design a large interactive pdf. there are hundreds of links involved- including 'seek to time' in the videos (over 300 links there alone). So- then my clients call and say- Wait we made a minor change in these four videos. Yikes! So when I delete the old video and add the new one- the old video still remains somewhere. The reason I know this is because the PDF file size stays the same once I delete the old video and save. Where did it go? I cant find it anywhere- yet it is somewhere- taking up my precious space as I am trying to keep this below 4GB. This is before I even replace it with the new video. How do I delete a video completely- and the memory it takes up too? It would be a great bonus if the links would remain hot after I replace the video.
Thank You!
Melanie
The reason is obscure (to do with the need for a MMO9 link to have an end-point) and I'm working on it, but for now the only solution if you've used multimedia actions in your links is to delete the RMA [u]and[/u] all the links targeting the RMA, at which point the embedded FLV file is magically removed.
To get round this problem, [i]do not use the multimedia operations in the link actions panel[/i] - instead use "run a Javascript" and manually target the RMA using ActionScript. That way, Acrobat has no idea what the end point is, and won't insist on keeping the RMA in the stream.
For example if you have a link which should seek to the 10 second point in the first video on the current page, set the action to "run a Javascript" and in the editor, type this one line:
[b]getAnnotsRichMedia(pageNum)[0].callAS("multimedia_seek",10);[/b]
For the other operations, see the Acrobat 9 SDK.
If all the links use this JS action, you can delete the video and replace it with something else, and the links will keep working. The only thing to watch is if you've got more than one RMA on a page, you need to put the correct number in the square brackets, and you may need to play about to find what the number should be (it'll change if you replace one on a page with others present, as the array is in "date drawn" order, not position in the flow).