Adding images and buttons without a frame appearing

I would like to add images to some of my pages without having them appear in a frame. I would like to place some transparent gifs on the page to use as buttons for hyperlinks. I would also like to have some photos (with transparent backgrounds that appear on the page and are not surrounded by a picture frame. Any Suggestions

iWeb seems to default to stroking newly-added images and shapes. Pages (iWeb's close relation) includes a way to change the default appearance, but I can't find anything similar in iWeb. You can, of course, remove the stroke using the Graphic Inspector (just set Stroke to None). Transparency in gifs and photo images is supported. Just drag into iWeb or use Insert > Choose... Again, remove the stroke if this appears.

Similar Messages

  • HT201401 When I press the + and - buttons, the volume icon appears, but the slider is empty. When I receive a call, I hear it ring, and I can hear the ringtones in the sound menu. However, the message/mail notifications don't make any noise, and I can't h

    When I press the + and - buttons, the volume icon appears, but the slider is empty. When I receive a call, I hear it ring, and I can hear the ringtones in the sound menu. However, the message/mail notifications don't make any noise, and I can't hear the sound menu.
    - During a phone call, if I put the conversation on speakers ==> it works and the volume bar reappears. I can control the volume with + and - buttons. But when the conversation is over, the bar disappears again.
    - With the headphones, everything is ok!
    - I also noticed (only a few times) that when I do a silent to ringer mode, the volume slider reappears and works correctly during 2 or 3 seconds, before disappearing again.
    I don't know what is problem,because the speakers work.

    Hello jam5064,
    We've an article which provides tips that can help get your iPhone working correctly.
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/TS5180
    Cheers,
    Allen

  • Many images and buttons on websites are not visible and appear as white space.

    i am unable to see buttons such as the "buy now" button, but when i scroll over the white space, the cursor changes to alert me that i've found the button. also, websites i frequent are now missing images and logos on this computer. i am windows XP pro, firefox browser. thanks for any assistance.

    -> click '''Firefox''' button and click '''Options''' -> Content panel -> place Checkmark on '''Load Images Automatically''' -> click '''Exceptions...''' button and click '''Remove All''' -> Now type the address of websites on which you want Images to appear e.g. '''msn.com''' , '''yahoo.com''' , '''google.com''' , etc. -> click '''Allow''' for each, One by One -> click Close - > click OK on Options window -> Restart Firefox
    -> Go to your concerned websites
    * Right-click empty space within the page and click '''View Page Info'''
    * In the '''Page Info''' window, select the '''Media''' panel and Remove Checkmark from '''Block Images'''
    * In the '''Page Info''' window, select the '''Permissions''' panel
    * Under '''Load Images''', Change the setting to '''Allow'''
    * Under '''Set Cookies''', place Checkmark on '''Use Default''' and Change the setting to '''Allow'''
    * Close the Page Info window
    Also see this - Images or Animations do not show
    * https://support.mozilla.com/en-US/kb/Images%20or%20animations%20do%20not%20show
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    Check and tell if its working.

  • Help with images and buttons

    I was wondering if anyone could recommend a tutorial or point me in the right direction. I've been trying to figure out how to use buttons to add images (been using png from photoshop with alphachannel) to a canvas. I don't have any problems skinning the buttons nor putting in a single image, nor text. As far as getting the images to layer when the buttons are clicked then I'm pretty lost. Not sure if an array is best or if adding and removing them as children in another container would be any easier..

    I've been using flash builder beta 2. I was planning on embedding the images. I'm not sure if the help files and examples I am reading are not compatible or if I just have the syntax wrong. I haven't been able to find any examples that use embedded images and toggle visibility. I've used spark components. In design mode it puts the code in for a button when drag-dropped, then recommends using spark component instead. It seems that the only time that the images really do anything is when there's a spark component.
    I've never used flex before would it be easier to use wordpad and try compiling it with something other than flash builder?

  • Adding Scrollbar and buttons to Dynamic Text

    Hello,
    I am trying to connect dynamic text to scrollbar and buttons. I did tutorial and Lynda.com and practically pasted the code in with my file names and for some reason it does not work. It says I have a "Access of Undefined Property mask_mc" Did I need to create a variable for this? I didn't in the tutorial.
    Right now I have the dynamic text loading successfuly in 2 different places and I wantd to add the scrollbar. I put the variables on frame 1 code and then I put the actually load code on the frame where it is needed.
    Any suggestions?
    Thanks! Sandra
    HERE IS CODE FOR FRAME 1:
    var textLoader:URLLoader = new URLLoader();
    var textReq:URLRequest;
    var scrollPercent:Number = 0;
    var minScroll:Number;
    var maxScroll:Number;
    var targetScroll:Number = philText_mc.y;
    var easing:Number = 5;
    var scrollAmt:Number = 15;
    var scrollDirection:Number = 0;
    HERE IS CODE FOR FRAME WHERE TEXT LOADS:
    textReq = new URLRequest("text_philosophy.txt");
    function philosophyTextLoaded(event:Event):void {
        philText_mc.philosophy_txt.text = textLoader.data;
        minScroll = philText_mc.y;
        maxScroll = minScroll - philText_mc.height + mask_mc.height;
    function dragScroller(event:MouseEvent):void
        var dragX:Number = line_mc.x - scroller_mc.width/2 + 1;
        var dragY:Number = line_mc.y;
        var dragW:Number = 0;
        var dragH:Number = line_mc.height - scroller_mc.height;
        scroller_mc.startDrag(false, new Rectangle(dragX,dragY,dragW,dragH));
        stage.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
        stage.addEventListener(Event.ENTER_FRAME, setScrollPercent);
        stage.removeEventListener(Event.ENTER_FRAME, scrollText);
    function stopDragging(event:MouseEvent):void
        scroller_mc.stopDrag();
    function setScrollPercent(event:Event):void
        scrollPercent = (scroller_mc.y - line_mc.y) / (line_mc.height - scroller_mc.height);
        if(scrollPercent < 0)
            scrollPercent = 0;
        else if(scrollPercent > 1)
            scrollPercent = 1;
        targetScroll = (scrollPercent * (maxScroll - minScroll)) + minScroll;
        philText_mc.y -= (philText_mc.y - targetScroll) / easing;
    function scrollUp(event:MouseEvent):void
        setDirection(scrollAmt);
    function scrollDown(event:MouseEvent):void
        setDirection(-scrollAmt);
    function setDirection(dir:Number):void
        scrollDirection = dir;
        stage.addEventListener(Event.ENTER_FRAME, scrollText);
        stage.addEventListener(MouseEvent.MOUSE_UP, stopScrolling);
        stage.removeEventListener(Event.ENTER_FRAME, setScrollPercent);
    function scrollText(event:Event):void
        targetScroll += scrollDirection;
        philText_mc.y -= (philText_mc.y - targetScroll) / easing;
        if(philText_mc.y > minScroll)
            philText_mc.y = minScroll;
            targetScroll = minScroll;
        else if(philText_mc.y < maxScroll)
            philText_mc.y = maxScroll;
            targetScroll = maxScroll;
        scrollPercent = (philText_mc.y - minScroll) / (maxScroll - minScroll);
        scroller_mc.y = (scrollPercent * (line_mc.height - scroller_mc.height)) + line_mc.y;
    function stopScrolling(event:MouseEvent):void
        scrollDirection = 0;
    textLoader.load(textReq);
    scroller_mc.buttonMode = true;
    philText_mc.external_txt.autoSize = TextFieldAutoSize.LEFT;
    scroller_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragScroller);
    textLoader.addEventListener(Event.COMPLETE, philosophyTextLoaded);
    up_btn.addEventListener(MouseEvent.MOUSE_DOWN, scrollUp);
    down_btn.addEventListener(MouseEvent.MOUSE_DOWN, scrollDown);

    Hello again,
    Maybe I am asking this question wrong. Instead of making you try and figure out what's going on in my file what I really need to know is how you would take this code I am attaching and make it happen on another frame besides frame 1 and it doesn't appear on frame 1. I think this may help me understand a little better.
    Also another way I was thinking to get around this would be to pull in an external swf into the spot where I want this text to go because I can make the scrollbars and external text work when it is the only thing going on in the movie. Would this be a bad way to set this up? and also SInce it is an external movie would I have maintimeline issues with mouse/scroller control?
    thanks! sandra
    Here is working code:
    var textLoader:URLLoader = new URLLoader();
    var textFile:URLRequest = new URLRequest("text/external.txt");
    var scrollPercent:Number = 0;
    var minScroll:Number;
    var maxScroll:Number;
    var targetScroll:Number = text_mc.y;
    var easing:Number = 5;
    var scrollAmt:Number = 15;
    var scrollDirection:Number = 0;
    function textLoaded(event:Event):void
        text_mc.external_txt.text = textLoader.data;
        minScroll = text_mc.y;
        maxScroll = minScroll - text_mc.height + mask_mc.height;
    function dragScroller(event:MouseEvent):void
        var dragX:Number = line_mc.x - scroller_mc.width/2 + 1;
        var dragY:Number = line_mc.y;
        var dragW:Number = 0;
        var dragH:Number = line_mc.height - scroller_mc.height;
        scroller_mc.startDrag(false, new Rectangle(dragX,dragY,dragW,dragH));
        stage.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
        stage.addEventListener(Event.ENTER_FRAME, setScrollPercent);
        stage.removeEventListener(Event.ENTER_FRAME, scrollText);
    function stopDragging(event:MouseEvent):void
        scroller_mc.stopDrag();
    function setScrollPercent(event:Event):void
        scrollPercent = (scroller_mc.y - line_mc.y) / (line_mc.height - scroller_mc.height);
        if(scrollPercent < 0)
            scrollPercent = 0;
        else if(scrollPercent > 1)
            scrollPercent = 1;
        targetScroll = (scrollPercent * (maxScroll - minScroll)) + minScroll;
        text_mc.y -= (text_mc.y - targetScroll) / easing;
    function scrollUp(event:MouseEvent):void
        setDirection(scrollAmt);
    function scrollDown(event:MouseEvent):void
        setDirection(-scrollAmt);
    function setDirection(dir:Number):void
        scrollDirection = dir;
        stage.addEventListener(Event.ENTER_FRAME, scrollText);
        stage.addEventListener(MouseEvent.MOUSE_UP, stopScrolling);
        stage.removeEventListener(Event.ENTER_FRAME, setScrollPercent);
    function scrollText(event:Event):void
        targetScroll += scrollDirection;
        text_mc.y -= (text_mc.y - targetScroll) / easing;
        if(text_mc.y > minScroll)
            text_mc.y = minScroll;
            targetScroll = minScroll;
        else if(text_mc.y < maxScroll)
            text_mc.y = maxScroll;
            targetScroll = maxScroll;
        scrollPercent = (text_mc.y - minScroll) / (maxScroll - minScroll);
        scroller_mc.y = (scrollPercent * (line_mc.height - scroller_mc.height)) + line_mc.y;
    function stopScrolling(event:MouseEvent):void
        scrollDirection = 0;
    textLoader.load(textFile);
    scroller_mc.buttonMode = true;
    text_mc.external_txt.autoSize = TextFieldAutoSize.LEFT;
    scroller_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragScroller);
    textLoader.addEventListener(Event.COMPLETE, textLoaded);
    up_btn.addEventListener(MouseEvent.MOUSE_DOWN, scrollUp);
    down_btn.addEventListener(MouseEvent.MOUSE_DOWN, scrollDown);

  • Grab images using IMAQ without sending frame request

    Hello,
    When a camera is externally triggered, is it possible to design a *.vi that makes use of IMAQ and grabs images via Camera Link frame grabber without sending frame request signals AND without knowing the external trigger? Just to grab images whenever FVAL, LVAL and DVAL go high. Possible?
    Thanks.

    Greetings, kcin;
    Just to check whether I understood or not, to have the Framegrabber acquire images when the FVAL, LVAL and DVAL lines go high with no other communication between the camera and the host computer? What exactly is the purpose of this endeavor?
    Initially, I do not believe it would be possible while using our IMAQ Driver simply due to the way it is designed; I will look into the matter further and inform you of my findings.
    Cordially;
    Simon P.
    National Instruments
    Applications Engineer

  • How can I create clearer, sharper images and buttons in Muse?

    How can I create buttons and images that have a vector like clarity? When I upload images (buttons, jpegs and pngs) a lot of the time they seem to have a slightly fuzzy quality to them. I have read previous posts on this matter and none have helped. Any feedback on this will be greatly appreciated. Thanks

    When you place your images in exactly the size you saved them in Photoshop or whatever, Muse doesn’t touch it.
    The quality in this case is the quality you saved the image.
    The best way is, to examine in Muse the available pixel size of the image and then use Photoshop to obtain this size
    A helpful widget to examine the potential size of an image in advance, is the "lore ipsum"-Muse-widget, that you find in the free widget collection "Andrew’s Prototypes":
    Andrew Prototypes | Exchange | Adobe Muse CC

  • Upgrading APEX from 3.2 to 4.0 images and buttons not displaying correctly

    Database 11.2.0.1
    APEX: 3.2.1
    Attemping to upgrade APEX from 3.2 to 4.0. The installation script runs fine and updates the database successfully. I run the .sql to import the images and it ran successfully however when I attempt to access the APEX home page, the images are not loaded and the buttons don't do anything. I did some research through google but did not come to anything that resolved my issue. Does anyone have any ideas?
    Thanks for your time...

    If you are using mod_plsql, you need to run @apxldimg.sql script with SYS user file present with Apex installation. Also provide the location of your apex folder as parameter to this script.
    Habib

  • Adding image and link at bom matrix.

    Hello Friends,
                         I have added two user defined fields in the matrix at bom form as.
    1.For storing image
    2.For storing link
    Now I want to add image and link through coding but this is giving me error as "This is not user defined item."
    Thanks.

    Mithun,
    Did u make sure that the Columns are Active and Editable..? are they visible..??
    To set the value try the following..
    objEdit = objMatrix.Columns.Item("V_12").Cells.Item(pVal.Row).Specific
    objEdit.String = "www.yahoo.com"
    where objEdit is a Edit text.
    Regards,
    Vasu Natari.

  • Crop and Trim without black frame

    Photoshop CS2:
    A screenshot contains an image on a neutral
    background. The image is roughly cropped and
    then trimmed in order to remove small strips
    of the background. As a result the image gets
    a black frame with exactly 1 pixel width.
    So far I have to remove the frame by reducing
    the canvas width and height by 2 pixels each.
    Any better solution ?
    An image with gamut warning shows out-of-gamut
    colors by an 'alarm color'.
    Is it possible to save the entire image directly,
    instead of taking a screenshot ?
    Best regards --Gernot Hoffmann

    depends on the version of iM you're using:
    in older versions, the pic-in-pic was limited: it allowed only to insert content with the same aspect-ratio as the project itself = 16.9 .... if the pic was square, iM added 'borders' to make it fit.
    Work-around:
    make your pics 16:9 by adding transparency, read this in the UseR Tipp section of this board:
    How to create a pointer or a custom title
    or, update to latest iMovie10 ....
    here, a diff. aspect ratio of pic has no 'borders' -effect; .....

  • Images and buttons

    I want to load an image onto the screen and allow the user to touch parts of the image to trigger an event.
    I can get an UIImageView with an image to load onto the screen, but it seems to hide the button I put in place with IB. How can I "hide" the image behind the button so the button will work?
    Is this easier working out of the viewcontroller object or creating a uiview object? Right now, I can only get the image to load if I use a uiview object.
    Should I define the IBAction method for the button in the uiviewcontroller or uiview?

    If you need to know where the touch occurred on the image, take darkpegusus' advice and subclass UIImageView so you can override the touch methods.
    However if you only need to know if the image was touched and don't need the location, a button would work fine and is much easier to program than a subclass.
    You asked how to hide the image. For that all you'd need to do is put a button on top of the image. You'd do that in IB by dragging a button onto the image, then going to the xib window (the window with icons such as File's Owner; if you don't see it select Window->Document). At the left end of the toolbar select ViewMode->center (the switch with 4 horizontal lines). Now expand the content view (probably the bottom icon; it won't be called content view, but it's the view that contains your image view). You should now see your UIImageView and your UIButton as children of the content view. The button will be on top of the image view when it's lower in the list. If the button isn't at the bottom of the list, drag it lower. The button may try to leave the list of children, but make sure it goes into the list (indented) at the bottom. You should now see the button on top of the image view.
    Note that the above procedure makes the button hide the part of the view under it. But I suspect you may have meant "Put the button over the image so it will respond to a touch, but hide the button". If that's what you want, you need an invisible button. You can't do this by setting the button's alpha to zero, because it will no longer respond (alpha needs to be above 0.2 before a view will respond to touch). You also can't change the background of a rounded rect button to clear. It will always be drawn white.
    For an invisible button, what you want is a "custom" type UIButton. Select the button, bring up the Attributes Inspector and at the top of the panel, change the Type to Custom. Next select the image view and bring up the Size Inspector. Write down the x, y, width, height for the image view, then select the button again and set it's dimensions to those numbers in the Size Inspector. You should now have an Invisible button which exactly covers the image view.
    Re your last questions, your UIImageView and UIButton must be added to a view (the IB editor window might be named View Controller, but when you add something to that editor window, it will be added to the controller's view, not the controller itself. I.e. whether or not you use a view controller, controls and other subview are always added to a view object as shown in the xib window.
    If you have a controller, you should "control" the button and image from the controller object. In other words, you'll have your own subclass of UIViewController with instance variables for all the controls on the content view (the view controller's view). You can specify IBOutlet for those instance vars and connect them to the correct controls in IB. Similarly, your view controller subclass should define IBAction methods for each button (or other control), and you make the connection from the buttons to the methold in IB.

  • Background image and buttons

    I got 4 different images. I want to use these images as a background.
    They have to change as soon as the buttons is clicked. I got four buttons.
    Name of the pichtures image1.jpg etc
    the buttons btn1 etc
    I think its possible but i dont know how to work with backgrounds

    ok, that is a start, but as i said im not a real flash user and creater.
    So im gonna need some extra help,
    You might remember kglad that you helped me before. if not I'll post the script.
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    var bar1s:Number = 73.05;
    var bar1e:Number = 665;
    var bar2s:Number = 37.85;
    var bar2e:Number = 630;
    var bar3s:Number = 1.6;
    var bar3e:Number = 595;
    var time:Number = 2;
    trace("bar 1 start" + tweenRight11 +" start "+ bar2s +" end "+ bar2e);
    trace ("The X position of myBox_mc is "+ bar2.x);
    bar1.addEventListener(MouseEvent.CLICK, movebar1);
    var tweenRight11:Tween;
    var tweenLeft11:Tween;
    var tweenLeft12:Tween;
    var tweenLeft13:Tween;
    var tweenLeft14:Tween;
    var tweenLeft15:Tween;
    var tweenLeft16:Tween;
    function movebar1(e:MouseEvent):void{
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1s)< 2)){
         tweenRight11 = new Tween(bar1, "x", Strong.easeOut, bar1s, bar1e, time, true);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft11 = new Tween(bar1, "x", Strong.easeOut, bar1e, bar1s, time, true);   
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft12 = new Tween(bar1, "x", Strong.easeOut, bar1e, bar1s, time, true);
         tweenLeft13 = new Tween(bar2, "x", Strong.easeOut, bar2e, bar2s, time, true);
         if  ((Math.abs(bar3.x-bar3e)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft14 = new Tween(bar1, "x", Strong.easeOut, bar1e, bar1s, time, true);
         tweenLeft15 = new Tween(bar2, "x", Strong.easeOut, bar2e, bar2s, time, true);
         tweenLeft16 = new Tween(bar3, "x", Strong.easeOut, bar3e, bar3s, time, true);
    bar2.addEventListener(MouseEvent.CLICK, movebar2);
    var tweenRight21:Tween;
    var tweenRight22:Tween;
    var tweenRight23:Tween;
    var tweenLeft21:Tween;
    var tweenLeft22:Tween;
    var tweenLeft23:Tween;
    function movebar2(e:MouseEvent):void{
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1s)< 2)){
         tweenRight21 = new Tween(bar1, "x", Strong.easeOut, bar1s, bar1e, time, true);
        tweenRight22 = new Tween(bar2, "x", Strong.easeOut, bar2s, bar2e, time, true);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
        tweenRight23 = new Tween(bar2, "x", Strong.easeOut, bar2s, bar2e, time, true);
         if  ((Math.abs(bar3.x-bar3e)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft21 = new Tween(bar2, "x", Strong.easeOut, bar2e, bar2s, time, true);
         tweenLeft22 = new Tween(bar3, "x", Strong.easeOut, bar3e, bar3s, time, true);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft23 = new Tween(bar2, "x", Strong.easeOut, bar2e, bar2s, time, true);
    bar3.addEventListener(MouseEvent.CLICK, movebar3);
    var tweenRight31:Tween;
    var tweenRight32:Tween;
    var tweenRight33:Tween;
    var tweenRight34:Tween;
    var tweenRight35:Tween;
    var tweenRight36:Tween;
    var tweenLeft31:Tween;
    function movebar3(e:MouseEvent):void{
         trace(bar3.x,bar3s,bar3e,":",bar2.x,bar2s,bar2e,":",bar1.x,bar1s,bar1e);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1s)< 2)){
         tweenRight31 = new Tween(bar1, "x", Strong.easeOut, bar1s, bar1e, time, true);
        tweenRight32 = new Tween(bar2, "x", Strong.easeOut, bar2s, bar2e, time, true);
         tweenRight33 = new Tween(bar3, "x", Strong.easeOut, bar3s, bar3e, time, true);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1e)< 2)) {
         tweenRight34 = new Tween(bar2, "x", Strong.easeOut, bar2s, bar2e, time, true);
         tweenRight35 = new Tween(bar3, "x", Strong.easeOut, bar3s, bar3e, time, true);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenRight36 = new Tween(bar3, "x", Strong.easeOut, bar3s, bar3e, time, true);
         if  ((Math.abs(bar3.x-bar3e)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft31 = new Tween(bar3, "x", Strong.easeOut, bar3e, bar3s, time, true);
    You see that the button is the bar and slides, that is all working and tested real good. Now that is the bar is clicked and that will move the bar but it will have to change the background
    what do you think

  • Adding images and saving PDFs to send.

    Hello!
    I have a PDF file that I want to add/input my texts and images (signatures) into its application forms and SAVE to a PDF again to send.
    Do I really need to get the very expensive Acrobat just to do those simple tasks? Or are there any freeware version for Windows and/or Linux that can do these? I don't need a fancy editor.
    Thank you in advance.

    gimbal2 wrote:
    with single slash in path: "/images/text.png"),There are two slashes in that path, not a single one.
    Resources from a jar file work from the root of the jar. So lets say you have an image stored in your jar like:
    img\myimage.png
    then the path to look it up would be:
    URL url = getClass().getClassLoader().getResource("img/myimage.png");This will work from any java code, no matter how you invoke it. The only restriction is that the file must be on the classpath, meaning in a jar or in the classes directory of a netbeans project.I think that is at least misleading, according to my understanding. When you start a resource path with a / then the path is relative to the Classpath. So if a jar is in the Classpath, a / means the root of the jar. Outside a jar, it is relative to the directory(s) in the Classpath. When you start a resource path without a / it is relative to the .class file. If your class is not in a named package and you jar it, then / or no / is the same.

  • Can an InCopy editor add, remove and edit a text frame placed inside the main story text frame?

    I think I already know the answer to this which is - no. I'll explain why I am asking the question in a second, but the reason I think the simple answer is no is because - text frames are controlled by a designer in the layout file, an editor using incopy can only edit the text and images placed inside text frames, and so cannot resize them, add or delete them.
    Ok, so the reason I have asked this.
    Is there a way around this so that editors in incopy can edit certain types of text frame that are contained within the main text frame? I'm using these text frames to contain specific paragraph styles, giving them a boxed look and also with an anchored icon in the top left of the text frame depending on the type of paragraph it is. See screenshot as an example of a green text frame that I am using to contain paragraphs of type "tip".
    If it is not possible for editors in incopy to add, edit or resize these text frames (green tip frame in the example above), then how else can I style these paragraphs to give the same visual appearance, but without the use of wrapping them in a text frame?
    One (not so good) way around this is for the designer to add the text frames in the layout file after he gets the content back from the editor, then moving the "tip" paragraphs into these newly created text frames. However when the editor updates the content in incopy and gets these new text frames in their copy, they can not then delete them if they wish to, or if they add or reduce content inside of these green text frames then the frames dont grow to fit their edited content. So I dont think its a solution for the designer to control the adding, removing and resizing of these frames.
    UPDATE: I have just discovered that once a text frame has been placed into the document by the designer and the editor updates their copy in incopy-  they can then use the "Position Tool" to select that text frame - allowing them to resize it, or delete it! Fantastic. But would the editor be able to add these frames in themselves to begin with? Maybe have a document containing all of the objects available to them, copy and paste one of them into the main document and edit its content? Does anyone have any advice on how to go about this? Essentially I would like the editor to control the insertion, editing and removal of these inline text frames.

    True. But when all I am trying to achieve is a border around a paragraph, use of a table seems overkill to me. But if thats the only solution I have so far then I will have to go down that route.
    It would be useful to have an object libraries panel in InCopy so that editors can drag across predefined text frames into their doc via InCopy, but I cant see that option in InCopy. is there one? I have also thought about exporting the frames as seperate InDesign Snippets and saving them to an objects folder, then when an editor needs to insert one into their doc they simply use File > Place > "Choose required text frame snippet". However I have found that InCopy can't place InDesign snippets so that theory was a failure. Is there another format I could use to save the objects and bring them into InCopy? List below shows my findings so far for trying to save/export a text frame from InDesign and then import into InCopy:
    InDesign Snippet (.idms) - can't import into InCopy
    InDesign Document (.indd) - imports content as an image - only editable in InDesign
    InDesign Template (.indt) - imports content as an image - only editable in InDesign
    InDesign Library (.indl) - can't import into InCopy - no panel available in InCopy for object libraries (that I can see...)
    InCopy Markup (.icml) - only imports the text, loses the text frame

  • Does video and buttons work on tablet with Acrobat DC?

    In the new Acrobat DC i have added video and buttons to my pdf. Can not make them work on tablets. Any one know what to do?
    Britta

    I suggest you to wait before buying an Isight or any webcam on Mac. I haven't been able to make video communication with other MSN users. MSN for mac doesn't offer video functionality. I've tried third pary MSN clients : aMSN, Mecury, but without success.
    I'm afraid there's no solution at the moment. I've posted several messages, but nobody gives me a solution to that problem, except telling me to use Yahoo or AOL, but nobody uses Yahoo or AOL on PC in Europe and nobody want to install another programm, just because you use another technologie.

Maybe you are looking for