How to merge borders of repeating frame and frame objects?

Hi All,
I have a repeating frame inside a frame.
Can someone tell me how to merge borders of repeating frame and frame objects?
I have searched this forum and spent lot of time. But I think I am missing simple thing.
THanks,
Sathish

I think 'Flex' mode is on. Change to Off. Flex mode icon is on the paper layout editor. For more, search report help for
Changing the current mode

Similar Messages

  • How to find out the PATTERN, GRADIENT and BRUSHED objects?

    How to find out the PATTERN, GRADIENT and BRUSHED objects information in illustrator active document file. And also how to find the CMYK and RGB color information in illustrator file through javascript. Could you please provide any examples.

    I tried using the below code. But for both "cmyk" and "grayscale" pattern it gives only CMYK. Kindly check and advise.
    Code:
    var docRef = activeDocument;
    for(var i=docRef.inkList.length-1;i>=0;i--){
      var inkRef=docRef.inkList[i];
      var inkRefName=inkRef.name;
      alert(inkRefName);
      alert(inkRef.inkInfo.kind);
    Thanks for looking into this.

  • How to add text to a drag and drop object

    Hi everyone, I am quite a beginner with Flash so do excuse
    me. First, I am not sure if what I want to achieve may actually be
    impossible with Flash. I presently use MX 2004, but will shortly be
    upgrading to CS3. But if you know the answer for MX 2004 that would
    be really useful for now.
    I am writing a digital fiction story, and I want to create
    drag and drop objects. This I have managed to do. But I would like
    these drag and drop objects to also reveal text when they are
    actually pressed on. I have had no success so far in being able to
    achieve the two effects together.
    Does anyone know how I can achieve this? If, by chance, you
    know the action script that would be great. If you can explain to
    me in simple terms how I can achieve this I really would be
    grateful.
    Thanking you,
    Mary

    The script I posted would work on the main timeline - not in
    the timeline of the clip itself.
    So you made a movieclip out of the image and gave it the
    instance name "myclip". That's good.
    You edited that clip and added a dynamic text box with
    instance name "mytext". Be careful not to confuse the "instance"
    name of the text box with the "Var:" name. "myclip" should be the
    instance name. Also be careful to make sure you uncheck the
    "selectable" box. Edit your clip and click on the textbox to select
    it and look in the properties panel. There should be a button with
    Ab on it. If it is white background (highly likely), click it so it
    is not white. If the text is selectable, it will interfere with
    your button functions.
    While there is nothing wrong with creating nested clips
    within your movieclips, unless you plan to target them for
    something, there is no benefit. The only thing that needs an
    instance name inside the myclip is the textbox (based on what you
    are trying to do).
    You don't need any actionscript in the movieclip itself. If
    you can learn to place all your AS on the root timeline, you will
    be well ahead.
    If you placed that AS inside the clip, Flash wouldn't know
    what to do with it.
    Technically you can place the AS inside the clip on the layer
    you created but, if you did that, you would need to modify the
    script to the following:
    this.onPress = function() {
    this.mytext.text = "stop pressing so hard";
    startDrag(this);
    this.onRelease = function() {
    this.mytext.text = "";
    stopDrag();

  • How to Merge Skype on Facebook account and Skype on Microsoft

    I have read in the Skype community that I can not log in to Skype using Facebook account. So I decided to merge both (the Skype associated to my fFacebook account and the other which is linked to Microsoft account). Please help me to solve this. I am using Windows phone and no button is indicated for facebook sign in. Thank you very much. I am very glad to have your answers immidiately.

    Hello I am Alex I am using skype

  • How to merge faces from address book and Facebook?

    I like faces, however, when I start to type the name of somebody on the picture (me), I can choose 2 different "me" - one is from address book and on from facebook. Is there any possibility that Facebook would recognize people from facebook and connect them to my address book (or the other way)?

    I found this:
    In Address Book (or "Contacts") select both cards that correspond to the same person (probably one card you created and the other generated from facebook), you can do this by Command+clicking.
    Then, under 'Card' menu select 'Link Selected Cards'. Voila, they are now one card. Address Book still remebers these are two seperate cards, and you can always edit this back later.
    If you prefer, you can then select the "leading" card that will be represented in the name, through the 'cards' field at the bottom of that person's card.
    Since iPhoto uses Address Book's database, this should solve the duplicate person problem, though I haven't tested this thouroughly.
    Hope this helps.

  • Hyperlinks, scrollable text frames, and Multistate objects

    I have a DPS layout with a scrollable text frame on one side, and a multistate object (MSO) on the other. I want to be able to hyperlink parts of the text in the text frame to specific states in the MSO. How do I do this?

    Ask here and make sure it's a detailed feature request along with WHY
    this would benefit all users.
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    And note that this is strictly an InDesign limitation so make the
    request under InDesign.
    Your voice can't hurt and with Creative Cloud, new features can be added
    any time. No need to wait for major releases anymore.
    InDesign CC will be available tomorrow.
    Bob

  • How to build a query across parent and child object fields?

    As a part of an Integration Requirement, I need to query Opportunity records that have been Modified after a specific date and time?
    Now, Opportunity has a child object called ProductRevenue with a one to many relationship. Is there anyway I can construct a querypage that will fetch records whose Opportunity fields 'OR' its child ProductRevenue's fields have been modified after a specific date and time?
    I have tried using the SearchSpec argument, but it does not let me query across child object fields.
    For eg:-
    ObjOpptyQueryPageInput.ListOfOpportunity.Opportunity.searchspec = "([ModifiedDate] > '01/01/2013 00:00:00') OR ([ProductRevenueData.ModifiedDate] >= '01/01/2013 00:00:00')";
    [This above code written in C# thew me an error saying - The object Opportunity does not have an integration component called - ProductRevenueData.ModifiedDate.]
    Any help will be greatly appreciated. Thank you.

    Hi,
    As far as I know this can't be done at once because you have to consider :
    - Every Opportunity and their time-limited ProductRevenues
    AND
    - Time-limited Opportunities
    If you want to achieve this, you have to consider the 2 datasets separately and make your first query :
    ObjOpptyQueryPageInput.ListOfOpportunity.Opportunity.searchspec = "([ModifiedDate] >= '01/01/2013 00:00:00')";
    but also another query with the restriction on the ProductRevenue Searchspec.
    This shouldn't be too hard because the searchspec functionality is present at each level :
    - ListOfOpportunity -> Opportunity (the top-level that you used for your query)
    - ListOfOpportunity -> Opportunity -> ListOfProductRevenue -> ProductRevenue (the sub-level that you should use for the second query)
    Then in your C# code, you merge the 2 datasets and you end up with your expected result.
    Hope this helps,
    Charles.
    http://www.dubant.com

  • How to disable coupling between audio tracks and environment objects?

    I would like my environment to remain static. When I delete tracks on the Arrange page the corresponding environment objects dissappear. Is there any way to defeat this?
    I couldn't find an answer in the L8 manual. Environment objects continue to disappear even when I "protect cabling/positions"

    Yep, you need to turn off LP8's new "Auto-manage audio objects" function in the prefs.
    Now, as in all previous versions of Logic, you can create whatever audio objects you need in the environment, and they will all stay there like good obedient little objects.

  • How to merge notes in iphone and ipad? how to save all the notes as backup so that it does not take up space

    How to merge all notes from iphone and ipad together?
    How to save all the notes in folder in external drive so that it will not take up space in iphone and ipad?

    Becuse when I delte it still takes up. My memory I delted GBA4IOS a app from a website and still it takes 10GB of my memory.

  • How to merge two accounts?

    How to merge two accounts apple id and icloud (purchase)?

    You can't. See: http://support.apple.com/kb/HT4895

  • Copy complete frame and objects inside it..

    Hi alll...
    I am modifying a existing report, which i need a replica of one of my frame and its objects.
    Is there any wany to copy "complete frame and its objects" and paste it.
    I tried selecting the frame , copied and pasted, but only just the frame is getting copied, not all the objects,
    please help me with it.
    Thanks

    You can select the frame and all items it contains in the Object Navigator.
    Or you can go to the Layout Editor and use the Frame Select tool.
    Now you can copy-paste the frame and all the items inside it.

  • I have an iphone4 and my husband merge his numbers with mine and i think it was deleted can you tell me how can he get his number back on his phone

    have an iphone4 and my husband merge his numbers with mine and i think it was deleted can you tell me how can he get his number back on his phone

    Do you possibly mean the contacts have been merged?
    If so, where are each of you syncing contacts?  A supported application on the computer? iCloud or another cloud service? An Exchange server?
    WIthout details, it's difficult to offer specific resolutions.

  • I had an Apple ID and password with my hotmail acct.  The password stopped working, so I set up a new one with my me acct.  How can I access my old acct. and merge the two of them?

    I had an Apple ID and password with my hotmail acct.  The password stopped working, so I set up a new one with my me acct.  How can I access my old acct. and merge the two of them?

    https://iforgot.apple.com/cgi-bin/WebObjects/DSiForgot.woa/wa/iforgot?language=C A-EN&app_id=2417&newWindow=true&border=false

  • How to do frame-by-frame editing in iMovie 08 and export in H264?

    I wish to edit some videos and then export them in H264 so I can use them on a website.
    I have tried to edit with iMovie 08 but can only edit second-by-second. I want to edit frame-by-frame ie to the millisecond. And it appears that iMovie 08 does not export in H264.
    I have looked at iMovie 11 which has a Precision Editor which would work to edit as I want but for that I would have to upgrade from Leopard to Snow Leopard which I don't want. It would export H264.
    I also have QuickTime Player 7 Pro but that too seems to edit only by the second not by the frame; it does however seem to produce H264
    How can I edit these videos precisely and produce H264? Is there another application which would work better (and doesn't cost a fortune).
    Thanks for any ideas

    iMovie exports in h.264 by default. All the presets are h.264 (except Tiny).
    If you need to adjust the h.264 in some way, then SHARE.EXPORT USING QUICKTIME.
    To edit to the nearest frame, Go to iMovie/Preferences and select Display Time Codes.

  • How to edit videos frame-by-frame and export in H264?

    I wish to edit some videos and then export them in H264 so I can use them on a website.
    I have tried to edit with iMovie 08 but can only edit second-by-second. I want to edit frame-by-frame ie to the millisecond. And it appears that iMovie 08 does not export in H264.
    I have looked at iMovie 11 which has a Precision Editor which would work to edit as I want but for that I would have to upgrade from Leopard to Snow Leopard which I don't want. It would export H264.
    I also have QuickTime Player 7 Pro but that too seems to edit only by the second not by the frame; it does however seem to produce H264
    How can I edit these videos precisely and produce H264? Is there another application which would work better (and doesn't cost a fortune).
    Thanks for any ideas

    I want to edit frame-by-frame ie to the millisecond.
    Am a bit confused by what you say. iMovie and QT 7 Pro are both "frame" level editors. However, some forms of editing are, by their very nature, applied over a range of frames which may be a part of your problem. In addition, since "normal" movies have frames which are spaced apart in the 16 to 42 ms range, your requirement to be able to edit to the nearest millisecond would seem unreasonable and would probably be unsupported for playback purposes without skipping 90+ percent of the frames on most platforms.
    And it appears that iMovie 08 does not export in H264.
    All of the "Share" and/or "Export" options (except Final Cut XML...) either default to H.264 or allow export to H.264 (or X264 if installed) video compression.
    How can I edit these videos precisely and produce H264? Is there another application which would work better (and doesn't cost a fortune).
    Difficult to say since you have not given any indication as to what you mean by "editing" here. You could, for instance, edit normal movie clips in a normal manner and then use an application like the JES Deinterlacer to change the playback time reference to achieve an effective 1 millisecond/frame playback rate you seem to want to target even though your platform cannot play every frame during playback.

Maybe you are looking for

  • How to find Open Files by a Process Solaris 10

    Hi, Hope you are doing well. I'm trying to get open files by a process in solaris 10 using "pfiles" with below command: pfiles -n `ps | grep -i "data -log"  | grep -v grep | grep -i uatrate | awk '{print $2}'` | wc –l When I put this in some shell sc

  • Update GL Account number in account assignment PO

    Dear Guru's, I have a requirement to replace proposal gl account in PO after item is entered, this requirement it's because of for several document type they need to map the gl account into other account but didn't want to use config. It's frustating

  • Best way to place lots of images into one

    Hello, I have made a Javascript script that loops between 20.000+ images and puts them into a main image. Code is: var sampleDocToOpen = File('~/a/'+(l+startF)+'/'+(i+start)+'.png') open (sampleDocToOpen) app.activeDocument.selection.selectAll() app.

  • Opening JPG from Bridge via ACR in PS causes ACR to run twice.

    Using PSCS3 and Bridge CS3, with both set to prefer ACR when opening JPG files. Sometimes when opening a file from within Bridge with PSCS3, ACR runs twice. The image can be opened in PS and then ACR opens again with another copy of the JPG. Cancelli

  • Dreamweaver SEO and landing pages video tutorial

    does anyone know where I can find the tutorial by Richard John Jenkins about SEO and landing pages? It is a video tutorial in three parts; but I only found part two online. If someone can point me to this complete three part tutorial that would be gr