Forum Replies Created
-
AuthorPosts
-
fruitlesseffort
MemberIt is timed. I can't remember exactly how much, but I had more than enough time to go through the questions twice and then back over any marked ones for final checking. I think I had about 30 minutes left at the end and I took my time.
You can start it as soon as the payment goes through, but you are given an amount of time that it will be available, which I think was a couple of days from the point of purchase. Obviously as soon as you start the exam, that is it!You can't pause for a day and come back later. Which I could have done with as my wife and kids returned home halfway through mine.
As its an online exam I am not sure what the rules are with regard to having notes or reference books. I mean there is no-one there to stop you! Most of the questions were structured in such a way that having a few notes wouldn't have helped anyway.
I would say brush up on everything, especially any weak areas you had when you sat the CS5 exam as you never know what will crop up.
fruitlesseffort
MemberHello, I took the recertification last week. I was quite suprised just how few questions were about new features in CS6. So be prepared for that!
fruitlesseffort
MemberTook the recert exam today, I got a pass so I am happy with that. You are right about the nature of some of the questions though. Also, all in all it was a bit tougher than I expected as my day to day work doesn't require the majority of the stuff they ask!
fruitlesseffort
MemberHello, I want to recertify for CS6, not for any other reason than I want to do it. I have a few IT qualifications but the InDesign one is the one I am most proud of and would like to keep it up to date. This is mainly due to the lack of information available to assist you in sitting the exam–although the InDesign Secrets ebook was a great help!
I have just had a quick look at the requirements and the recertification document is, as far as I can tell, indentical to the certification one. I take it I just have to know about the new features? Or is there a chance some other things will be thrown in from previous versions. If so I will need to brush up, as learning for the exam and how I use InDesign day to day are two vastly different things!
Any advice would be greatly appreciated.
fruitlesseffort
MemberThanks for the tip. I have that working now.
One last thing though. Could you let me know how I can check to see if a particular layer (by name) exists and if it does then stop the script with an alert. When this layer name occurs on a document I need to be aware of it as I need to manually adjust the content.
Thanks again!
fruitlesseffort
MemberThanks for pointing me in the right direction, I have figured it out now! Works great.
fruitlesseffort
MemberHello
I think I may have oversold myself there! Below is the script as it currently stands. It takes a single file and repeats placing it x ammount of times on an A3 page. After it each placement it checks to see how much space is left on the page and then, if required, adds a new page and starts again.
It's my first attempt at javascript, so I dont know if its a bit too verbose! I have had to retype it as it wouldn't paste correctly! So please excuse any spelling errors!
Could you please show me how to integrate the above in the script and how to alter the loop correctly.
Thanks for help so far!
var myDoc = app.documents.add();
myDoc.documentPreferences.pageHeight = 297;
myDoc.documentPreferences.pageWidth = 420;
var pagHeight = myDoc.documentPreferences.pageHeight;
var myY1 = 10;
var myX1 = 10;
var myY2 = 20;
var myX2 = 20;
var myPage = app.activeWindow.activePage;
var aFile = new File(“Path to my image”);
for(var i = 0; i < 20, i++){
//Make frame and place graphic
var myFrame = myPage.rectangles.add();
myFrame.geometricBounds = [myY1,myX1,myY2,myX2];
myFrame.contentType = ContentType.GRAPHIC_TYPE;
myFrame.place(aFile);
myFrame.fit(FitOptions.FrameToContent);
//Get new gb references – my use some of this at a later date!
var myGb = myFrame.geometricBounds;
var xcoord = myGb[1];
var xcoord = myGb[0];
var frameWidth = myGb[3] – myGb[1];
var frameHeight = myGb[2] – myGb[0];
if(myGb[2] >= pagHeight – frameHeight){
var myPage = myDoc.pages.add();
var myY1 = 10;
var myX1 = 10;
var myY2 = 20;
var myX2 = 20;
}else{
var myY1 = myY1 + (frameHeight + 3);
var myY2 = myY1 + frameHeight;
}
}
fruitlesseffort
MemberHi Kasyan
Thanks for this, sorry for the late reply! I am getting an error at
for (j = graphics.length-1; j >= 0; j–) {
Any idea why?
Thanks again!
fruitlesseffort
MemberThanks for those suggestions, I am really just trying things out and figured it would be a good place to start as it was something I had to do. The name isn't common or an actual real word and its not XYZ (or C for that matter!) so the random capitalisation shouldn't be a problem. Although I will probably just do a find/change, as you say, for the actual job.
Thanks again!
-
AuthorPosts
