Getting links in one frame to open content in another...

Hello,
I would like links in the 'menu' frame of my site to open the
new page in another frame, called 'content'. Although I have
entered the name of the frame ('content') in the target box in the
link properties, the page consistently opens in a new browser
window. I am unable to upload the site at this time but I was
wondering if there are any common causes for this?
Thanks,
Julie

Yes, frames are problematic, I think the last site I designed
with frames
was about 7-8 years ago.
I advise using includes for elements that are used on
multiple pages,
i.e..... banner menu and page foot.
Jeff
"Murray *ACE*" <[email protected]> wrote
in message
news:[email protected]...
> The decision to use or not use frames should be based on
a) your site's
> needs, and b) your willingness to accept the potential
problems that
> frames can create for you as developer and maintainer of
the site and for
> your visitors as casual users of the site.
>
> I am down on frames because I believe that they create
many more problems
> than they solve.
> Judging from the posts here, and the kinds of problems
that are described,
> the kind of person most likely to elect to use frames is
also the kind of
> person most likely ill-prepared fo solve the ensuing
problems when they
> arise. If you feel a) that you understand the problems
and b) that you
> are prepared to handle them when they occur, and c) that
you have a need
> to use frames, then by all means use them.
>
> As far as I know, the most comprehensive discussions of
frames and their
> potential problems can be found on these two links -
>
>
http://apptools.com/rants/framesevil.php
>
http://www.tjkdesign.com/articles/frames/
>
>
> --
> Murray --- ICQ 71997575
> Adobe Community Expert
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
>
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
>
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
> ==================
>
>
> "Jeff" <[email protected]> wrote in message
> news:[email protected]...
>> show us your framest code
>> and
>> your link code
>>
>> Jeff
>>
>> "julieaherne" <[email protected]>
wrote in message
>> news:[email protected]...
>>> Hello,
>>> I would like links in the 'menu' frame of my
site to open the new page
>>> in
>>> another frame, called 'content'. Although I have
entered the name of
>>> the frame
>>> ('content') in the target box in the link
properties, the page
>>> consistently
>>> opens in a new browser window. I am unable to
upload the site at this
>>> time but
>>> I was wondering if there are any common causes
for this?
>>> Thanks,
>>> Julie
>>>
>>
>>
>

Similar Messages

  • Using jump menu in one frame to open page in another frame - works in IE but not Firefox

    Hi,
    I'm a beginner designer. I've been working to create a template for a website in which there is a banner in a frame across the top and three frames beneath - left for navigation and middle and right for content that can be compared.
    I have created two jump menus in the left frame using Dreamweaver's option for it (insert/forms/jump menu): one menu to load pages in the middle frame (in the code this is 'left') and one menu to load pages in the right frame (in the code this is 'right'). Both menus use a go button.
    Using Internet Explorer and allowing active content to run it works fine. In Firefox clicking 'go' does nothing however I have links in this navigation that will open a page in the middle or right ('left' and 'right') frames and if I use these the jump menus will now work.
    How can I get it to work straight off?
    Any feedback is welcome (except regarding not using frames!).
    Ian
    Code for this navigation page is below:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script type="text/javascript">
    <!--
    function MM_jumpMenu(targ,selObj,restore){ //v3.0
      eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
      if (restore) selObj.selectedIndex=0;
    function MM_jumpMenuGo(objId,targ,restore){ //v9.0
      var selObj = null;  with (document) {
      if (getElementById) selObj = getElementById(objId);
      if (selObj) eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
      if (restore) selObj.selectedIndex=0; }
    //-->
    </script>
    </head>
    <body>
    <h1>Navigation</h1>
    <p><a href="../Something/Pages_One/Alabama.html" target="left">Example</a></p>
    <p><a href="Left Frame 01.html" target="left">Left Frame 1</a></p>
    <p><a href="Left Frame 02.html" target="left">Left Frame 2</a></p>
    <p><a href="Right Frame 01.html" target="right">Right Frame 1</a></p>
    <p><a href="Right Frame 02.html" target="right">Right Frame 2</a></p>
    <p>Select a page to view in the left frame</p>
    <form name="form" id="form">
      <select name="jumpMenu" id="jumpMenu">
        <option value="Left Frame 01.html">Left frame 01</option>
        <option value="Left Frame 02.html">Left frame 02</option>
        <option value="Left Frame 03.html">Left frame 03</option>
      </select>
      <input type="button" name="go_button" id= "go_button" value="Go" onclick="MM_jumpMenuGo('jumpMenu','parent.frames[\'left\']',0)" />
    </form>
    <p>Select a page to view in the right frame</p>
    <form name="form2" id="form2">
      <select name="jumpMenu2" id="jumpMenu2">
        <option value="Right Frame 01.html">Right frame 01</option>
        <option value="Right Frame 02.html">Right frame 02</option>
        <option value="Right Frame 03.html">Right frame 03</option>
      </select>
      <input type="button" name="go_button2" id= "go_button2" value="Go" onclick="MM_jumpMenuGo('jumpMenu2','parent.frames[\'right\']',0)" />
    </form>
    <p> </p>
    </body>
    </html>

    Geronimo23 wrote:
    Given that it doesn't work initially in Firefox then it does once I load a page in the destination frame I decided to create a page with a link to the frameset. Using the link to get to the frameset the jump menu now works perfectly. Must be one of the wonders of using frames. Well I guess that's solved but out of curiosity, any ideas for why it wouldn't work when the frameset is loaded on its own?
    It might be due to the fact that you're using XHTML 1.0 Transitional, a DOCTYPE that does not support framesets. Try converting to HTML 4.01 Transitional or HTML 4.01 Frameset if you do not need or understand XHTML. Or use XHTML 1.0 Frameset if you really need XHTML.
    Refs: http://www.w3.org/TR/html401/present/frames.html ; http://www.w3.org/TR/xhtml1/#h-A1 ; http://www.w3.org/TR/xhtml1/dtds.html#a_dtd_XHTML-1.0-Frameset
    Mark A. Boyd
    Keep-On-Learnin' :-)

  • Click on link in one portlet and open in another portlet

    how do you click on link in one portlet and open in another portlet?

    Hrmm... This is a IBM Question..
    Officially this is a meaningless buzzword promoted by IBM. Portals are some sort of Servlet but IBM incapable of explaining how they differ from ordinary Servlets. Some speculate they are used to present a webpage with many services on it such as a search engine, and news that come from diverse sources. The user is able to dynamically configure the contents and layout of the page much like Netscape home pages
    I don't understand what yhour asking..
    I am assuming you want to call another servlet (portlet)? That would be absurd to do .. You let the HTTP request and XML file to deal with the response of the portlet

  • HAVE ONE WEB PAGE OPEN AND SUDDENLY ANOTHER WEB PAGE OPENS

    I can have one web page open and suddenly another web page will pop up. Why? It doesn't happen all the time. Like I said suddenly.

    Another thing you can try doing is scanning for Malware:
    Download and Install MalwareBytes Anti-Malware, run a full Scan. [http://www.malwarebytes.org/ http://www.malwarebytes.org/]
    Download and Run TDSSKiller [http://support.kaspersky.com/faq/?qid=208283363 http://support.kaspersky.com/faq/?qid=208283363]
    Download and Install Microsoft Security Essentials [http://windows.microsoft.com/en-US/windows/products/security-essentials http://windows.microsoft.com/en-US/windows/products/security-essentials] (not an official endorsement, but I personally recommend MSE as an awesome permanent anti-virus)
    Double check for all Windows Updates.
    What is the website that opens up? Is it always the same, always different, one of a few, etc?

  • Flash CS6; AS3: How to load image from a link on one frame and addChild(image) on other?

    How can I addChild outside the frame of images loader function? When I try to addChild on the other frame of the same loader, I get an error.
    I need to download all my 10 images only ONE TIME and place it on the screen in the other frames (to the same movie Clip).
    Also I can only play this as3 coded frame once. I know how to add an array of images, but I only need to understand how to do it with one image.
    Here is my loader for one image..
       var shirt1 = String("https://static.topsport.lt/sites/all/themes/topsport2/files/images/marskineliai_png/215.pn g");
       var img1Request:URLRequest = new URLRequest(shirt1);
       var img1Loader:Loader = new Loader();
       img1Loader.load(img1Request);
       myMovieClip.removeChildAt(0);
       myMovieClip.addChild(img1Loader);

    Symbol 'Spinner', Layer 'AS', Frame 2, Line 1
    1120: Access of undefined property img1Loader.
    [FRAME1]
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.*;
    import flash.net.URLRequestHeader;
    import flash.net.URLRequestMethod;
    import flash.net.URLVariables;
    import flash.events.SecurityErrorEvent;
    function init(e:Event = null):void
        removeEventListener(Event.ADDED_TO_STAGE, init);
        var loader:URLLoader = new URLLoader();
        var request:URLRequest = new URLRequest("http://www.topsport.lt/front/Odds/affiliate/delfi");
      var acceptHeader:URLRequestHeader = new URLRequestHeader("Accept", "application/json");
      request.requestHeaders.push(acceptHeader);
      request.method = URLRequestMethod.POST;
        //request.url = _jsonPath;
        loader.addEventListener(Event.COMPLETE, onLoaderComplete);
      //loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
        loader.load(request);
      try {
                    loader.load(request);
                } catch (error:Error) {
                    trace("Unable to load requested document.");
    init();
    function onLoaderComplete(e:Event):void
        var loader:URLLoader = URLLoader(e.target);
        var jsonObject:Object = JSON.parse(loader.data);
      var marsk1 = String("https://static.topsport.lt/sites/all/themes/topsport2/files/images/marskineliai_png/215.pn g");
      var img1Request:URLRequest = new URLRequest(marsk1);
      var img1Loader:Loader = new Loader();
      img1Loader.load(img1Request);
      _2.removeChildAt(0);
      if(_2 != null)
      _2.smoothing = true;
      //    the addChild which works when on frame one
      //_2.addChild(img1Loader);
    [FRAME2]
      _2.addChild(img1Loader);
    p.s. I removed the unnecessary code like other movieClips. It works then addChild function is on frame one.
    I'm kind of new to as3. I started using it this month so sorry if it's the obvious mistake.
    How to make flash recognize the loader?

  • AppleScript - Get links from one layer

    I need to make a list of linked files from one InDesign layer only but can't figure out how.
    This is my base that works just fine but gives me a list of all linked files in my document.
    set layFilesLinksList to every link of document 1
    I have tried this
    set linksList to every link of document 1 whose active layer is "Images"
    set linksList to every link of layer "Images" of document 1
    Any other suggestions?

    Thanks!
    We are a bit on the way, if i run your script as stand alone i get one of many images in the layer "Images"
    But when implementing this code in my bigger script i get nothing.
    This works as before, i get every link in my document.
    on createMiniature()
      tell application "Adobe InDesign CS5"
      set user interaction level of script preferences to never interact
      activate
      set myLinks to every link of document 1
      -- Images from one layer only workaround --
      tell active document
      if exists layer "Images" then set layerImages to layer "Images"
      set grphicBoxs to all graphics of layerImages
      set myLinks to {}
      repeat with i in grphicBoxs
      set iLink to item link of i
      set pathLink to file path of iLink
      set end of myLinks to pathLink
      end repeat
      return myLinks
      end tell
      -- End Images from one layer only workaround --
      repeat with thisFile in myLinks
      set ruler origin of view preferences of document 1 to spread origin
      set zero point of document 1 to {0, 0}
      set zeroX to 0
      set zeroY to ((page height of document preferences of document 1) + 5)
      set pageHeight to ((page height of document preferences of document 1))
      set pageWidth to ((page width of document preferences of document 1))
      set maxHeight to 13
      set theScale to maxHeight / pageHeight
      set imageXPos to ((item 2 of geometric bounds of parent of parent of thisFile))
      set imageYPos to ((item 1 of geometric bounds of parent of parent of thisFile))
      set imageXPos2 to ((item 4 of geometric bounds of parent of parent of thisFile))
      set imageYPos2 to ((item 3 of geometric bounds of parent of parent of thisFile))
      set imageWidth to imageXPos2 - imageXPos
      set imageHeight to imageYPos2 - imageYPos
      set theName to name of thisFile
      set filePath to ((file path of thisFile))
      set theImgPath to quoted form of POSIX path of filePath
      set imageStatus to ""
      set imageStatus to do shell script ("/usr/bin/exiftool -xmp:Instructions -b " & theImgPath)
      if imageStatus = "" then
      set imageStatus to "Paper"
      end if
      set newBox to (make new rectangle of document 1 with properties {geometric bounds:{zeroY + imageYPos * theScale, zeroX + imageXPos * theScale, (zeroY + (imageYPos + imageHeight) * theScale), zeroX + (imageXPos + imageWidth) * theScale}, stroke weight:0.2, stroke color:"Black", fill color:imageStatus, active layer:StatusLayer})
      set opacity of blending settings of fill transparency settings of newBox to 60
      end repeat
      set the properties of layer StatusLayer of document 1 to {visible:false}
      end tell
    end createMiniature
    Changing the script to this gives me a blank result with no images
    on createMiniature()
      tell application "Adobe InDesign CS5"
      set user interaction level of script preferences to never interact
      --activate
      --set myLinks to every link of document 1
      -- Images from one layer only workaround --
      tell active document
      if exists layer "Images" then set layerImages to layer "Images"
      set grphicBoxs to all graphics of layerImages
      set myLinks to {}
      repeat with i in grphicBoxs
      set iLink to item link of i
      set pathLink to file path of iLink
      set end of myLinks to pathLink
      end repeat
      return myLinks
      end tell
      -- End Images from one layer only workaround --
      repeat with thisFile in myLinks
      set ruler origin of view preferences of document 1 to spread origin
      set zero point of document 1 to {0, 0}
      set zeroX to 0
      set zeroY to ((page height of document preferences of document 1) + 5)
      set pageHeight to ((page height of document preferences of document 1))
      set pageWidth to ((page width of document preferences of document 1))
      set maxHeight to 13
      set theScale to maxHeight / pageHeight
      set imageXPos to ((item 2 of geometric bounds of parent of parent of thisFile))
      set imageYPos to ((item 1 of geometric bounds of parent of parent of thisFile))
      set imageXPos2 to ((item 4 of geometric bounds of parent of parent of thisFile))
      set imageYPos2 to ((item 3 of geometric bounds of parent of parent of thisFile))
      set imageWidth to imageXPos2 - imageXPos
      set imageHeight to imageYPos2 - imageYPos
      set theName to name of thisFile
      set filePath to ((file path of thisFile))
      set theImgPath to quoted form of POSIX path of filePath
      set imageStatus to ""
      set imageStatus to do shell script ("/usr/bin/exiftool -xmp:Instructions -b " & theImgPath)
      if imageStatus = "" then
      set imageStatus to "Paper"
      end if
      set newBox to (make new rectangle of document 1 with properties {geometric bounds:{zeroY + imageYPos * theScale, zeroX + imageXPos * theScale, (zeroY + (imageYPos + imageHeight) * theScale), zeroX + (imageXPos + imageWidth) * theScale}, stroke weight:0.2, stroke color:"Black", fill color:imageStatus, active layer:StatusLayer})
      set opacity of blending settings of fill transparency settings of newBox to 60
      end repeat
      set the properties of layer StatusLayer of document 1 to {visible:false}
      end tell
    end createMiniature

  • How to get links from other applications to open a new Firefox window

    I have non-Web browser applications that want to open browser windows. I have Firefox as my default Web browser. When these other applications pass a URL to Windows, Windows passes the URL to Firefox. Unless there are no Firefox windows running, Firefox then opens the URL in a new tab of the most recently used Firefox window. I would prefer that Firefox open a completely new window. Where can I find the setting for this behavior?
    Thank you,
    Dan

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    See also:
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Preferences_not_saved

  • I can't get links sent to me to open with Firefox.

    They open with IE

    '''Microsoft Outlook'''
    *On the taskbar, click ''Start'', and then click ''Set Program Access and Defaults''.
    *In the ''Add or Remove Programs'' dialog box, click ''Custom'', and then click the arrow to the right.
    *Under ''Choose a default Web browser'', click ''Mozilla Firefox'', and then click OK.
    http://office.microsoft.com/en-us/outlook-help/change-your-default-browser-HA001190694.aspx
    ----

  • Conditional format of one cell based on contents of another cell

    Preparing list of appointments for visitors with time for each. There are four possible status categories for visitors based on projected activity and whether they have shown up or not. (A Group Scheduled, A Group Showed, B Group Scheduled, B Group Showed). I've created the calendar in iCal with different calendars, then accessed that through Bento iCal Events. Bento adds the column with name of calendar from iCal. Info is now in Numbers. (iWorks 09)
    It shows Title, Start Date, Location, Calendar. I'm adding more fields using Lookup in Numbers drawing on entire data base brought over from Bento. I'm trying to get what info I need, but none that I don't, so the form isn't too crowded and busy.
    I would like to be able to conditionally format the Time column based on the contents of the Calendar column. If successful, the color of the Time column would tell me all I need to know about visitor status, and I could hide the Calendar column and clean up the form.
    I hope I've described it adequately. Can this be done, and if so, how?
    Thanks! Have a great Thanksgiving!

    jpcranch wrote:
    Does it work to format two cells based on contents of one of them?
    Conditional formatting of a cell depends on the contents of that individual cell, compared with another value, so no.
    But you could use a two-table approach.
    In general terms, the technique is to:
    • make the original table's cell fill transparent,
    • Add a second table to the sheet,
    • Set the second table to copy the control values into a column of cells,
    • Select the cells in that column of Table 2,
    • Apply conditional formatting rules for each possible control value (see below)
    • Set the text opacity for these cells to 0 (full transparency),
    • Click on Table 2 in the sidebar, then use (shift and) the arrow keys to slide Table 2 behind Table 1 to align the highlighted cells with the cells to appear highlighted in Table 1.
    • Set the colour of the cell borders on table 2 to none.
    Using the information you gave regarding the calendar column, you'll need four rules for conditional formatting of this column. All are of the same format:
    Text contains: A Group Scheduled
    With the text changed to match each possible entry.
    Regards,
    Barry
    BTW: by changing the width of the formatted column on table 2, you can appear to highlight as many columns as you wish on Table 1.

  • How to make text links on one layer appear differently than on another layer?

    I have text links in some layers that I want to appear as white bold font and text links in other layers that I want to appear as black or blue unbold. I think this might be with CSS but I can't figure it out.

    It doesn't go in there at all. Style rules should go in a style block in the head of the page like this:
    <style type="text/css">
    #Layer5 a {
      color: #FFF;
      font-weight: bold;
    </style>
    Even better, though, is to put all your style rules in an external style sheet, because this automatically applies the rules to every page in your site that the style sheet is attached to.
    To learn more about CSS, visit the Adobe Developer Center at http://www.adobe.com/devnet/dreamweaver/css.html.

  • Trying to link a thumbnail in one frame to a larger image in another frame GOLIVE 9...

    Hi.
    I am using Adobe Golive 9.
    I found a tutorial on the internet that allows you to create an image gallery with clickable thumbnails
    http://www.tutorialhero.com/click-48179-create_an_image_gallery_with_clickable_thumbnails. php
    However, the tutorial is designed for a page without frames.
    I want to be able to do this using frames.
    I want to link a thumbnail on a page in one frame to a larger image on another page, so that when your mouse is over the thumbnail,
    the larger version appears in the other frame.
    This is what my frames look like so you get an idea of what I'm trying to do
    And here is a picture of the thumbnail in the lower frame and the larger image in the frame above it.
    Could someone please give me STEP BY STEP instructions on how to do this?  I'm new to Golive, using version GOLIVE 9, and I know this can be accomplished using "Set Image URL"  but have no idea how to do it.
    Thank you for your help all.
    Chris.

    A link in one frame is designed to call another page into some other frame, not an image. You can't use SetImageUrl across different pages. You'd probably have to put each of your large images on a page, and call each page each time. I'm not sure why you're so set on using frames, they have many disadvantages.

  • Can't get links in my e-mail to open in the active window

    I just upgraded to Firefox 4, and while I like how much faster it is and how much less bogged down my Vista laptop is (FF is open pretty much constantly), I'm still struggling a bit with some of the "look and feel" tweaks.
    The big problem I'm having right now is that I cannot figure out how to get links in e-mail to open in the active browser window (they keep insisting on opening new windows, which to me makes for clutter). I'm using Thunderbird 3.1.9.

    Hi ,
    1.Please do the message tracking for the messages which you have send to the outside world.
    2.Just check is there any messages held up On the queue viewer in exchange 2013.
    3.make sure all the required exchange services are up and running.
    test-servicehealth | ft -au
    4.make sure all the required server components are active in the exchange 2013 server.
    Get-ServerComponentState –Identity "server name" 
    5.make sure you are having an enough space on the disk drive where the exchange transport queue database resides.
    6.Just enable the protocol logging on the send connector and check the logs.
    7.You would have use either smart host or your exchange server to directly communicate with the mail servers in internet .So please make sure the name resolution part is working fine.
    8.Most importantly you need to check the send connector configurations and reach ability to the smart host if you have on your network.
    Please feel free to reply me if you have any queries.
    Thanks & Regards S.Nithyanandham

  • Illustrator layers only visible one frame

    After Effects 2014.2 version 13.2.0.49
    Illustrator 2014.1.1 version 18.1.1
    So, I started off posting in the wrong forum (Illustrator) and with that
    question, seemed to jumped that hurtle, but encountered another.
    My first problem was importing an Illustrator layered image as 'Composition
    - Retain layer sizes' and had to check off the sequence options as
    'Illustrator/PDF/EPS Sequence' in order to keep the layers in the proper
    positions (or all layers centered around individual anchor points).
    Another problem I had with that was all my layers became mixed - so my
    solution was to bring them into the comp in a manual order.
    So, now that I have the Illustrator layers in my After Effects comp, the
    layers only remain visible for one frame.
    I have my comp set for a minute. I started playing with opacities and can't
    get past the 'one frame visibility'.
    My plans are to 'draw on' the guitar I have drawn in Illustrator, by
    keyframing the layer opacities.
    I have tried the Animation/Keyframe Assistant/Sequence Layers but I am
    missing something.
    I want to try other effects that I do not remember the specific effect name
    (to draw on the guitar layers), but first I need to start with having my
    layers visible for more then the one frame.
    What have I missed?

    Your artboard needs to include all of your artwork. That's the problem with the illustrator file you are showing.
    Import as a sequence should never be checked if you are importing only one file whether it is imported as footage or a comp.
    When you import as a comp you must open the comp that AE creates to keep the layers lined up.
    Most people just getting started with this workflow make all three of these mistakes. The workflow is really easy. Make each object that you want to animate a separate layer, make sure all artwork fits in the your artboard and you only have one, import as a comp retaining layer sizes, then open the comp that AE creates. ALL of the layers that are in the project panel will be the size of that layer. If you are using clipping paths then the layer will be the size of the clipping mask if it extends beyond the artwork.
    One last point that I failed to make. You should be creating your artwork so that it is the right size to fit in your composition at it's at rest size. In other words, if at some point in your composition you want to see the whole guitar and have it fill the screen then the strings must be thick enough to work in video. That means they must be at least 2 or 3 points wide. If you want to have the guitar fill only one quarter of the screen and your project is 1920 X 1080 then your dartboard should be set to 1920 pixels or points wide and the strings must still be at least 2 points or 2 pixels wide unless they are absolutely horizontal and vertical AND if you use thin lines or stroke values less than 3 pixels in your illustration you should have snap to pixel turned on in illustrator. Your illustration may be vector art but if there is fine detail in the illustration then it must line up with the pixel grid or it will not look good.

  • Text graphics are offset by one frame. Footage clips are in place but text graphics are off by one frame when output.

    Any thoughts?
    Mac os 10.9.5
    AE 2014 Latest
    Cleared Caches
    Restarted

    Here is a start. The program is used to make precise transitions and is not. Everything looks fine in the timeline previews, then get garbled by one frame when output.
    Thoughts?

  • Report links from one dashboard(report) to another dashboard with prompt

    There are two dashboards ‘Chart’ and ‘Transaction details’ . I am trying to link from one report(dashboard called 'Chart') to another dashboard(Transaction details).
    In first dashboard (screenshot 1) there is a column called ‘Day’ which is like date., I have set the navigate properties and pointed out the second dashboard as the target ( screenshot3).
    In the second dashboard (screenshot 2) , the request has an prompt on the date column.
    Requirement, Once I click on particular value on ‘Day’ column in first dashboard, it has redirect to the second dashboard. Having said that, it is not only enough to navigate but also pass the value as a parameter to the second dashboard.
    Currently, it is successfully navigating to the second dashboard, but not passing the parameter. Is there any particular step that I have take care here.
    By the way, the column which has prompt has be defined as ‘as prompted’ in its report.
    Any inputs, ideas are appreciated.
    Thanks and Regards
    S
    For some reason, I couldn't able to upload the screenshots that I took now in oracle forums.

    Hi Saicand,
    Thanks for you reply. What should I need to check at fx section of the column. Do you mean that the format of the date format should be the same for both the reports.
    Thanks and Regards
    S

Maybe you are looking for