WWP error when generating HTML files

2008-12-09 Thread Ranvijay Chandel
Hi,

I am getting the following error on the Frame maker Console window
when my WWP is generating HTML output for a particular frame maker book.

MIF:
C:\DOCSOURCE\Staging\AriesDocLibraryOLH\Projects\ProductConcepts\Temp\payment_s\
ystems.mif
(24699): Value of FDX out of range (1633.19).

MIF:
C:\DOCSOURCE\Staging\AriesDocLibraryOLH\Projects\Implementing_Sterling_Applicat\
ions\Temp\Implementing_Sterling_Applications.mif
(25080): Value of DMathSmallVert out of range (-0.00508 pc).

Can anyone please let me know what the issue could be and what I need
to do to resolve it.

Framemaker version is: 7.1p116
WebWork Publisher version: 8.0.8.2296

Thanks in Advance.

Thanks and regards,
Ranvijay Chandel
Senior Information Developer
___


You are currently subscribed to Framers as [EMAIL PROTECTED]

Send list messages to [EMAIL PROTECTED]

To unsubscribe send a blank email to 
[EMAIL PROTECTED]
or visit 
http://lists.frameusers.com/mailman/options/framers/archive%40mail-archive.com

Send administrative questions to [EMAIL PROTECTED] Visit
http://www.frameusers.com/ for more resources and info.


Problem in deleting empty pages

2006-04-24 Thread Ranvijay Chandel
Hi All,


I am having problem in deleting empty pages from each chapter.


Whenever I delete a large chunk of data from a chapter, the empty pages
that are left behind don't get deleted.


I have set the pagination settings for the book as following:
1) 1st Page Side = Read from File
2) Before Saving  Printing = Make Page Count Even (because I want to
have an empty page after each chapter)


But this setting works for some chapters (i.e empty pages get deleted)
but for some chapters it does not work instead it shows a pop window
asking the following question:


The new column layout in csr.fm seems to overlap other objects on
some body pages.
Are you sure you want to do this?
Number of body pages affected:7. First page:38


If I click on OK nothing happens (i.e empty pages don't get deleted)

I tried to solve this problem by writing a script also which works like
this:

I will add a text as Lastpage on the whenever we finish writing a
chapter.. Then, we will find that text and loop through the pages after that
page and delete those empty pages.

For example,
My chapter has 10 pages
I have a text Lastpage inserted in page 7
Pages 9-10 should get automatically deleted from the chapter (Page 8
remains).

If the text Lastpage  is in page 8, pages 9-10 should get
automatically deleted from the chapter

I have written the following script in trying to fix this:

Set CurrentDoc = ActiveDoc;

New StringList NewVar(bPageNos);
New Integer NewVar(currPageNo);
New Integer NewVar(lastPageNo);

Loop ForEach(BodyPage) In(CurrentDoc) LoopVar(oPage)
  //Loop thru all the body pages in a chapter and store their page numbers
in the stringlist
 Add Member(oPage.pagenum) To(bPageNos);
 set lastPageNo = bPageNos.count;
 write lastPageNo;
EndLoop

New String NewVar(bpBodyPage);

//Find the text Lastpage that I inserted on the page at which the chapter
finishes
Find FromTextLoc String('Lastpage') ReturnRange(trange) ReturnStatus
(stat);

   If stat = true
//get the page number where it finds the text Lastpage
set currPageNo = CurrentPage.pagenum;
Write currPageNo;
write lastPageNo;
//Loop from the page where it found the text Lastpage till the last page
in the chapter
 Loop While(i = lastPageNo) LoopVar(i) Init(currPageNo+1) Incr(1)
  write lastPageNo;
//Get the body page for each page that we loop thru and delete that page
Get Object Type(BodyPage) Name(oPage) DocObject(CurrentDoc)
NewVar(lPage);
write lPage;
Delete Object(lPage);
endloop
   endif

But I am getting the following error:
OBJ(NULL) error
on the following line of the code: Get Object Type(BodyPage) Name(oPage)
DocObject(CurrentDoc)

Please suggest a workaround to this solution.

Ranvijay Chandel
Information Developer
Yantra Solutions Pvt. Ltd.
Bangalore (India)
___


You are currently subscribed to Framers as [EMAIL PROTECTED]

Send list messages to [EMAIL PROTECTED]

To unsubscribe send a blank email to
[EMAIL PROTECTED]
or visit 
http://lists.frameusers.com/mailman/options/framers/archive%40mail-archive.com

Send administrative questions to [EMAIL PROTECTED] Visit
http://www.frameusers.com/ for more resources and info.


Intrenal Error

2006-04-24 Thread Ranvijay Chandel
Hi All,

This is a critical error that I am getting when I save one particular
framemaker file in my book.

It does not give this error for other framemaker files.

Please see the attached image for details about the error.

Please provide a solution or workaround to this problem.

Thanks and regards,

Ranvijay Chandel

Information Developer

Yantra Solutions Pvt. Ltd.

Bangalore (India)
___


You are currently subscribed to Framers as [EMAIL PROTECTED]

Send list messages to [EMAIL PROTECTED]

To unsubscribe send a blank email to 
[EMAIL PROTECTED]
or visit 
http://lists.frameusers.com/mailman/options/framers/archive%40mail-archive.com

Send administrative questions to [EMAIL PROTECTED] Visit
http://www.frameusers.com/ for more resources and info.


WWP error when generating HTML files

2008-12-09 Thread Ranvijay Chandel
Hi,

I am getting the following error on the Frame maker Console window
when my WWP is generating HTML output for a particular frame maker book.

MIF:
"C:\DOCSOURCE\Staging\AriesDocLibraryOLH\Projects\ProductConcepts\Temp\payment_s\
ystems.mif"
(24699): Value of FDX out of range (1633.19).

MIF:
"C:\DOCSOURCE\Staging\AriesDocLibraryOLH\Projects\Implementing_Sterling_Applicat\
ions\Temp\Implementing_Sterling_Applications.mif"
(25080): Value of DMathSmallVert out of range (-0.00508 pc).

Can anyone please let me know what the issue could be and what I need
to do to resolve it.

Framemaker version is: 7.1p116
WebWork Publisher version: 8.0.8.2296

Thanks in Advance.

Thanks and regards,
Ranvijay Chandel
Senior Information Developer


Problem in deleting empty pages

2006-04-24 Thread Ranvijay Chandel
Hi All,


I am having problem in deleting empty pages from each chapter.


Whenever I delete a large chunk of data from a chapter, the empty pages
that are left behind don't get deleted.


I have set the pagination settings for the book as following:
1) 1st Page Side = Read from File
2) Before Saving & Printing = Make Page Count Even (because I want to
have an empty page after each chapter)


But this setting works for some chapters (i.e empty pages get deleted)
but for some chapters it does not work instead it shows a pop window
asking the following question:


"The new column layout in csr.fm seems to overlap other objects on
some body pages.
Are you sure you want to do this?
Number of body pages affected:7. First page:38"


If I click on OK nothing happens (i.e empty pages don't get deleted)

I tried to solve this problem by writing a script also which works like
this:

I will add a text as "Lastpage" on the whenever we finish writing a
chapter.. Then, we will find that text and loop through the pages after that
page and delete those empty pages.

For example,
My chapter has 10 pages
I have a text "Lastpage" inserted in page 7
Pages 9-10 should get automatically deleted from the chapter (Page 8
remains).

If the text "Lastpage"  is in page 8, pages 9-10 should get
automatically deleted from the chapter

I have written the following script in trying to fix this:

Set CurrentDoc = ActiveDoc;

New StringList NewVar(bPageNos);
New Integer NewVar(currPageNo);
New Integer NewVar(lastPageNo);

Loop ForEach(BodyPage) In(CurrentDoc) LoopVar(oPage)
  //Loop thru all the body pages in a chapter and store their page numbers
in the stringlist
 Add Member(oPage.pagenum) To(bPageNos);
 set lastPageNo = bPageNos.count;
 write lastPageNo;
EndLoop

New String NewVar(bpBodyPage);

//Find the text "Lastpage that I inserted on the page at which the chapter
finishes
Find FromTextLoc String('Lastpage') ReturnRange(trange) ReturnStatus
(stat);

   If stat = true
//get the page number where it finds the text "Lastpage"
set currPageNo = CurrentPage.pagenum;
Write currPageNo;
write lastPageNo;
//Loop from the page where it found the text "Lastpage" till the last page
in the chapter
 Loop While(i <= lastPageNo) LoopVar(i) Init(currPageNo+1) Incr(1)
  write lastPageNo;
//Get the body page for each page that we loop thru and delete that page
Get Object Type(BodyPage) Name(oPage) DocObject(CurrentDoc)
NewVar(lPage);
write lPage;
Delete Object(lPage);
endloop
   endif

But I am getting the following error:
"OBJ(NULL)" error
on the following line of the code: Get Object Type(BodyPage) Name(oPage)
DocObject(CurrentDoc)

Please suggest a workaround to this solution.

Ranvijay Chandel
Information Developer
Yantra Solutions Pvt. Ltd.
Bangalore (India)



Intrenal Error

2006-04-25 Thread Ranvijay Chandel
Hi All,

This is a critical error that I am getting when I save one particular
framemaker file in my book.

It does not give this error for other framemaker files.

Please see the attached image for details about the error.

Please provide a solution or workaround to this problem.

Thanks and regards,

Ranvijay Chandel

Information Developer

Yantra Solutions Pvt. Ltd.

Bangalore (India)