Forum Replies Created
-
AuthorPosts
-
Vinny –
MemberThis could probably be scripted.
Something like this maybe?:
https://codeshare.io/habjsworkshopps: mind the reference point. Script doesn’t handle it…
Vinny –
MemberHi.
Here’s a trick:Set up your TOC paragraph style as “invisible”.
– Font size 0.1 pt
– Color: none
– tracking: -1000
– horizontal & vertical scaling: 1%Set up “Complejo de Culpa” character style like this:
– Font size 11 pt
– Color: [Black] or whatever color you wish
– tracking: 0
– horizontal & vertical scaling: 100%Set up a character style for the TOC page numbers
Now, TOC should carry on “Complejo de Culpa” character style if you manually applied it, which is what I understood… and make all the rest invisible.
Would that work for you?
Vinny –
MemberHi there
Alternatively, you can easily add absolute page numbers within Acrobat Pro.
Just go Tools > Pages > Headers & footersJust click on add page number wherever you like it.
Vinny –
MemberHi David
Apparently, my version do not completely behave like yours. Without closing the document, my Indd keeps the last picked color, even if I close the xref panel.
That said, if you close the doc, it’s a different story. Unfortunately, after some testing, I must say the way the color behave is really inconsistent.
Sometimes it goes back to black, sometimes it picks another (random?) color…
It does not seem to be an document preference, nor an application one. Some sort of “cache” pref, out of the box…
I’m afraid you’ll have hard time finding a solution for this, unless someones pops up with an explanation and/or a solution…
Sorry i can’t help any further…
VinnyVinny –
MemberHi
I cannot replicate your issue (Win7-CS6). Or maybe I misunderstood it…
If I set up the appearance of the visible frame and close the panel, Indd retrieves my settings when I create a new x-ref…
Besides, do you know you can change the appearance of all the x-ref by selecting them all and then go > X-ref options (or select the first one and double-click on the last one while pressing Shift)?Vinny –
MemberSomething like this maybe?
if (parseFloat(app.version) < 6) {
main();
}else{
app.doScript(main, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, “Change cyan tint”);
}function main() {
if (app.documents.length > 0) {
//Variables
var
myDoc = app.documents[0],
myCells = myDoc.stories.everyItem().tables.everyItem().cells.everyItem().getElements();for (i = 0; myCells.length > i; i++) {
if (
myCells[i].fillColor.name != ‘None’ &&
myCells[i].fillColor.colorValue == ‘100,0,0,0’ &&
myCells[i].fillTint == 5) {
myCells[i].fillTint = 10;
}
}} else {
alert(“Open a document”);
return null
}
}Vinny –
MemberThat’s strange…
Maybe you could try restoring preferences…Vinny –
MemberHi!
Create a preflight profile. Under the “Text” submenu, go to “Minimum type size” and select 12pt.Vinny –
MemberOh!
There must be two spaces between the last 0 and the quote in the formula…
This forum apparently deletes multiples spaces.Vinny –
MemberYeah, Indesign doesn’t handle custom cell format very well… (euphemism…)
What I would do is to forget about Excel custom cell formatting and use an Excel function to turn the number into formatted text.
Maybe the easiest way would be to create a new sheet and to use a function to get the real values from your working sheet while turning them into formatted text.
Then, in Indesign, tick “import options” and select that new sheet.I guess the “TEXT” function is the one you are looking for.
See : https://support.office.com/en-us/article/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225cType
=TEXT(YourWorkingSheet!A1;”#,##0.00 “)
in A1 in your new sheet and copy/paste in order to duplicate your working sheet.If your table have always the same number of cells, it should be easy enough
If not (e.g. you have to add/delete rows from time to time), then you’ll have to deal with empty cells.
This would be more a call for an Excel forum…Please note I use a French version of Excel. So I tried to “translate” the function, assuming you have an English version, with a comma as a thousands separator, and a dot as a decimal separator. But I could not test it properly, so hopefully it will be ok.
Hope that helps
VinnyVinny –
MemberDear spammer,
I was wondering if you were expecting to reach the French market with such a brand name.
“LogoVerge”… Thank you for the good laugh ^^Vinny –
MemberWhat kind of graphs are you after?
Maybe this thread could be of any interest : https://forums.adobe.com/message/10338191#10338191Vinny –
MemberNice one Kai!
Now, selecting the anchor could still be a bit of a pain.
Click and drag to select it is great if there’s no object behind.
Otherwise Ctrl + Alt + Click + release Ctrl + Alt + dragging while holding the A-key works. I have played with it and I must say I feel more like a pianist than a graphic designer ^^Vinny –
MemberHi
I am not aware of such a hotkey in Indesign…
I’m afraid you have to switch permanently to direct selection (hitting <kbd>A<\kbd> or <kbd>Crtl<\kbd>+<kbd>Tab<\kbd>)
Tip: assuming you had your object already selected, all anchors points are now selected by default. To select directly the one you want, you can hit <kbd>Crtl<\kbd>+<kbd>Alt<\kbd>. While the cursor changes to a tailless white arrow, click on the desired anchor to deselect all the others. Release and drag.
Please note the shortcuts are for PC…
I know this does not really answer your question, but maybe someone else will come with a direct solution… -
AuthorPosts
