Question : How to refer dynamically to specific pages in Indesign CS2

In a book I am working on I want to include a line 'See also page xxx' that of course automatically changes with location changes of the target.. Though this seems simple I just do not understand how to realize this.
There is the option of  Continued on p xxx, but this requires that the text frames are connected, There are also other options (hyperlinks, anchors) but none of them seems to fit the bill.

Answer : How to refer dynamically to specific pages in Indesign CS2

Hello :)

In PowerShell make sure that this returns the files you want to remove:


$x = 30 # x days :)
Get-ChildItem "C:\YourFolder" | Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-$x) }


If it does, add this onto the end:


Get-ChildItem "C:\YourFolder" | Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-$x) } | Remove-Item


If you want to test it with Remove-Item on as well you'd need this:


Get-ChildItem "C:\YourFolder" | Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-$x) } | Remove-Item -WhatIf


Remember that files deleted like this won't be going to the recycle bin, so make sure it really only gets what you want first.

HTH

Chris

PS. PowerShell is here if you don't already have it installed: http://support.microsoft.com/kb/968929
Random Solutions  
 
programming4us programming4us