Using EL in navigation model

Hi All,
I am using webcenter portal application. I want to check a condition and based on that condition i want to navigate to the specific page, which i think can be done with a bean call from a commandlink on action attribute.
May i know how to implement this on Navigation model as i dont know how to call a bean on url field of navigation model. Or possibly is it possible to overide the url field on navigation model with a bean method call in action attribute of command link and navigate to the specific page based on the return attribute.
We are unable to implement the navigation model in our portal, as we dont know how to overcome this.
Kindly help us
Thanks
S. Muthukumaran

Hi.
Bijesh is referring to visible attribute of each item of your navigation model:
<url visible="#{Your EL EXPRESSION}" id="Home"
         factoryClass="oracle.webcenter.portalframework.sitestructure.rc.AdfPageResourceFactory"
         url="page://oracle/webcenter/portalapp/pages/home.jspx">
      <attributes>
        <attribute attributeId="Title" value="HOME" isKey="true"
                   resourceBundle="com.merchan.portal.PortalBundle"/>
        <attribute attributeId="ExternalId" value="defaultMenu" isKey="false"/>
        <attribute attributeId="Redirect" value="false" isKey="false"/>
      </attributes>
      <contents/>
    </url>In visible attribute you can invoke a EL Expression (Manage Bean) to determinate if this item is going to be showed in your navigation.
If it isn't valid for your requeriment please share more details about it.
Regards.
Edited by: Daniel Merchán on 08-nov-2012 11:02

Similar Messages

  • EL for a specific page in a Navigation Model with a Pages Query

    In WebCenter Portal: Spaces we are using the Default Navigation Model, which includes a Pages Query which shows all the accessible pages for the current space.
    How do I create an EL Expresion that allows me to perform navigation from within a page?
    <af:commandLink text="Link"
    id="cl1"
    actionListener="#{navigationContext.processAction}"
    action="pprnav" >
    <f:attribute name="node"
    value="#{navigationContext.defaultNavigationModel.rootNode.childByIndex[1]}"/>
    </af:commandLink>
    this gets me a reference to the desired page, but only as long as the Pages Query is the first item in the model and my page is at index 1 in the Pages Query. Not very robust.
    Is there any way to refer to a page by its title or something like that?
    I know Business Role Pages in Spaces have a direct URL I could use, but I want to use partial page navigation wherever possible.

    Jaap,
    Can you describe your exact use case in a bit more detail?
    Do you wish to link to a specific page or generate links to all pages (iterating through the pages) in the space? If it is the former, how do you identify the specific page? If it is the latter, consider creating a custom navigation model that contains only a pages query and iterate over this.

  • Expression Language to get the navigation model of the parent space

    Hello,
    I am hoping someone can help me with this.
    Scenario: I need my sub-space to use the same navigation model as the parent.
    Reason: Take a space(P) has a navigation model that queries the pages and sub_spaces(S1,S2...) in a space. Using this navigation, if we navigate to a page of a sub_space(S1) of the space, the navigation model for that sub_space(S1) will now query its pages and its sub_spaces. Instead, I want the navigation to still query the pages of the parent space(P) and the sub_spaces(S1,S2) of the parent. Effectively, the navigation contents should not change.
    So, I am thinking of using an EL expression that queries the navigation model of a parent(P) to set the navigation model of the sub_space(S1).
    Appreciate your help.
    Thanks,
    Pradyumna Nandavanam

    Hi.
    You can define customAttributes for your group spaces like: parentModelPath
    Access it with EL Expression: #{spaceContext.currentSpace.metadata.customAttributes[attributeName]} where attribute name is +'parentModelPath'+
    And with next EL Expression: #{navigationContext.navigationModel['model_path']} you can replace 'model_path' with your customAttribute value.
    Kind Regards.
    Edited by: Daniel Merchán on 14-feb-2012 15:50

  • Forward to JSP page without using Navigation Model

    How can I forward to a JSP page without using the Navigation Model?

    It's done in the cardemo example in
    ImageMapEventHandler.processAction() Is there a reason
    for it there?Ah ... that makes sense.
    That code in CarDemo was written before there was such a thing as a NavigationHandler, and we didn't have time to update it to the new approach before the EA4 release. That'll be changed before the next one. In the mean time, I'd recommend that you use the navigation rules mechanism where it works for you, because it encourages good separation of business logic and presentation logic that will lead to more maintainable applications.
    Craig

  • Use navigation model and runtime created pages

    Hi,
    I have my Portal Application created in JDeveloper, with set of base pages. Pages are stored in default-navigation-model, so I could use i18n in navigation rendering. I'd also like to use runtime pages management. When I enter admin panel, I can add new pages, change order of pages created in jdeveloper, or show/hide them. However those changes are not reflected in the portal, navigation always looks the same, still displays pages I've marked as hidden - is navigation cached somewhere?
    If I create new page in admin panel, it isn't displayed in navigation too. However I could click on this page title in admin panel, go to this page and edit its content - of course even then page is not displayed in the meny, none of menu items is marked a highlited.
    What am I doing wrong? I followed Yannick's tutorial http://www.yonaweb.be/webcenter_tutorial/closer_look_at_navigation_model and switched from page hierarchy to navigation model. Maybe this is the reason?

    I got back to your tutorial and haven't found a place where it'd be explained directly. Maybe "between the lines", but as for Webcenter newbie I haven't notice it.
    I switched back to pages hierarchy. I was using navigation model to achieve i18n in navigation, however I also had problems about that, and as you suggested me once in another thread I changed page titles to PortalBundle keys and rendered values from bundles manually.
    Therefore now comes the second question in this area - is it possible to use page hierarchy, runtime crated pages and still localize page titles?
    P.S. As an experienced Liferay Portal developer, I really try to see any benefits of Webcenter in building custom portals area and still I can hardly find any... ;)

  • Use managed beans in navigation model

    Hello
    I have a bean called UserInfoBean.
    UserInfoBean is managed in faces-config.xml and uses a Java API to determine if a user has access to a page within my WebCenter Portal. The method is called isUserAuthorized.
    In default-navigation-model.xml I try to set the visible field to #{userInfoBean.isUserAuthorized} but it says that 'userInfoBean is an unknown variable'.
    Do I need to manage UserInfoBean in adfc-config.xml??
    Thanks!
    Mitch

    What's the scope of the bean?
    Any specific reason why you are not using the built-in declarative security that ADF/WebCenter gives you. You can assign page/taskflow privileges without having to write any code.

  • How to navigate to a specific part of a page using Navigation Model

    Hi....
    I need to navigate to a specific part of the page using navigation models.
    When I click on a link it should navigate to a div in the middle of the page instead of showing page from starting.
    How to achieve this using webcenter navigation models?
    Thanks.

    Hi All,
    Even I have the same requirement in my project.
    I need to navigate to a specific part of a page instead to the top of page using navigation models.
    I have a navigation model with name aboutUsNavigation.xml which have 5 links(About Us, Contact Us, Carrers, ...).
    I have used the adf tree Component to show the links.
    <af:tree id="about" var="node" initiallyExpanded="false" summary="AboutUs" value="#navigationContext.navigationMode
    l['modelPath=/oracle/webcenter/portalapp/navigations/aboutUsNavigation'].treeModel['includeStartNode=false']}" >
    <f:facet name="nodeStamp">
    <af:commandImageLink id="cil2" text="#{node.title}"
    actionListener="#{navigationContext.processAction}"
    action="pprnav"
    icon="#{node.attributes[pageFlowScope.tnBean.iconKey]}"
    disabled="#{not node.navigable}"
    inlineStyle="#{node.onSelectedPath ? 'font-weight:bold;' : ''}">
    <f:attribute name="node" value="#{node}"/>
    </af:commandImageLink>
    </f:facet>
    </af:tree>
    All the 5 links should navigate to the about.jspx. but each to a part of the page. how to achieve this?_
    Thanks..

  • How to get  a Current Navigation model  Current Selection (node) ID

    Hi,
    we are using default navigation model for page navigation in our application.
    I am trying to get Id of Default Navigation model node, I am able to get the Title using following code which available in globe template.
    Code – pageTemaplate_globe.jspx :
    <af:forEach var="node" varStatus="vs"
    items="#{navigationContext.defaultNavigationModel.listModel['startNode=/, includeStartNode=false']}">
    <af:subform id="pt_sfm1">
    <div class="bea-portal-book-primary-menu-single-item">
    <af:switcher id="pt_sw1"
    facetName="#{(empty node.attributes['Target']) || (node.attributes['Target'] == '_popup') ? 'command' : 'golink'}">
    <f:facet name="command">
    <af:commandLink id="pt_cl1" text="#{node.title}"
    action="#{MyAccBean.menuItemListAction}"
    disabled="#{not node.navigable}"
    actionListener="#{navigationContext.processAction}"
    clientComponent="#{node.attributes['Target'] == '_popup' ? true : false}">
    <!-- pass node to processAction for setting current selection and navigation -->
    <f:attribute name="node" value="#{node}"/>
    <af:setActionListener from="#{node.title}"
    to="#{pageFlowScope.menunodetitle}"/>
    I am using +<af:setActionListener/>+ to set Title to variable and using in that in code.
    Is there a way that i can get ID in the same way as title?
    I see following EL from documentation but there is no ID attributes available.
    EL: #{navigationContext.defaultNavigationModel.currentSelection.attributes['Description']}
    EL: #{navigationContext.defaultNavigationModel.currentSelection.title}
    Please help me…
    Thank you,
    SP

    Hi.
    Doesn't exist direct access to node Id but you can use this EL Expression to get it:
    #{node.prettyUrlPath[node.depth]}Regards.

  • Content Repositories in Navigation Model not visible

    Hi,
    I use JDev 11.1.1.7 and WCC/WCP 11.1.1.7.
    I did follow the tutorial in the Oracle WCP documentation and created a connection to the Content Repository.
    http://docs.oracle.com/cd/E28280_01/webcenter.1111/e10273/createconnect.htm#BGBDDHAA
    Step 1 is working fine. In the Jdeveloper Application Resources window I can navigate through my content.
    My problem is that when I open my navigation model and try to add a content item I have to set the url as it is shown in Figure 6-24. But I don't see my defined Content Repositories which I see in the Application Resources window. After clicking on the loupe to the right of the url inputBox I only see a folder named "Connections". This folder contains a folder called "Content Repositories". And this "Content Repositores" folder is empty.
    Using drag and drop to add content from the Application Resources window to the navigation is working fine for me.
    I don't remember, that I had this problem before. Can anybody help me on this.
    Thanks
    Tobi

    Exactly,
    this a problem with older versions of Explorer.
    I wouldn`t worry too much, though.
    Almost everyone don`t use IE6, anymore. The last I heard about it, leats than 11% of people are using it. IE 7 and Firefox are quite more popular.
    Now, if you really wanna fix this, one way is to use older versions of iWeb also. You`re probably using iWeb `08. One way is to download and install iWeb `06. But, that really is a pain in the ***.

  • ExternalID of navigation model

    Hi,
    I have default navigation model with various nodes. I am able to navigate to a specific node i.e. node with externalId 'test' by using $wcUrl('test') in a html page using content presenter.
    I want to access the same node with externalId 'test' in a jspx page, but $wcUrl('test') is not working by using directly in the jspx page without content presenter. Is there any alternate way to access the node in a jspx page without content presenter?
    Please let me know how to access node from a jspx page.
    Thanks

    The $wcUrl('test') syntax is a piece of IDOC script. This will only work within a document in a Content Presenter.
    If you want to create a link within a page, you can reference the externalId through the navigation model, by pointing the link to /faces/wcnav_externalId/test

  • Icon images in navigation model

    Version: Spaces PS3
    Is it possible to show images (from content server) for navigation menu item in the naivigation model. If anyone done this before please share updates.

    I have already tired that. The image does not appear in the Spaces Page. howveer when I am creating the navigation model in Spaces it does appear.
    I have tried a lot on modifying the inlinestyle of the decorative box containing the binding for the navigation model in my Page template. But the image does not however appears.
    I am using my navigation model as a default navigation model in my Spaces.
    Here is the code lines for the Page template using the Navigation Model :
    <f:facet name="center">
    <af:decorativeBox id="contentBody" theme="contentBody">
    <f:facet name="center">
    <af:panelStretchLayout id="wc_psl3" topHeight="#{changeModeBean.inEditMode ? 72 : 72}" endWidth="auto" bottomHeight="auto" startWidth="auto">
    <f:facet name="top">
    <af:decorativeBox id="pt_db1" topHeight="0px" theme="light" inlineStyle="">
    <f:facet name="center">
    <cust:panelCustomizable id="pcustnav"
    layout="horizontal" inlineStyle="height=100px;width=200px;">
    <af:region value="#{bindings.spacesNavigationPanel.regionModel}" id="spcNavPanel" />
    </cust:panelCustomizable>
    </f:facet>
    </af:decorativeBox>
    </f:facet>
    <f:facet name="center">
    <af:decorativeBox theme="medium" id="decBoxMed" topHeight="#{changeModeBean.inEditMode ? 30 : 0}">
    <f:facet name="center">
    <af:panelStretchLayout id="wc_psl4" endWidth="#{attrs.auxiliary1Size}">
    <f:facet name="center">
    <af:panelStretchLayout id="decBoxLt" topHeight="#{changeModeBean.inEditMode ? 54 : 24}">
    <f:facet name="top">
    <af:region value="#{bindings.spacesNavigationPageHeader.regionModel}" id="pt_psl1"/>
    </f:facet>
    <f:facet name="center">
    <af:panelStretchLayout id="wcCont" styleClass="WCContent">
    <f:facet name="center">
    <af:skipLinkTarget/>
    <af:facetRef facetName="content"/>
    </f:facet>
    </af:panelStretchLayout>
    </f:facet>
    </af:panelStretchLayout>
    </f:facet>
    <f:facet name="end">
    <af:facetRef facetName="auxiliary1"/>
    </f:facet>
    </af:panelStretchLayout>
    </f:facet>
    </af:decorativeBox>
    </f:facet>
    </af:panelStretchLayout>
    </f:facet>
    </af:decorativeBox>
    </f:facet>
    Edited by: sackam on 18/05/2011 22:46

  • Multiple navigation models and security

    Hi,
    I want to have 3 navigation models (default, A, B) but I want the "role" AA to have access to the default navigation model + A model (when connected on the portal) and the "role" BB to have the default and B one. I want to have my security here. It could be easy to make it with the page hierarchy, but I want to try it with the 3 different navigations and I'm a bit lost.
    I think the answer may be in the visible attribute, but I have tried this and it didn't worked:
    For A model inside default navigation:
    visible: ${securityContext.userInRole == AA}
    Thanks!

    That's rather easy to do.
    The trick is that you create a reference to an existing nav model from A so it will include the default one.
    When you go the administration console and open the configuration tab you can define the default navigation model. For this you can use expression language so you just have to write a managed bean that returns the path to the navigation model.
    Something like this:
    public String getNavMode(){
      if(userInARole)
         return "oracle/webcenter/portalapp/navigations/modelA.xml";
      if(userInBRole)
        return "oracle/webcenter/portalapp/navigations/modelB.xml";
      return "oracle/webcenter/portalapp/navigations/default.xml";
    }I haven't tested it but it should work. It's also possible that you can ommit the .xml in the filename.

  • Cross Site Collection lookup using client side object model

    I have to do Cross Site Collection lookup using client side object model or Odata ,
    no servier side.. any ideas experts?

    Did you read about cross site publishing feature in SP 2013?
    Check this out
    http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=1038
    http://blogs.technet.com/b/sharepoint_quick_reads/archive/2012/09/18/sharepoint-2013-cross-site-publishing.aspx
    http://blog.helloitsliam.com/Lists/Posts/Post.aspx?ID=89
    http://blogs.msdn.com/b/ritazh/archive/2012/09/26/sharepoint-2013-how-to-setup-cross-site-publishing-enable-catalog-use-managed-navigation.aspx
    http://stackoverflow.com/questions/1151036/sharepoint-lookup-column-across-site-collection-boundary
    You will need custom code for this, but since the amount is minimal and this is Stack Overflow I assume that won't be a problem. You will want to make your own listview web part that queries the list using ListViewByQuery. An example can be found here:
    http://blogs.msdn.com/b/ramg/archive/2009/04/21/implementing-a-simple-cross-site-collection-list-view-webpart.aspx

  • I am trying to use java  file as Model layer and jsf as presentation layer

    I am trying to use java file as Model layer and jsf as presentation layer and need some help
    I successfully get the value of h:outputText from java file by doing simple binding operation but I am facing problems when I am trying to fill h:dataTable
    I create java file
    package oracle.model;
    import java.sql.;*
    import java.util.;*
    *public class TableBean {*
    Connection con ;
    Statement ps;
    ResultSet rs;
    private List perInfoAll = new ArrayList();
    *public List getperInfoAll() {*
    perInfoAll.add(0,new perInfo("name","username","blablabla"));
    return perInfoAll;
    *public class perInfo {*
    String uname;
    String firstName;
    String lastName;
    *public perInfo(String firstName,String lastName,String uname) {*
    this.uname = uname;
    this.firstName = firstName;
    this.lastName = lastName;
    *public String getUname() {*
    return uname;
    *public String getFirstName() {*
    return firstName;
    *public String getLastName() {*
    return lastName;
    right click on the file and choose 'create data control'
    then i wrote the jsf file:
    *<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>*
    *<f:view>*
    *<h:dataTable id="dt1" value="#{bindings.perInfoAll}"*
    var="item" bgcolor="#F1F1F1" border="10"
    cellpadding="5" cellspacing="3" rows="4" width="50%"
    dir="LTR" frame="hsides" rules="all"
    *>*
    *<f:facet name="header">*
    *<h:outputText value="This is 'dataTable' demo" id="ot6"/>*
    *</f:facet>*
    *<h:column id="c2">*
    *<f:facet name="header">*
    *<h:outputText value="First Name" id="ot1"/>*
    *</f:facet>*
    *<h:outputText style="" value="#{item.firstName}"*
    id="ot2"/>
    *</h:column>*
    *<h:column id="c4">*
    *<f:facet name="header">*
    *<h:outputText value="Last Name" id="ot9"/>*
    *</f:facet>*
    *<h:outputText value="#{item.lastName}" id="ot8"/>*
    *</h:column>*
    *<h:column id="c3">*
    *<f:facet name="header">*
    *<h:outputText value="Username" id="ot7"/>*
    *</f:facet>*
    *<h:outputText value="#{item.uname}" id="ot4"/>*
    *</h:column>*
    *<f:facet name="footer">*
    *<h:outputText value="The End" id="ot3"/>*
    *</f:facet>*
    *</h:dataTable>*
    *</center>*
    *</af:document>*
    *</f:view>*
    but nothing is appear in my table
    I know that there is something wrong in calling the binding object
    I need help pls and where can i find some help to deal with another tag types
    thanks

    i dragged the "perInfoAll" from my "Data Controls" and choosed adf table (even I know that new table with adf tags well be generated and i want table with jsf tags)
    and this code is generated
    *<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"*
    *"http://www.w3.org/TR/html4/loose.dtd">*
    *<%@ page contentType="text/html;charset=UTF-8"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>*
    *<%@ taglib uri="http://xmlns.oracle.com/adf/faces/rich" prefix="af"%>*
    *<f:view>*
    *<af:document id="d1">*
    *<af:messages id="m1"/>*
    *<af:form id="f1">*
    *<af:table value="#{bindings.perInfoAll1.collectionModel}" var="row"*
    *rows="#{bindings.perInfoAll1.rangeSize}"*
    *emptyText="#{bindings.perInfoAll1.viewable ? 'No data to display.' : 'Access Denied.'}"*
    *fetchSize="#{bindings.perInfoAll1.rangeSize}"*
    *rowBandingInterval="0"*
    *selectionListener="#{bindings.perInfoAll1.collectionModel.makeCurrent}"*
    *rowSelection="multiple" id="t1">*
    *<af:column sortProperty="uname" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.uname.label}"*
    *id="c1">*
    *<af:inputText value="#{row.bindings.uname.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.uname.label}"*
    *required="#{bindings.perInfoAll1.hints.uname.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.uname.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.uname.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.uname.tooltip}"*
    *id="it3">*
    *<f:validator binding="#{row.bindings.uname.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *<af:column sortProperty="firstName" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.firstName.label}"*
    *id="c2">*
    *<af:inputText value="#{row.bindings.firstName.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.firstName.label}"*
    *required="#{bindings.perInfoAll1.hints.firstName.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.firstName.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.firstName.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.firstName.tooltip}"*
    *id="it2">*
    *<f:validator binding="#{row.bindings.firstName.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *<af:column sortProperty="lastName" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.lastName.label}"*
    *id="c3">*
    *<af:inputText value="#{row.bindings.lastName.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.lastName.label}"*
    *required="#{bindings.perInfoAll1.hints.lastName.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.lastName.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.lastName.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.lastName.tooltip}"*
    *id="it1">*
    *<f:validator binding="#{row.bindings.lastName.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *</af:table>*
    *</af:form>*
    *</af:document>*
    *</f:view>*
    but when run it i see the following errors
    *Class oracle.adf.model.adapter.bean.BeanDataControl can not access a member of class nl.amis.hrm.EmpManager with modifiers "private"*
    *Object EmpManager of type DataControl is not found.*
    *java.lang.NullPointerException*
    *Class oracle.adf.model.adapter.bean.BeanDataControl can not access a member of class nl.amis.hrm.EmpManager with modifiers "private"*
    *Object EmpManager of type DataControl is not found.*
    *java.lang.NullPointerException*
    :(

  • How to get all previous versions page contents of a publishing page using SharePoint Client Object Model 2010

    How to get all previous versions page contents and other field values of a publishing page using SharePoint Client Object Model 2010?
    Thanks,
    Osmita

    Hi Osmita,
    Greetings.
    Here are the links that helps you. It has code attached to it.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/a0d2ab40-99ba-4368-8505-1dc559ef6469/get-content-of-previous-version-of-page-sharepoint-2010?forum=sharepointgeneralprevious
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/faaf419f-997e-4150-9911-48cc375c3b46/how-to-get-previous-published-versions-of-publishing-pages-in-sharepoint-2010?forum=sharepointdevelopmentprevious
    Please remember to click 'Mark as Answer' on the answer if it helps you

Maybe you are looking for

  • HD Upgrade in MacBook Pro (Early 2008 Model) Recommendations?

    Hello, I have a MacBook Pro (Early 2008 Model), with Snow Leopard 10.6.6 installed (will probably upgrade to Lion when it's released and stable). I want to upgrade the 200gb drive to something over 500gb. The two drives I am currently interested in a

  • What is a good router to run a laptop and 2 iphone 5

    I am just wondering what is the best router to use for laptop use and 2 IPhone 5's Thanks

  • General queries about going from Tiger Quadcore to Leopard Octocore

    For those who have switched from their Tiger Quadcore MacPros to the new Leopard Octocore MacPros...I had some questions about the set up and how things are running now since its already upto 10.5.2 I run basically these programs: Adobe Photoshop CS2

  • Horizontal line on Macbook display

    Hello everyone! I'm writing regarding my brother´s Macbook. The computer is about 1 month old now. He's been very satisfied with his first mac until now. A couple of days ago when his computer woke up from sleep it had this horizontal line (1px high)

  • Adobe Premiere keeps crashing

    I have just downloaded adobe premiere on recommendation from a fellow film maker and want to try it compared to final cut. As soon as I import any video footage it crashes with a fatal error.