pixelated buttons despite vector slideshow

Hello

I have created a photo slideshow in Indesign CS6 and exported as vector in PDF format. To navigate, I placed buttons to go to the previous or next picture in the slide show. However, the buttons are pixelated on my iPad. (The article is exported as a PDF and the buttons are as such eps vector files.)

Does anyone know a solution?

The buttons are still pixelated. Put the buttons in MSO work only

and then add no fill or STROKE buttons on them.

BTW, if you are working with the OSM, you should read this:

http://InDesignSecrets.com/extension-deadens-pain-working-multi-state-object

s.php

Tags: Digital Publishing Suite

Similar Questions

  • Custom buttons of Muse slideshow Widgets.

    I do Muse custom slide show buttons using art PSD or PNG? For example, I want to do a "next slide" button by using an image with preference with the States of the mouse.

    See this forum post How to customize the prev buttons and following separately in a slideshow? to better understand.

  • Add the next and previous button in as2 slideshow xml

    Hello.

    I started a tutorial on creating a flash slideshow. This is the as2 code:

    Import mx.transitions.Tween;

    Import mx.transitions.easing. *;

    var myShowXML = new XML();

    myShowXML.ignoreWhite = true;

    myShowXML.load ("slideshow.xml");

    myShowXML.onLoad = function() {}

    _root.myWidth = myShowXML.firstChild.attributes.width;

    _root.myHeight = myShowXML.firstChild.attributes.height;

    _root.mySpeed = myShowXML.firstChild.attributes.speed;

    _root.MyImages = myShowXML.firstChild.childNodes;

    _root.myImagesNo = myImages.length;

    Total = myShowXML.childNodes.length;

    createContainer();

    callImages();

    };

    function createContainer() {}

    _root.createEmptyMovieClip ("myContainer_mc", _root.getNextHighestDepth ());

    myContainer_mc.lineTo (_root.myWidth, _root.myHeight);

    myContainer_mc._x = (Stage.width-myContainer_mc._width)/2;

    myContainer_mc._y = (Stage.height-myContainer_mc._height)/2;

    }

    function callImages() {}

    _root.myMCL = new MovieClipLoader();

    _root.myPreloader = new Object();

    _root.myMCL.addListener (_root.myPreloader);

    _root.myClips_array = [];

    _root.myPreloader.onLoadStart = {function (target)}

    _root.createTextField ("myText_txt", _root.getNextHighestDepth (), 0,0,100, 20);

    _root.myText_txt._x = (Stage.width-_root.myText_txt._width)/2;

    _root.myText_txt._y = (Stage.height-_root.myText_txt._height)/1.08;

    _root.myText_txt. AutoSize = 'center ';

    };

    _root.myPreloader.onLoadProgress = {function (target)}

    _root.myText_txt. Text = "Loading..." + _root.myClips_array.length+"/"+_root.myImagesNo+ 'done '.

    }

    _root.myPreloader.OnLoadComplete = {function (target)}

    _root.myClips_array.push (target);

    Target._alpha = 0;

    If (_root.myClips_array.length == _root.myImagesNo) {}

    myText_txt._alpha = 0;

    moveSlide();

    myShowInt = setInterval (moveSlide, (_root.mySpeed * 1000) + 1000);

    }

    }

    for (i = 0; i < _root.myImagesNo; i ++) {}

    temp_url = _root.myImages [i].attributes.url;

    temp_mc = myContainer_mc.createEmptyMovieClip (i, myContainer_mc.getNextHighestDepth ());

    _root.myMCL.loadClip (temp_url, temp_mc);

    }

    }

    function moveSlide() {}

    current_mc = _root.myClips_array [_root.target_mc];

    new Tween (current_mc, "_alpha", Strong.easeOut, 100, 0, 1, true ");

    _root.target_mc ++;

    If (_root.target_mc > = _root.myImagesNo) {}

    _root.target_mc = 0;

    }

    next_mc = _root.myClips_array [_root.target_mc];

    new Tween (next_mc, "_alpha", Strong.easeOut, 0, 100, 1, true ");

    }

    I created 2 buttons - THEN with the instance name: next_btn and PREV

    with instance name: prev_btn and what are the functions of it (release):

    previous_btn.onRelease = function() {}

    prevImage();

    };

    next_btn.onRelease = function() {}

    nextImage();

    };

    The xml file loading images and change through moveSlide function.

    And now I need to create these new 2 functions in order to give the user the possibility to change the images by itself.

    Somewhere I found a piece of code on this type of functions:

    p = 0;

    function nextImage() {}

    If (p <(total-1)) {}

    p ++ ;

    If (load == filesize) {}

    Picture._alpha = 0;

    picture.loadMovie (image [p], 1);

    picture_num();

    }

    }

    }

    function prevImage() {}

    If (p > 0) {}

    p-- ;

    Picture._alpha = 0;

    picture.loadMovie (image [p], 1);

    picture_num();

    }

    }

    function picture_num() {}

    current_pos = p + 1;

    pos_txt. "Text = current_pos +" / "+ total;

    }

    The link that I had these functions is:

    http://Kirupa.com/developer/MX2004/xml_flash_photogallery.htm

    How to adjust these functions to my slideshow?

    P.S. I'm sorry, but I'm not an expert in as2, but any help is welcome.

    Thanks in advance

    my mistake.  use:

    var nextBool:Boolean = true;

    function moveSlide() {}

    current_mc = _root.myClips_array [_root.target_mc];

    new Tween (current_mc, "_alpha", Strong.easeOut, 100, 0, 1, true ");

    {if (nextBool)}

    _root.target_mc = (_root.target_mc + 1) %_root.myImagesNo;

    } else {}

    _root.target_mc =(_root.target_mc+_root.myImagesNo-1) %_root.myImagesNo;

    }

    next_mc = _root.myClips_array [_root.target_mc];

    new Tween (next_mc, "_alpha", Strong.easeOut, 0, 100, 1, true ");

    }

    previous_btn.onRelease = function() {}

    clearInterval (myShowInt);

    myShowInt = setInterval (moveSlide, (_root.mySpeed * 1000) + 1000);

    nextBool = false;

    moveSlide();

    nextBool = true;

    };

    next_btn.onRelease = function() {}

    clearInterval (myShowInt);

    myShowInt = setInterval (moveSlide, (_root.mySpeed * 1000) + 1000);

    moveSlide();

    };

    p.s. If you use movieclip buttons use swapDepths() to move above your slide.  If they are simple buttons I think you use swapDepths After defining:

    Button.prototype.swapDepths = MovieClip.prototype.swapDepths;

  • Help with buttons for the slideshow

    I'm working on my first flash project.  I created a simple slideshow image 4.  I have created 4 buttons that when clicked, jump to this image in the panel mounting.  I added rollover States for the button. Everything works as I want it.

    My question is how can I get the buttons to have a different look when this particular image is active?

    For example.  When the slideshow is on the 2nd picture, I want 2 button to have an active state (different look as the other three buttons).

    Here's my project file.

    Thank you

    You must use the movieclip buttons.

  • Button highlights: y at - it workaround (as it is in DVDSP) to have the crispy, not pixelated button highlights?

    I am aware of the limitation of 2 bit of the DVD specification.  However, DVD Studio Pro is a workaround that allows decent looking button highlight States.  Is there such a strategy for Adobe Encore?

    Not directly. You can't have images. The solution is to use autoactivate (a button) to access a different menu which changes the image in the background for this button.  You create multiple menus, with an ordinary State for all buttons in all the menus, with the exception of the different "Star" for the "selected" button MouseOver not autoactivate, so this does not work on a computer as you want.

  • Preferences option "vector Snap tools and transforms to the pixel grid" on the options bar

    Hello! Is it possible to put the preferences option ' Snap vector tools and transforms to pixel grid "option vector toolbar.

    I draw web-graphics and icons. I often use vector layers for scalable graphics. So, sometimes I need snaps to the pixel grid is turned on, sometimes I need it's off?

    Whenever I press Ctrl + K to open the dialog box Preferences checkbox enabled. It will be great to have shortened keyboard or button in the options bar to LENGTH fast.

    Is an idea?

    P.S. sorry for my English ^)

    You can record an Action and assign a keyboard shortcut.

    (Another option would be a Script that you could use in a panel of html5, but maybe it's not worth it).

  • Is it possible to obtain folio to make vector buttons, and no raster?

    Just curious if it is possible to get a folio to render a button in vector format and no raster?  I know that there is a little pleasant to tell him to use the vector... but nothing for the buttons that I can find with the multi-state objects?  I don't like how some buttons will eventually look on the Retina display on the iPad...

    Thank you!

    Greg B

    One method is to create a separate invisible button on the button image. This method works very well unless you have a State of click.

  • How can I set the graph on the Panel like buttons?

    Hi all

    I'm trying to control a camera by sending control signals and receive signals from IT. After I take a picture and display it on the screen, I want to put it in the form of an array of bool 2D controls. While I can click on some pixels, to send the next control of the signals that are for addresses. I also want to perform a zoom in and zoom back functions, by which I can clearly see the pixels (buttons). I can only implemented in LabVIEW? If I build a table 2D buttons, I can't get rid of the spaces between the buttons. I'm using LabVIEW 8.5. Any suggestion will be appreciated.

    Best wishes

    Bo

    I'm not clear on what the 2D Boolean table has to do with a photo.

    If you have a photo and when you click on the image means something.  You can use an image control.  Use a mouse on this image event.  Use the mouse coordinates to determine where the image was clicked.

  • Pause button next, previous, AS3?

    Simple question, but how do these buttons to the next or previous scene?

    I have a slide show, however, instead of images, they are video clips of animation frame by frame, and I wondered how the ACE would you?

    There are 2 pages, home page, and a page of 'my samples' with 2 buttons.

    One of these buttons loads the slideshow as soon as it is clicked on. I want to do the next, pause and the back button in this slide show.

    I have the next and previous button, but when I try to use, it just goes to the home page and the slide show continues to play on the home page?

    In addition, for the button pause, would I just need to use a stop action?




    That's what I < next and previous buttons >

    import flash.events.MouseEvent;

    Stop();

    prevBTN.addEventListener (MouseEvent.MOUSE_DOWN, mouseDownHandler1);

    function mouseDownHandler1(event:MouseEvent):void

    {

    prevFrame();

    }

    fwdBTN.addEventListener (MouseEvent.MOUSE_DOWN, mouseDownHandler2);

    function mouseDownHandler2(event:MouseEvent):void

    {

    nextFrame();

    }

    apply nextFrame() and prevFrame() movieclip show.

    for example, if you load a SWF, you can convert the content of the loader as a movieclip and use:

    MovieClip (loader.content) .nextFrame)

  • How to access vector &lt; int &gt; data passed to the function of iteration?

    So, basically, I have all the work by accomplished Supercomputing in the Render() function and threw a vector < int > (with all my final pixel already calculated and stored inside values) to the iteration function.

    However, when I go to assign: output-> red-> green, out-> blue, out-> alpha , result is a revamped image:Screen Shot 2015-07-03 at 2.33.53 AM.png

    My pixel processing function that I pass to the iteration inside the function Render() function looks like this:

    IM with the final pixel data in a vector < int > called given that present a size() of (width * height * 4) with values in rgba order.

    public static PF_Err

    () drawTriangles8

    void * Conref.

    A_long xL,

    A_long yL,

    PF_Pixel8 * inP,

    PF_Pixel8 * output)

    {

    PF_Err err = PF_Err_NONE

    TriangulateInfo * tInfo = reinterpret_cast<TriangulateInfo* > (Conref);

    if (tInfo) {

    Output->Red tInfo->data= [(int) ((xL * 4) + (yL * tInfo->width * 4))];

    Output->Green tInfo->data= [(int) ((xL * 4 + 1) + (yL * tInfo->width * 4))];

    Output->Blue tInfo->data= [(int) ((xL * 4 + 2) + (yL * tInfo->width * 4))];

    Output->alpha tInfo->data= [(int) ((xL * 4 + 3) + (yL * tInfo->width * 4))];

    }

    return err;

    }

    I tried just to save the values of the original image with no calculations done RGBA and try them back on the resulting image so that it remains unchanged and I get always the same the smeared image search. No idea what's going on?

    This is not the point of my last answer.

    my point was that you store in your vector, the pixels in this order:

    x0y0 x0y1, x0y2... x1y0, x1y1, x1y2...

    Maybe the way you shoot you pixels from the vector assume they are

    ordered:

    x0y0 x1y0, x2y0... x0y1, x1y1, x2y1...

    If that's true, which would explain the image being on his side, and the

    the offset to the line you see.

  • Is there a way to get the Illustrator to know how many pixels in an inch?

    Hi, this is my first post so please be gentle!

    I scoured these forums and found no solution to this problem.

    I use Illustrator CS5 to make graphics for printing. I need to print graphic said at 300 DPI, but it seems impossible.

    Illustrator has many parameters that you say, it is at 300 DPI, but it's never.

    Here's the dialog box new file:

    Untitled-1.jpg

    In this example, I do an image I want to print on a piece of letter paper size. The example is square, but it's not important. 8.5 inches at 300 DPI is 2550 pixels. Look what happens when I change the unit to pixels:

    Untitled-2.jpg

    Despite the pixelation effects the value 300 PPI down, he thinks as 8.5 inches is 612 pixels, 72 DPI, NOT 300. Look what happens when I choose the resolution in pixels correct then place it in inches:

    Untitled-3.jpg

    Untitled-4.jpg

    In fact, he thinks I want to print a poster of 35 inches with resolution of gif horrible.

    You could say that the pixels are the only thing that matters when it comes to print, and you would be correct, if I didn't print via a PDF file. When I save a drawing as it to the correct resolution in pixels to PDF format, and then try to print to actual size (300 points to the inch), I get something like this because Acrobat thinks I have a document of 35 inches high:

    Untitled-5.jpg

    Well, you might say, why don't you just print to fit, and you'll be fine? Of course, I can say that my dialog box print to fit page, but it does not to the size of the actual page, it adapts to the print area, which is perhaps a 1/8th inch smaller on each side of the page, which means my 300 points will never fill an inch exactly on my printer. Never in 1 million years, I could print a usable rule.

    Before ask you, yes the rasterization of the Document effects parameters are also 300 PPI and has no effect.

    Anyone know what I am doing wrong?

    It is very difficult for users to get their head around the fact that Illustrator uses Postscript algorythyms in the structure of the document.  A thumb is always equal to 72 dpi.  Those are the points per inch.  No pixels per inch.  You are getting crossed upwards with the confusion between the two.  Illustrator can create a document which consists of 100 dpi, 150 dpi or 300 dpi.  Who would set the patterns together on their head.  You have proven this in your screenshots.  No matter what you do, 8.5 inches equals six hundred and twelve dots per inch.  You enter Math that uses 300 and you get a huge document.  There is no deviation.  One inch is equal to 72 dpi.  Get your hands on the edition of Adobe printing Guide.  The publication, he explains in detail.  Now, you'll notice that there are three different versions of the resolution of the frame: low (72 dpi), medium (150ppi) and high (300ppi).  Like others in this post, I agree that Raster resolution is not the same as the Postscript of 72 dots per inch.  If this is too confusing, don't feel bad.  Just keep your measurements in inches.  Output resolution is determined in the printer driver.  In order to make a screen 150lpi halftone (imagesetter of direct-to-plate), you would need a capable imagesetter to print 5080dpi.  You will notice that there is no way to define it in Illustrator.  The only thing that illustrator can do is set the frame to low, medium, or high resolution.  If you create a document for 200lpi (lines per inch); You must create a custom print resolution (print dialog boxes) of 400ppi.  Most people do not receive even close to such subtleties.  If I were you, get the APPG and study it carefully.

  • Remove the vector mask in Photoshop CC fill layer

    I use Photoshop CC and I can not remove, disable or rasterize a vector mask that is applied to a layer of fill or gradient.

    Am I missing something?

    Delete the vector mask is to press the keys Alt + Ctrl (Option + Cmd) and

    slide the bottom of the icon/pattern/gradient fill layer in the layers panel to the trash can at the bottom of the layers panel.

    You can disable the "vector mask" Shift clicking the path icon in the properties panel.

    A way to replicate the pixelation is a vector mask Ctrl (Cmd) click on the shape layer icon in the Panel layers, add a

    layer mask and then delete the vector mask as described above.

  • Working with vector graphics

    I have a student who created graphs of pixel based in another software.  Since they are not vector graphics, they can be enlarged.  Is it possible to open in elements and convert them to vector graphics?

    If he starts to design elements, which is a maximum file size for creating new models?  If they are vector graphics, does it matter what size they start as?  It will get better enlargements if they start over wholesale to start?

    Which format should one of the uses in saving vector graphics, so that they remain vectors and do not become based pixel?

    Tutorials or articles that you can send me would be appreciated.

    Mary Lou

    I guess that it is not possible to convert pixel into a vector graphics in the elements. Although you can create vector graphics in elements using shape tool. The optimal size of your file will depend on where you want to use the image. The graphic vector will be preserved if you save the image in PSD or TIFF format.

  • Need to convert to vector format.

    I have a document with pictures.  I need to convert it to vector format before sending it to the printer.  Don't know how to do it.  With the help of CS5.  Converted to outline the same?

    Hello

    If you have done something in Adobe Illustrator and save you a vector format - but the images of pixelbased you put in your document remains pixels.

    Vector formats are a mathematical description of the drawing - and does not depend on the resolution of the printer. Format bitmap or pixel is just that - a lot of pixels with each pixel information. If you get a pixel image you do not get more pixels, and at one point given, you will be able to see the pixels. which means that your image looks bad.

    If you 'pens and cups' means you have printed a logo on these objects, I can understand that they say "vector formats" (e.g. freehand or illustrator) because they have probably been cases of beeing handed a pixel in the image of a Web site as an original. These originals have too low resolution to print well. Screen resolution is most often 72 pixels per inch, or lately 94 (?) pixels per inch. To get a clean line in professional printing you need around 1000 pixels per inch in the right size. The Adobe logo at the top of this page is 39 x 64 pixels - if you want to use a picel picture in the size see you for printing, that it would take about 500 x 800 pixels.

    Illustrator IS vector format. EPS vector format IS. Both can hold and display bitmap. GIF, jpg, tif, bmp etc. are pixel formats. PDF = Format of Description of printer, an advancement of the eps and uses all types of images.

    more info on pixels:

    PS I see someone posted while I was writing this
    hope this helps
  • Banner hosting CC Adobe still is not to good on monitor HiDPI retina

    I tried both methods recommended in the Cory Hudson posts on this topic, but I'm not able to get clear results. The techniques I've tried are found in these two articles.

    HTML5 Ad creation with Adobe CC animated step-by-step | Blog hosting the Adobe team

    Create ads in HTML5 with CC animate: canvas reactivates the scale. Blog hosting the Adobe team

    (essentially the scale to the top of my 200% chart, then the clip in which it resides up to 50%. My image looks good on a non-retine screen but the image looks munged and fuzzy on a retina display.

    I just added my own graphics to format double and put on the scale then it is the movieclip to 50% in the file that Cory article provides. Here is a link to this file Animate. If anyone is familiar with this technique could take a look, I would be very happy.

    Dropbox - RECOVER_DoubleClick_AdStarter_300x250_Final.fla

    below you can see the screenshots taken with the same file HTML is available on the retina and a non-retine monitor.

    screenshotFromRetina.jpgscreenshotFromNonRetina.jpg

    Thank you very much! Tom

    It looks a lot like a retina display (I tested on my Macbook Pro), but not so good non-retine. (Thunderbolt screens aren't retina and have a lower pixel density, despite their large size).

    What you see, it's pretty standard for thin vector lines on screens with a low density of pixels; It is not a problem specific to animate.  If you enlarge the logo it looks good on the retina and non-retine poster, because you will have the same number of fine lines on the fraction of pixels on your screen non-retine.

Maybe you are looking for

  • Satellite Pro M15-S405 - password at startup

    Hello! Laptop 1 day install the password to turn on.Need code for answers.In our region without 1 ASP service center. Uzbekistan. Tashkent.The reference in support of the Russia, they threw support on some companies in a Russian region, seeking to br

  • I'm sure that I've been hacked. Can you help me?

    I have never tried to install a Windows partition on my computer.  My iMac started running slowly and I was worried.  I now have Windows Server on the computer logs as well.  I have Offivc Here's what I found in one of the newspapers: Jan 26 06:01:29

  • ENVY 750-197c: cannot download drivers Win 10? "We have found the drivers for your product...". »

    I just installed Win 10 (64-bit) on my desktop and I want to install/update the drivers on my computer because my internet on it is a little wonky (and in general I want to update the drivers anyway). However, when I go to the page "Software and driv

  • NET updates do not install

    updates automatic for the NET framework are not install, no idea why and how fix it. try to get a gaming mouse to work and need the latest updates for the net framework works from 2 to 3.5

  • Problem ze zmiana jezyka

    MAM Francuska versions Visty I chce Francuska klawiature zmienic na polska (na polskie znaki). Jak to zrobic?