2010-09-22 43 views

回答

7

你想:

app.activeWindow.activePage.name; 

這會給你的實際頁面數字名稱作爲一個字符串(即如果你的網頁用羅馬編號,那麼這將給第五頁'v')。

0

下面將創建一個文本塊與當前頁碼。您也可以通過更改放置文本框的頁面位置將其應用於母版頁。

myDocument = app.activeDocument; 
var myDocument = app.documents.item(0); 
var myPage = myDocument.pages.item(0); 
var myTextFrame = myPage.textFrames.add(); 
//Set the bounds of the text frame. 
// 
myTextFrame.geometricBounds = [0, 0, .52, 5.5]; 
//Enter text in the text frame. 
//("\r" is a return character.+ 
myTextFrame.contents = "P_"; 
myTextFrame.parentStory.insertionPoints.item(-1).contents = SpecialCharacters.autoPageNumber;