Indesign to swf creates grey border

I have asked this before. I have been experimenting with exporting a page turning swf file from Indesign. However, no matter what I do the resultant html file has a grey border. It seems to be generated in Indesign but I can't see any way of either changing the colour or getting rid of it. Any ideas?
Thanks
Ian

I´m afraid that straight from indesing, you won´t get rid of that. Fortunately there´s easy way to do better working html-wrapper. That method is calling swfObject. It´s a little bit different way of building code "around" SWF inside html.
You find handy (and free) SWFObject Generator tool for generating new html-file from address
http://www.bobbyvandersluis.com/swfobject/generator/index.html
It´s online version, theres also an AIR based desktop version of it. Usage is quite simple. go to address above and give name of your swf and dimensions. You have to check dimensions while you export, you can see pixel size of your coming swf at the top of swf export window. Thats about it, generate code and copy/paste it to notepad or some other plaintext editor and name it with extension .html to same directory with your swf. (with AIR you can also use Save command)
If you need even more controls for your swf, you might want to test my eDocBrowser too. You find a sample of it from adress:
http://www.prepress.fi/eDocBrowser
And if you want to test it with your own file(s), you´ll find free demo version from address:
http://www.prepress.fi/edocbrowser_demo/eDB_DEMO.zip
UnZip pakage, export your file to eDB_DEMO folder with name 1_magazine.swf (overwrite old one) and open index.html to your browser from that folder.

Similar Messages

  • SWF grey border when exported

    Can someone give me direction on how to take off or change the color of this border? I've opened up html file and can checnge the background color but nothing is there to change the grey border. Any help would be AWESOME!

    That old eDocContainer was very simple and fast solution... and there is no feature for changing background.
    Why don´t you just download free Trial of eDocker and make your project with eDocManager. Then you can change your background to what ever you like, even texture or photo.... You can download free trial at Adobe Marketplace and use it 3 days for free:
    http://www.adobe.com/cfusion/marketplace/index.cfm?event=marketplace.offering&offeringid=1 7503&marketplaceid=1
    Instruction for changing background (PDF´s page 10):
    http://www.prepress.fi/eDocker_eng/eDocker_ohje_eng.pdf

  • Can I make an InDesign CS4 .swf export scale depending on the open size of a browser?

    Hi there.  I would like to make my inDesign CS4 .swf file able to scale in accordance with the open size of a browser.  When I have used Flash previously changing the size of the document to 100% achieved this effect.  However, I'm not having much luck with this approach with my inDesign CS4 .swf export.  I'm loathe to export it as an XML file for Flash as I want to keep my fancy page turns. Any help would be very much appreciated.  I'm not very fluent in Flash-speak so I'd also appreciate it if anyone offering a solution could t-a-l-k r-e-a-l s-l-o-w.
    Regards,
    Jackie

    This is quite old thread, I don´t have those source codes anymore... besides many people still uses monitors with width of 1024, 1219px wide magazine would clip in those monitors, so I don´t suggest to use it without shrinking....
    Anyway, if you want to improve positioning of your SWF, you have at least two way to do it
    1) Go to free http://www.bobbyvandersluis.com/swfobject/generator/index.html and create a new html-wrapper for your project
    2) If that´s not enough or you want some extra features like zoom, print or search, go to http://www.edocker.com and download a free trial of eDocker.
    ps. eDocker is in Adobe MAX Awards final, if you want to help it to win.... go to
    http://2010.max.adobe.com/awards/finalists/
    and vote for eDocker....

  • Is it possible, automatically, to create a border when a text is inserted.

    Is it possible, automatically, to create a border when a text is inserted.
    Example:
    List with subjects is:
    Name:
    address:
    etcetera...
    When the first subject (Name) is typed then a border will appear around the whole text
    Is this possible in Indesgn?
    Hans

    No. Indesign can't draw borders around text during an interaction. You can either set a border for a text frame or draw an unfilled rectangle around text, which then is an overlaying object, but this can't be automated.
    For an interactive PDF with forms, you can assign actions to a form field, but none to make a frame visible, a frame that would surround the text or show a border on one side.

  • I want to create a border...

    but it is not working!!!!!!! I want to create a border around a box. What I have done is create 2 separate transform groups one with the filled boxes and another with lines. The border works fine if it is just around one box in any position but when it is placed around a group of boxes it doesn't work! Consider the board a boardgame board... there have to be borders around the boxes so that the users can know where a square ends and begins spent all day on this today... didn't think that something so simple would be so difficult!! Thank you in advance for helping! Below is the code
    //This is the code for creating the squares
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.geometry.*;
    import com.sun.j3d.utils.image.TextureLoader;
    public class Square
         public static final float LENGTH = (float)0.05;
         public static final float DEPTH = (float)0.0125;
         public int column;
         public int row;
         public float x;
         public float y;
         public float z;
         private TransformGroup trans;
         private TransformGroup blackLines;
         private Box square;
         private Box lineSquare;
         private Group subGroup;
         private Group lineGroup;
         public Square(Texture boardpic, int column, int row)
              this.column = column;
              this.row = row;
              subGroup = new BranchGroup();
              lineGroup = new BranchGroup();
              Color3f grey = new Color3f(0.5f,0.5f,0.5f);
              Color3f black = new Color3f(1.0f,1.0f,1.0f);
         Transform3D t = new Transform3D( );
              float distanceToEdge = ( LENGTH * (float)4.0 ) - ( LENGTH / (float)2.0 );
              //System.out.println(distanceToEdge);
              trans= new TransformGroup();
              blackLines = new TransformGroup();
              x = -distanceToEdge + ( column * LENGTH ) ;
         y = distanceToEdge - ( row * LENGTH ) ;
              z = -DEPTH;
    Vector3f v = new Vector3f(x, y, z);
              t.setTranslation(v);
              trans.setTransform(t);
              trans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              trans.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
              blackLines.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              blackLines.setTransform(t);
              //sets a black line around a square                    
              Appearance blackLineApp = new Appearance();
              blackLineApp.setColoringAttributes(new ColoringAttributes(black,ColoringAttributes.NICEST));
              PolygonAttributes blPolyAt=new PolygonAttributes(PolygonAttributes.POLYGON_LINE,
                                            PolygonAttributes.CULL_FRONT,0f);
              //blPolyAt.setPolygonOffset(100.0f);
              //blPolyAt.setPolygonOffsetFactor(100.0f);
              blackLineApp.setPolygonAttributes(blPolyAt);
              lineSquare = new Box((LENGTH / 2.0f), (LENGTH / 2.0f), DEPTH, blackLineApp);
              subGroup.addChild(lineSquare);
              //Attributes for creating the filled box
              Appearance appearance = new Appearance();
              PolygonAttributes polyAt=new PolygonAttributes(PolygonAttributes.POLYGON_FILL,
                                            PolygonAttributes.CULL_NONE,0f);
              polyAt.setPolygonOffset(0.1f);
              polyAt.setPolygonOffsetFactor(0.1f);
              appearance.setPolygonAttributes(polyAt);
              appearance.setColoringAttributes(new ColoringAttributes(grey,ColoringAttributes.NICEST));
              appearance.setTexture(boardpic);
              TextureAttributes texAttr = new TextureAttributes();
              texAttr.setTextureMode(TextureAttributes.MODULATE);
              appearance.setTextureAttributes(texAttr);     
              Box square = new com.sun.j3d.utils.geometry.Box((LENGTH / 2.0f), (LENGTH / 2.0f), DEPTH, appearance);
              trans.addChild(square);
              subGroup.addChild(trans);
              subGroup.addChild(blackLines);
         public Group getGroup()
              return subGroup;
         public Group getLines()
              return lineGroup;
    //this the code for creating the board
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.GraphicsConfiguration;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.geometry.*;
    import com.sun.j3d.utils.image.TextureLoader;
    public class Board extends JFrame
         public Square[][] fullBoard = new Square[23][23];
         public Board()
              GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
              Canvas3D c = new Canvas3D(config);
              BranchGroup bg = new BranchGroup();
              TextureLoader picload = new TextureLoader("brown001.gif", this);
              Texture texture = picload.getTexture();
              texture.setMagFilter(Texture.BASE_LEVEL_LINEAR | Texture.NICEST);
              texture.setMinFilter(Texture.BASE_LEVEL_LINEAR | Texture.NICEST);
              for(int col = 1; col < 23; col++)
                   for (int row = 1; row < 23; row++)
                        fullBoard[col][row]=new Square(texture, (col-11), (row-11));
                        bg.addChild(fullBoard[col][row].getGroup());
                        //bg.addChild(fullBoard[col][row].getLines());
              TransformGroup tg = new TransformGroup();
              tg.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              Transform3D rotation = new Transform3D();
              rotation.rotX(java.lang.Math.toRadians( -45 ));
              tg.setTransform(rotation);
              tg.addChild(bg);
              BranchGroup scene = new BranchGroup();
              scene.addChild(tg);
              scene.compile();
              SimpleUniverse u = new SimpleUniverse();
              u.getViewingPlatform().setNominalViewingTransform();
              u.addBranchGraph(scene);
              System.out.println("I am here now");
         public static void main (String [] args)
              Board b = new Board();
    Thanks again...
    -JET-

    Sorry the line:
    subGroup.addChild(lineSquare);
    should read:
    blackLines.addChild(lineSquare);

  • Faint grey border when printing on roll paper in Photoshop CS5

    When I print in Photoshop CS5 on roll paper, there is a faint grey border that prints all around my image.  I haven't created a grey border in my files.  Does anyone know what setting is creating this or what's going on?  And how i can stop it?
    Thanks!

    Also, just did this test:
    I used all of my old settings:
    Roll Paper selected
    Ultra Prem. Photo paper luster
    Super 2880 dpi
    no high speed
    And then I used the old paper profile for ilford gallerie smooth pearl. (I used this even though I'm currently printing on Ilford Prestige paper.)
    And it came out with NO faint grey Border!
    Then I tried it with all of those same settings, except I used the older profile for Ilford Gallerie Smooth Pearl for the ROLL paper (IGSPP11Roll_EPP4800_PSPPn.icc)
    Then I got the grey border.
    And finally just to make sure I wasn't crazy, I tried one more time:
    All settings as above except I chose the GPSPP12_EPSpro4800_PSPPn
    Which is the profile I downloaded to match the prestige paper.
    And GREY BORDER!
    So It seems like using the prestige profile was giving me the wash of grey. And also the roll paper version of the old gallerie smooth pearl also gave me a grey border.
    But what should I do now? I want to use the proper paper profile so my colors and tones come out right. I don't feel comfortable just using the wrong paper profile just to stop the border.
    On another note, I researched the Highlight Point shift (based on advice I heard from a friend) and that really sounded like what was causing it. However, I am not even seeing that on my printing options. I must be using a different driver or something. When I'm in photoshop, i just select "File - Print" and then go through that normal dialog. Is there some other way to print that gives me many more options?
    Thanks to you all for your help so far.

  • Grey border of the detailed navigation node thickens

    Hi Experts,
    When an embedded or URL document library is used in a web page why is the grey border on the right hand side of the detailed navigation node thickened?
    Thanks in advance.

    Hi Vijay,
    you can created an url iview  and give the url property and also set the property to open in new window.
    Assign this a role. when u click the role it automatically open a new  window with the descried url iview.
    hope it helps you.
    Raghu

  • How to create a border for a paragraph ?

    Can anyone tell me how to create a border for a paragraph ? Is this even possible without creating a table ?
    I would like to have the page header with a single line below it and the page footer with a single line above it. Inserting a line seems to force unnecessary space above of below the line and using a table seems to force a blank line below the table also creating unnecessary space.
    Thanks

    Thanks, I had the problem with this approach that the line never appeared on each page but adding to the section master would fix it.
    Still being able to set a border would be good! I did try using the text box but the border options are pretty inflexible. I was unable to just set the top or bottom borders. Did I miss something basic here or is this option just not available ?
    Any idea if this is coming in a future release ?

  • Can a PDF of an Indesign doc be created from Bridge CS3

    Can a PDF of an Indesign doc be created from Bridge CS3 without opening the Indesign file; and retain version cue version info as you would "page information", using an "Adobe PDF Preset" ?

    Hi Willi:
    Thanks for your prompt response.  Do you know if there are any scripts that can do this or at least help automate some of this process?
    Thanks!
    Kevin

  • Can you insert a .swf created in Captivate 6.0 in a new Captivate 5.5 project?

    I have several .swfs created in Captivate 6.0 that I would like to use in my Captivate 5.5 project. Will this work?
    I was hoping I could insert them as animation.

    It is already VERY risky to insert a Captivate created SWF into a mother Captivate file, will often lead to lot of problems because Captivate files are not designed to be used that way. And in your case my intuition tells me it would even be worse, because there were significant changes between 5.5 and 6 (themes is one of them).

  • How to resize a swf created in Catalyst?

    Hello,
    I have created a beautiful site in Catalyst. My problem is: I don't know a code to edit the size of the swf created in Catalyst.
    The swf is now 800 x 600, but I want it to automatically fit the browser.
    I already made an swf in Flash Professional CS5, and then import it in Dreamweaver, and edit 800 x 600 to 100% x 100%.
    This works really well, but when I do the same with my swf created in Catalyst, it doesn't.
    Does anyone know how I can solve this problem?
    Thanks,
    Matiege

    Hi Matiege,
    What version of Fc are you using? The latest version of FC, called "Panini", supports constraints, so you can run the project, resize the browser and all objects that are using constraints will be aligned properly. The object layout constraints are specified with so called "suction cup" displayed when the object is selected. There is also a few options if you right click on the suction cup. The "Panini" is available for download at http://labs.adobe.com/technologies/flashcatalyst_panini/.
    The older version of FC supports absolute coordinates only.
    Does it answer your question?
    Thanks,
    - Mykola
    FC QE

  • In Indesign 3--I created an Elliptical Circle on a black background. I want the circle to be "THICK WHITE" Circumference.

    In Indesign 3--I created an Elliptical Circle on a black background. I want the circle to be "THICK WHITE" Circumference. I can only make the circle either solid black or solid white. I want the circle to be solid black with the circumference of the circle in "THICK WHITE".
    I'm a beginner in this. Somebody gave me a suggestion: "Select the object and make sure the Stroke panel is open (Window>Stroke). Select the size and make it Paper color."
    I went and selected the object as suggested. I then opened the "stroke panel". I could not see any size to select and could not see where to change to paper color. When I change to paper color, the whole circle became white. The only things I see in the stroke panel are as follows: I saw "weight" "Miter limit","cap", "join", "type", "start" "end", "gap Color", "gap tint" and played with all of them and I could not make the circumference "THICK WHITE".
    I'm posting this as a question in the hope somebody can give me a clearer answer. The above response to me ( "Select the object and make sure the Stroke panel is open (Window>Stroke). Select the size and make it Paper color.") was short and sweet but it did not help me. Thank you.

    See your other thread where I explained the color proxies...
    The size of a stroke is correctly termed "weight" and there's a filed for that with a dropdown in the stroke palette, or you can type your own number in.

  • Annoying grey border on layers & slow performance. Help please

    Hi,
    My work recently upgraded me to a new Mac and Adobe CS5 (I was using CS3 before). There are a couple of things in Photoshop that seem weird, and slower and laggier, which just doesn't make sense since I'm now using a newer version of PS on a more powerful Mac.
    Firstly, I've noticed that when I move layers around with the move tool, a grey border appears around them. I find this very distracting and it looks horrible. It just looks and feels so 'wrong' that I assumed it was a bug, and spent half an hour fiddling with various Photoshop and OS settings trying to get rid of it. But after some Googling, I read somewhere that it's actually a new 'feature' in CS5. Please, please, please tell me there's a way to turn it off (I looked in the preferences but couldn't see a relevant option). Not only is it massively distracting and unnecessary, it's very laggy too: when I move a layer around with the mouse, the grey border struggles to keep up with the content of the layer. It's as if the border isn't redrawn frequently enough per second, and as a result, it kind kind of erratically pops and flickers around my layer as I move it around. This leads me to my next issue.
    Certain things, such as moving layers around, are slower than they used to be. If I move a layer with a largish image in it around the screen, the redraw doesn't seem good, and the image flickers and splits as I move it around (this is made worse by the above-mentioned grey border problem). CS3 wasn't this laggy. Also, I've noticed that when I change the colour of things using the colour picker, it doesn't update the screen as quickly as it used to. For example, if I change the "color overlay" settings of a layer, or the colour of a text layer, there's a delay of half a second or so between when I choose a colour on the colour picker and when my image is updated with the new colour. This slight delay quickly becomes very annoying when experimenting with dozens of colours while trying to find the perfect colour for something.
    So, my questions are:
    -Is there a way to turn that grey layer border off
    -Is anyone else finding the redraw performance in CS5 to be subpar? Are there any settings or something I can change to improve it? I don't want super-duper performance. I just want CS5 on a brand new Mac to not feel crappier and laggier than CS3 did on an older, weaker Mac.
    My specs:
    2x 2.26Ghz Quad-Core Intel Xeon Mac Pro with 14GB RAM
    ATI Radeon HD 4870
    OS X 10.6.4
    Photoshop CS5 (12.0.1 x64)
    The above problems relate to big PSD files as well as small, simple PSD files (eg. 1920x1200 pixels with just 3 layers). I've tried enabling/disabling OpenGL and trying different cache levels but that doesn't seem to make a difference.

    1 - Thanks, that fixed it. Though if it's a Mac/cocoa problem, then I wonder why I only ever saw the outline in Photoshop? I tried dragging everything that wasn't nailed down in the OS, yet I never found anything that had a grey box displayed around it. Anyway,  glad to be rid of it. I was beginning to think that I would never be able to upgrade from CS3 on my home computer (I'm using CS5 at work only) - the problem was that annoying to me that it was basically a deal-breaker.
    2 - Sounded promising, but after installing the updates and restarting, the problem has not gone away - at least not entirely. I think dragging large layers around might be a bit smoother now, but changing a text colour or a "color overlay" colour still has a puzzling 0.5 second or so lag. I've been using Photoshop since ver 6, on various PCs and macs, and I've never noticed such a long delay for changing a colour.
    The colour lag, while it shouldn't be there, is an annoyance I can live with. I'm very glad to be rid of that grey box, so thanks.

  • Creating a border around objects?

    This should be simple but as a human being I'm useless and I can't figure it out
    I want to create a border around images like the triangles on
    this website.
    http://www.htmlandcssbook.com/code-samples/chapter-15/example.html
    Baby steps please, as I said I'm an invalid

    I'm 73 you will get that math soon hopefully you also get to 73 some day take your time. By 15 I had to take it in school.
    Equilateral triangle have three equal length sides and all three angle are 60degree  only these will expand with equal size borders added on the three sides.. Some triangle will expand with two equal size borders other all the borders will be different sizes. Symmetric things like squares and circles expand evenly.
    Equilateral triangle:
    You may find this helpful http://www.mathsisfun.com/geometry/symmetry-line-plane-shapes.html

  • Creating a border

    i need help creating a border around an image, that follows the shape of the image around 15mm away. this image is going to be printed onto cardboard to create a cardboard cut out. the border will be the cutting lines. i have been teaching myself so far but i cant think of the easiest way to solve this.

    It's difficult to offer specific advice without really knowing the nature of the artwork, but here's one way that might be applicable:
    Artwork composed of vector shapes. Choose Edit > Copy, then Edit > Paste in Front.
    With the pasted shapes still selected Click the Unite button in the Pathfinder panel to unite the selected shapes into one:
    With the new united shape still selected, choose Object > Path > Offset Path and enter a value of 15mm:

Maybe you are looking for

  • Headphone jack only works for right half headphones

    I had connected my MacBook Pro to a set of speakers using the headphone jack. Ever since then when I use headphones the jack only outputs sound to the right side. There is no red light coming from the jack and I've also tried resetting the SMC but no

  • How to print an invoice + multiple copies in VF01

    Hello, when i create an invoice through VF01, it calls the windows default printer and 1 copy is generated.How do i create  1 original + 3 duplicata?thanks

  • Deploy different Web roles on different Operating Systems?

    The following roles are deployed to Windows Azure Cloud Services. Is it possible to deploy the ARR Role (see image) on Windows 2008 and the Web Role on Windows 2012? Or can you choose only one OS (osfamily) for all Roles? Best Regards, Simon de Kraa.

  • Run on MacBook?

    I borrowed a copy of Final Cut Express HD from a friend to try before I buy kind of thing, but in order to even run it I had to open up the Package Contents and do a bit of modding to the GFX requirements. I know you can't replace the GFX card in a M

  • ACH, WIRE Transfer

    HI what is the difference between the wiretransfer and ACH for outgoing payments and how to configure both, can anyone explain me with steps plzzzzzzz thanks, monica