Back

If your email is not recognized and you believe it should be, please contact us.

Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • in reply to: Multiple video files playing at the same time #100269
    David Nightingale
    Participant

    Hi Ken

    Darn…it’s annoying that Keynote will do this but iBooks won’t. Galdo’s Gift looks good, I’ll take a look at that with my kids.

    Thanks

    in reply to: 360 Panoramic VR into an ePub #100209
    David Nightingale
    Participant

    Thanks David

    I’ll take a look at that and see if it will work with what I’m trying to achieve.

    in reply to: 360 Panoramic VR into an ePub #100191
    David Nightingale
    Participant

    Hi Ken

    Thanks for the info. I’ve just had a quick look at your site, it looks like an interesting piece of software. I may give the demo a go, but I’m not sure that my boss will spend any money on the ePub I’m creating.

    Thanks again

    David Nightingale
    Participant

    Hey that’s great. I’ve tweak the GREP a little so what is selected is more exact.

    var
    textInCell=[‘Corporate’, ‘Scotland’, ‘South West’, ‘London South & South East’, ‘Powered Access’, ‘Rail’, ‘Traffic’, ‘Leada Acrow’, ‘PSS Hire’, ‘FLG Services’, ‘Health & Safety & Training’];
    var myRegEx = new RegExp(“^(“+textInCell.join(“|”)+”)$”);
    for (i=0; i<table.cells.length; i++)
    {
    if (table.cells[i].texts[0].contents.match(myRegEx))
    table.cells[i].appliedCellStyle = “District Cell”;
    }

    I’ve got one other element to add in to my table formatting. I want to find a cell with the word ‘Budget’ (but this may be written as ‘Budget:’ or ‘Budget: (E)’ – but without the speech marks) and apply the Cell Style – SponsorCellStyle – to the whole row. I’ve currently got this going on, but it isn’t working:

    //Find Text in Cell and apply Cell Style to Row
    for (i=0; i<table.cells.length; i++)
    {
    if (table.cells[i].texts[0].contents == “Budget:”)
    table.rows.everyItem().appliedCellStyle= “Sponsor/Owner Cells”;
    }

    Could you possibly help with this last bit?

    in reply to: Cycling through paragraph styles script – Help Needed #76616
    David Nightingale
    Participant

    Hi

    Thanks for getting back. Just to update this thread I got the script working with help from the Adobe forum yesterday, anybody interested can see it here https://forums.adobe.com/thread/1900288

    Thanks again

    in reply to: Help with a script to unlink 'Place and Link' content #65341
    David Nightingale
    Participant

    I’ve kind of solved this. 2 lines of code, that could perhaps be written a little better, i’m not the best at writting code.

    app.activeDocument.links.everyItem().unlink()
    app.activeDocument.links.everyItem().unembed()

    The first line of the above will unlink every item. This removes the ‘Place and Link’ content but it embedding other images. The second line will then unembed these images returning them to how they were.

    in reply to: Import scripting #63889
    David Nightingale
    Participant
    in reply to: FindChangeByList problem #63884
    David Nightingale
    Participant

    Just to add, the “Z” part does actually have 2 backslashes in my txt file, the forum post has remove 1 backslash.

Viewing 8 posts - 1 through 8 (of 8 total)