Access a variable in another layer?

Is there a way to access a variable in another layer?

Example:

Layer 1 expression:

x 1 = v * time;

.....

Expression of layer 2:

something like that

anotherLayerX1 = thisComp.layer("1"). GetVariable (x 1);

thisComp.layer("1"). SetVariable (x 1, anotherLayerX1 + 10);

Nope. The only thing available to other expressions is the value that results.

Dan

Tags: After Effects

Similar Questions

  • Variables with another layer

    I made a function to configure all the dynamic text on a layer and it looks like this:

    SkillP = SkillsMenu

    Hmpc = "Combat level: ';"
    CmbT = SkillP.CombatLevel

    AtkP = "attack level: ';"
    Receptivity = SkillP.AttackLevel

    Catalog = ' force level: '; "
    StrT = SkillP.StrengthLevel

    Verde = "defence level: ';"
    Clever = SkillP.DefenseLevel

    WcP = ' level of wood carving: «;»»
    WcT = SkillP.WoodcuttingLevel

    FshP = ' fishing level: '; "
    E‹WHF¤jhau¡= SkillP.FishingLevel

    updateSkills();

    function updateSkills() {}
    trace (Level);
    CmbT.text = Hmpc + level;
    AtkT.text = AtkP + AtkLvl;
    StrT.text = STRP + StrLvl;
    DefT.text = Verde + DefLvl;
    WcT.text = PCM + WcLvl;
    FshT.text = FshP + FishLvl;
    }

    Then on another layer, I have this:

    -Levels-------.
    Level = 1;
    AtkLvl = 1;
    StrLvl = 1;
    DefLvl = 1;
    WcLvl = 1;
    FishLvl = 1;

    -Levels-------.

    But on my service when I do trace (Level) only traces Undefined.

    But if I add trace (Level) to my other put tracks 1.


    Why is this happening?

    That sounds as if it might be the load order of the layers.

    Maybe the undefined is followed because it does not find the variable.

    Try to rearrange the order of loading in the publication settings panel.

    Select the Flash tab, and then passes the second drop down opposite you. If its Top Down then get down at the top and vice versa.

    Hope this helps

  • Trynig to access a variable in another mxml

    Hi all

    I am looking for guidance here as I am new to Flex. I have a datagrid with two columns at the end containing the converters element. The idea is that the user can check an edit or delete icon to edit or delete this line. I use a component mxml for each rendering engine file and cannot figure out how to access the values of the calling application. All my web service, etc. in the main application code, I need to find a way to get there.

    I've read several books and articles and have tried implementing an event handler in two mxml files but I am unable to get the mxml parent for the event. Here is a code example. Any ideas?

    This is the mxml component file...
    <? XML version = "1.0" encoding = "utf-8"? >
    "" < mx:HBox xmlns:mx = ' http://www.adobe.com/2006/mxml ' horizontalAlign = "center" >

    < mx:Metadata >
    [Event (name = "editCurrentHandler" type = "flash.events.Event")]
    < / mx:Metadata >

    < mx:Script >
    <! [CDATA]
    private void clickHandler(): void
    {
    Import mx.controls.Alert;

    Alert.Show ("clickHandler in edit item renderer Called");

    var eventObj:Event = new Event ("editCurrentHandler");
    dispatchEvent (eventObj);
    }
    []] >
    < / mx:Script >
    < mx:Image id = "imageDelete" source = "images/bluepencil.gif" width = "20" click ="clickHandler ()" / > "
    < / mx:HBox >



    This is an excerpt from the parent mxml file...
    private void initApp(): void
    {
    wsProjectInformation.getControlsProjects.send ();
    addEventListener ("editCurrentHandler", editCurrentHandler);
    addEventListener ("deleteCurrentHandler", deleteCurrentHandler);

    }

    public void editCurrentHandler(): void
    {
    Alert.Show ("Edit was clicked!");
    }

    public void deleteCurrentHandler(): void
    {
    Alert.Show ("Delete was clicked!");
    }


    < mx:DataGrid id = "dataGridDeliverables" visible = "false".
    dataProvider = "{wsProjectInformation.getProjectDeliverableDocuments.lastResult}" "
    change = "getProjectTasks ()" >
    < mx:columns >
    < mx:DataGridColumn headerText = "ID #" dataField = "projectDeliverableID" width = "50" / >
    < mx:DataGridColumn headerText = "Description" dataField = "projectDeliverableName" width = "200" / >
    < mx:DataGridColumn headerText = dataField ' hours EST. "="projectEstHours"width ="80"/ >
    < mx:DataGridColumn headerText = "Outbound Dollars" dataField = "projectEstDollars" width = "80" / >
    < mx:DataGridColumn width = "20" itemRenderer="com.psc.components.editRenderer"/ >
    < mx:DataGridColumn width = "20" itemRenderer="com.psc.components.deleteRenderer"/ >
    < / mx:columns >
    < / mx:DataGrid >

    I finally got this problem is resolved. The key was to create my own datagrid class and add my own events they get called my converters point component. This has been a little over my head but thx for Adobe support for help with this one!

    package
    {

    Import mx.controls.DataGrid;
    Import mx.events.ListEvent;

    [Event (name = "MyDeleteCurrentEvent" type = "mx.events.ListEvent")]
    [Event (name = "MyEditCurrentEvent" type = "mx.events.ListEvent")]

    SerializableAttribute public class extends DataGrid MyDataGrid
    {

    public static var MY_DELETE_CURRENT_EVENT:String = "MyDeleteCurrentEvent";
    public static var MY_EDIT_CURRENT_EVENT:String = "MyEditCurrentEvent";

    public void MyDataGrid() {super()}

    }
    }

    Of my clickhandler in the mxml component
    var event: ListEvent = new ListEvent (MyDataGrid.MY_EDIT_CURRENT_EVENT);
    event.itemRenderer = this;
    owner.dispatchEvent (event);

  • to access the variables in a page in another page qml

    Hey gang,

    I've been watching some of the other problems autour to access the variables from one page on another page qml qml, and I can't get this to work.

    I have a page, main.qml with a NavigationPane.  The NavPane has a Page and some containers.

    I have a property defined in the NavigationPane like this:

    NavigationPane {
        id: mainNav
        backButtonsVisible: true
        property int customInt: 2
    
        onCustomInt: {
            console.log("  -------------> App: customInt");
        }
    

    I have a ComponentDefinition for next page, called SettingsPage.qml.  In the settings, I have two drop-down lists and a slider.

    Page {
        actionBarAutoHideBehavior: ActionBarAutoHideBehavior.HideOnScroll
        id: pgSettings
    
        ScrollView {
            id: pageScroller
            scrollViewProperties.initialScalingMethod: ScalingMethod.AspectFit
            Container {
                topPadding: 25
                bottomPadding: 25
                rightPadding: 25
                leftPadding: 25
                Label {
                    text: "Settings"
                    textStyle.fontSize: FontSize.XLarge
                }
            Container {
                id: dropDown1
                topPadding: 25
                bottomPadding: 25
                rightPadding: 25
                leftPadding: 25
                DropDown {
                       id: ddOption1
                       title: "Option 1"
                       verticalAlignment: VerticalAlignment.Center
                       horizontalAlignment: HorizontalAlignment.Center
                      Option {id: o1o1; text: "One"; }
                      Option {id: o1o2; text: "Two"; }
                      Option {id: o1o3; text: "Three"; selected: true; }
                      Option {id: o1o4; text: "Four"; }
    
                    onSelectedIndexChanged: {
    
                        switch (selectedIndex){
                            case 0:
                                //
                                console.log(" -->App: Option 1 Selector, On");
                                customInt = 0;
                                break;
                            case 1:
                                //
                                console.log(" -->App: Option 1 Selector, Off");
                                customInt = 1;;
                                break;
                            case 2:
                                //
                                console.log(" -->App: Option 1 Selector, Top (default)");
                                customInt = 2;
                                break;
                            case 3:
                                //
                                console.log(" -->App: Option 1 Selector, Bottom");
                                customInt = 3;
                                break;
                        }
                    }
                }
            } }
    

    I look forward to the the statement will change the level property NavPane, called customInt, but it doesn't.

    the output of the console shows that the ' App: Option 1 selector "gets selected in the dropdown list selected index changes, but the onCustomInt() funtion slot never gets called.

    I tried "mainNav.customInt = X" too, but the parameters cannot solve the mainNav.  I get "unknown symbol 'mainNav'" error with alittle bulb.

    what I am doing wrong?

    When you call the second page, SettingsPage.qml, set it as an object.

    Don't do the following:

    attachedObjects: [
    
        ComponentDefinition {
            id: settingsPageDefinition
            source: "SettingsPage.qml"
        }
    ]
    

    Follow these steps:

    attachedObjects: [
        // Definition of the second Page, used to dynamically create the Page above.
        ComponentDefinition {
            id: settingsPageDefinition
            Settingspage{
    
            }
        }
    ]
    

    Then the second page main navigation page in the IDE.  I had the same problem with a multi-page application, I created.

  • Use roto brush result in another layer

    Hello!

    I used the roto/refine edge brushes to isolate an object FG in a few sequences of shooting. I would take the resulting mask from that and use it to cut a few 3D layers that should seem to be behind it. Is it possible to export the result as a mask roto brush, or use the roto brush effect to another layer? Or even to export just the alpha in the images I can pull back as a layer of film?

    The only solution I can think of right now is to copy the film with roto brush effect layer and the layer of the FG of the 3D elements cutting element, but I prefer to keep the 3D elements instead of adding an extra layer.

    Clause of the disclaimer that I am relatively new to AE, even though I'm known in other packages.

    Thank you!

    There is no rendering hit with two copies of your roto masked layer. There is no reason not to duplicate the layer and make a matte. You must have a source for the alpha somewhere. If you disable the RotoBrush effect, is all the same that never apply there is therefore no mast to extract. I would duplicate the images first, then roto first folio of the layer and use it as a matte.

    If you really do not want to duplicate the layer, but still want to have access to the info Matt Rotobrush you can use other techniques to rearrange the order of rendering so that the mask of roto is still usable but the images don't seem to be hidden. This will only two layers in your main computer.

    Before dialing your rotoscoped film move all attributes. This puts the mask on top of the rendering order. Apply presets for the layer of film of Pre-composed and the Alpha value, the bottom option, full. This leaves the first instance of the alpha in the rendering order stack. You can then use any presets or Set Matte on the layer that you want to apply the matte roto to extract alpha from the top of the rendering order. In this way the Alpha is extracted from the Rotobrush until the Alpha is set to integer by presets. It is the only way not to have only one copy of your images in your main comp, but it would take so much time to make simply to use a duplicate and follow mast.

    Another option would be to RotoBrush your film and then make a copy with alpha and then apply Set Matte or make a single copy of the alpha of the images to use as a matte.

  • How can I get text from several fields on a layer, copy a field on another layer?

    A little help please, as he did for years I did any coding of any kind.

    So, I have a document of 4 pages with different types of fields.  I have a document script that gets "TodaysDate" which works perfectly and some other scripts as well.

    So what I try to do is to find a work around for the following:

    I have 3 fields - NAME, first NAME and date of birth.

    Info.jpg

    And I want to what is typed in these fields to fill in 1 field.  And according to this tutorial (http://acrobatusers.com/tutorials/how-save-pdf-acrobat-javascript) it is not really possible.  At least, I think that's what he said.

    However, I hope that maybe I could have a button to send at the end of this document when you click Copy the text of these 3 areas (that I would on 1 layer) in 1 field on a 2nd layer.  Is it still possible?

    I also want to make the document print, Save (by using the text in the field on the 2nd layer as file name), Email (using the text in the field of the 2nd layer as the subject line) and export to a specific Excel spreadsheet.

    I'm not much I do?

    I'm using Acrobat 9 Pro on a Windows PC, but also have access to Acrobat 8 Professional.  And I want to run the form in Acrobat Reader X.

    So far, I have 3 fields in 1 on another layer:

    function buttonClick() {}

    if(ButtonClick==false)

    {

    Event.Value = This.getField ("Surname"+"-"+"FirstName"+"-" + "DOB") .valueAsString;

    }

    }

    But I don't know how to call the event.value 1 layer to another, or if none of that code above would even work at all.

    I have a script that I works perfectly for registration and Email function:

    Using the function "doc.submitForm ()".

    It is the return e-mail form. Its hard-coded

    to make the shape always comes back to the same address

    Change address on your form

    var cToAddr = " " [email protected] "; "

    First of all, download the customer email CC

    var cCCAddr = this.getField("ClientEmail").value;

    Now get the email recipient if it is filled

    var cBenAddr = this.getField("BennyEmail").value;

    If (cBenAddr! = "") cCCAddr += ';' + cBenAddr;

    Set text object and the body of the e-mail message

    var cSubLine = 'Form X-1 returned to customer'; var cbody = "thank you for submitting your form. \n' + 'save the attachment of e-mail for your own records;

    * Send the form data as an attachment of XML on an e-mail

    Construct the URL to messaging

    var cEmailURL = ' mailto: . " [email protected] ? cc = ' + cCCAddr + '& subject =' + cSubLine + '& body =' + cbody;

    1. this.submitForm({)

    cURL: cEmailURL,.

    cSubmitAs: "XML."

    cCharSet: 'utf-8 '.

    });

    I'll work on export to Excel thing later I saw many tutorials on that.  But I can do the 3 fields to 1 thing at all?

    Help, please!

    First of all, you must understand that in 99% of cases, fields do not exist on layers. The two are separate entities.

    And the code you posted is not correct:

    Event.Value = This.getField ("Surname"+"-"+"FirstName"+"-" + "DOB") .valueAsString;

    You can access each field separately using the getField method, so it should be:

    Event.Value = This.getField ("Surname") .valueAsString + '-' + this.getField("FIRSTNAME").valueAsString + '-' + this.getField("dob").valueAsString;

  • Cannot access textfield value in another page

    Hello, I thought it would be simple and straightforward, but I hit a wall.

    I can't access the values from another page in a script.

    I'm trying to set a value of a text field to the value of a text field which is in another page.

    I have the click event (just to test):

    eApp.ENB - 7-07 - CAGAIN_Page_5.a3z_data_AdditionalInfo::click - (JavaScript, client)

    this.rawValue = eApp.ENB - 7-07 - CAGAIN_Page_4.AccountNumber.rawValue;

    He does not get the value.

    But if I copy create a field on the same page (page 5 here) with the same information, I can access

    with this.parent.AccountNumber.rawValue;

    I can make it work, by copying the textfields on the page and in hiding, then using their value.

    but it seems dirty and useless.

    I just want to be able to access the fields on another page, I thought it would be as easy as form.page4.accessthisvalue

    Any help is VERY appreciated, been banging my head for a moment loong.

    Hello

    It should not be a problem doing this, you can reference a field anywhere on the form.  You get script errors?  My first guess would be to rename the ENB-7-07-CAGAIN_Page_4 field so that it doesn't have the dash inside character, he might try to subtract 7 variable he thinks is called BNB.

    Concerning

    Bruce

  • Access a variable level of subquery connection

       With curr_date_details as 
    (
        select   to_date('16-dec-09', 'dd-mon-yy') as businessdate  
              ,  trunc( to_date('16-dec-09', 'dd-mon-yy'), 'iw') as bow 
              ,  to_date('23-nov-09', 'dd-mon-yy')  as bop
              ,  trunc(to_date('23-nov-09', 'dd-mon-yy'),'iy')  as boy    
              ,  3 as week_nbr
              ,  3 as per_week_nbr 
              ,  12 as per_nbr 
       from dual 
    ) 
       select  --== Week Number 
                  case when level <= date_rec.per_week_nbr
                     then  level
                     when level = date_rec.per_week_nbr  + 1 
                    then 6
                    when level = date_rec.per_week_nbr   + 2
                    then  7
                        when level = date_rec.per_week_nbr   + 3
                    then  0
                end as week_nbr 
                --== Start Date 
              , case when level <= date_rec.per_week_nbr
                     then  to_date('23-nov-23', 'dd-mon-rr') 
                     when level = date_rec.per_week_nbr  + 1 
                    then  date_rec.bop
                    when level = date_rec.per_week_nbr   + 2
                    then  date_rec.boy   
                         when level = date_rec.per_week_nbr   + 3
                    then  date_rec.boy   
                end as start_date 
                --== End Date 
               , case 
                    when level <= date_rec.per_week_nbr
                    then   to_date('23-nov-23', 'dd-mon-rr')  + 6   
                      when level = date_rec.per_week_nbr  + 1 
                    then  date_rec.bow + 6 
                     when level = date_rec.per_week_nbr  + 2
                    then  date_rec.bow + 6 
                            when level = date_rec.per_week_nbr   + 3
                    then  date_rec.bop - 1   
                 end as end_date
              --=== Dummy Column 
              , case 
                    when level <= date_rec.per_week_nbr 
                    then ( select 1 + level as t  from dual)
                    else  100
                end as pesky_column
          from dual mydual
          inner join curr_date_details date_rec on  date_rec.businessdate = to_date('16-dec-09', 'dd-mon-yy') 
          connect by level <= date_rec.per_week_nbr  + 3
    gives me the error:

    Error in the command line: 9 column: 2
    Error report:
    SQL error: ORA-01788: CONNECT BY clause in this query block
    01788 00000 - 'CONNECT BY clause in this query block'
    * Cause:
    * Action:

    How can I access subquery variable?

    This question was taken from another post
    Having trouble selecting from a table function

    Hello

    With the help of a joiin:

    WITH     connect_by_query AS
    (
       select  --== Week Number
                  case when level <= date_rec.per_week_nbr
                     then  level
                     when level = date_rec.per_week_nbr  + 1
                    then 6
                    when level = date_rec.per_week_nbr   + 2
                    then  7
                        when level = date_rec.per_week_nbr   + 3
                    then  0
                end as week_nbr
               --=== Dummy Column
           , LEVEL     AS lvl
           , per_week_nbr
          from curr_date_details date_rec
          connect by level <= date_rec.per_week_nbr  + 3
    )
    SELECT       cb.week_nbr
    ,       case
                    when  cb.lvl <= cb.per_week_nbr
                    then  NVL (sd.sales, 0)
                    else  100
                end as pesky_column
    FROM           connect_by_query     cb
    LEFT OUTER JOIN      sample_data          sd     ON     sd.datakey = cb.lvl
    ORDER BY  cb.lvl
    ;
    

    You could also calculate week_nbr in the main query, rather than the subquery.

    With the help of a scalar subquery:

    WITH     connect_by_query AS
    (
       select  --== Week Number
                  case when level <= date_rec.per_week_nbr
                     then  level
                     when level = date_rec.per_week_nbr  + 1
                    then 6
                    when level = date_rec.per_week_nbr   + 2
                    then  7
                        when level = date_rec.per_week_nbr   + 3
                    then  0
                end as week_nbr
               --=== Dummy Column
           , LEVEL     AS lvl
           , per_week_nbr
          from curr_date_details date_rec
          connect by level <= date_rec.per_week_nbr  + 3
    )
    SELECT       week_nbr
    ,       case
                    when lvl <= per_week_nbr
                    then NVL ( ( select sales from sample_data where datakey = lvl)
                    , 0
                    )
                    else  100
                end as pesky_column
    FROM       connect_by_query
    ORDER BY  lvl
    ;
    

    Note that the connect_by_query of the subquery is the same in both cases.

  • How can I move an entity from one layer to another layer in Ultiboard

    I can't understand how cutting and pasting text from one layer to another layer. Is this possible?

    Thank you, todc.18

    Hello

    Double-click the text to open its properties, go to the tab Position , in the field of layer , select a new layer, then click OK.

    I hope this helps.

    Fernando

  • I want to save my outlook.pst file but get the following error message:-impossible to copy outlook: the process cannot access the file because another process has locked a portion of the file.

    I want to save my outlook.pst file but get the following error message:-impossible to copy outlook: the process cannot access the file because another process has locked a portion of the file. How can I unlock it please?

    You have Outlook open when you save? You need to close.

    Hope this helps

    Post back if necessary

    ___________________________________________________________

    If this post can help solve your problem, please click the 'bookmark' or 'Yes' to this message button. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • I use Windows Mail (Vista OS) on my home PC. Can I access my account from another PC?

    Original title: Windows Mail

    I use Windows Mail (Vista OS) on my home PC. Can I access my account from another PC?  If so, how do

    You will need to create an account on the other PC the same as the one you have now.
     
    On both machines:
     
    Tools | Accounts | Mail | Properties | Advanced - Check: leave a copy of messages on the server.
     
    On a single computer only, make sure to delete messages after X days to satisfy your allocated space that you get from your server.
     
    If it doesn't is that for a brief period of trip example, you might be better parcel just connect to the Webmail of your server site.
     
     
  • Network - cannot access one system to another in Windows 7

    In the cable system in my office, we can not able to access one system to another? His error message "cannot find the path of the network".

    Hi Jothisivalingam,

    -You're on a domain network?

    There are a number of reasons why you can't connect to other computers on your home network, or you can't share files and printers with them. I suggest you to see Help links and check if it helps.

    Why can't I connect to other computers?

    http://Windows.Microsoft.com/en-CA/Windows7/why-can-t-i-connect-to-other-computers

    See also:

    Why can't I access my home group?

    http://Windows.Microsoft.com/en-CA/Windows7/why-cant-i-access-my-HomeGroup

    Let us know the status of the issue. If you need help, please after return. We will be happy to help you.

  • How to access a variable of any page

    I have a variable on the page 1 known. p1_my_var I need to be able to access this variable in any other page, I can do this and if so, how?

    CREATE AN element of the apllication in share component

    my_variable

    with the protection of session state

    without restriction

    create a process plsql on the page where this p1_my_var is present

    immediately present after the calculation and validation

    BEGIN

    () APEX_UTIL.set_session_state

    p_name-online "p1_my_var."

    p_value =>: my_variable);

    END;

    condition

    submit button

    After that: my_variable value can be used in a different page within the session

  • To access package variables

    create or replace PACKAGE foo
    AS
    function f1 ( bar in VARCHAR2)
    return boolean;
    END;
    
    
    create or replace PACKAGE BODY foo
    AS
    function f1 ( bar in VARCHAR2)
        return boolean
       IS 
       BEGIN
      DBMS_OUTPUT.PUT_LINE ('IN FUNCTION F1');
       return TRUE;
    END F1;
    END;
    

    I have the package above and I want to access package foo variable bar in stand-alone function f2. . How can I achieve this?

    create or replace FUNCTION f2 ( p IN  VARCHAR) 
    RETURN BOOLEAN 
    IS
    BEGIN
    DBMS_OUTPUT.PUT_LINE (foo.bar);
    DBMS_OUTPUT.PUT_LINE (9);
    return true;
    END;
    
    I am getting an error  
    
    Error(5,27): PLS-00302: component 'BAR' must be declared 
    
    
    

    2779499 wrote:

    Oh I mean the bar in parameter to the function f1. I can access in F2?

    No, you can't.  Variables and objects etc. have 'reach.  That means that they exist only in scope, they are declared (so the level they are declared and children procedures/functions etc..).  F2 is completely outside f1, so that she can not possibly access this variable or a parameter, as this function f1 is not instantiated, even to the point that running code F2.  This isn't just a thing of PL/SQL, it is the principles of almost all of the procedural languages encoding standard.

  • How to move a layer over another layer uisng jsx?

    Hello guys,.

    can some tell me how do to move a layer to the top another layer using jsx script?

    Hi John,.

    Try this Code...

    var doc=app.activeDocument;
    var moveLayer = doc.activeLayer;
    var targetLayer = doc.layers[0];//say topmost layer;
    moveLayer.move(targetLayer,ElementPlacement.PLACEBEFORE);
    doc.activeLayer=targetLayer;
    //SelectionLayer;
    var laySB=doc.activeLayer.bounds;
    doc.selection.select([[laySB[0],laySB[1]],[laySB[2],laySB[1]],[laySB[2],laySB[3]],[laySB[0],laySB[3]]], SelectionType.REPLACE, 0, false);
    doc.activeLayer=moveLayer;
    align('AdCV');
    align('AdCH');
    doc.selection.deselect();
    
    function align(method) {
      var desc = new ActionDescriptor();
      var ref = new ActionReference();
      ref.putEnumerated( charIDToTypeID( "Lyr " ), charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
      desc.putReference( charIDToTypeID( "null" ), ref );
      desc.putEnumerated( charIDToTypeID( "Usng" ), charIDToTypeID( "ADSt" ), charIDToTypeID( method ) );
      try{
      executeAction( charIDToTypeID( "Algn" ), desc, DialogModes.NO );
      }catch(e){}
    }
    

Maybe you are looking for

  • How to fix audio and video?

    Yes while watching a video (whether on Youtube, etc.) or a downloaded in Quicktime video format will stop after a minute and the buffer or simply freeze (Note: though it has already loaded or is already on my hard drive!), will be so audio. After 15

  • Z3 case double

    Hello. I'm new here. I can't find any accessories for my new Z3 double due to the difference in design between her and the Z3. Not even on the official site of Sony. All cases on Amazon are z3 to z3 compact.Any suggestions? Thank you.

  • How to open the .box file extensions?

    I can't download my new Windows 7 Home Premium, because the first download is an extension of the .box file. I downloaded (and paid) Paretologic to tell me that I was missing that I need to open them (duh) and told me to download ICQ, who would have

  • Help to connect a wireless router. Question of address/LAN IP.

    I'm trying to set up a router without wire-gbroadband of Linksys (model wrt54g2) to my dell dimension e310 desktop. Follow the 4 easy steps to pluging in there and get an error message saying that it is not detected. Tried to reset and reconnect. At

  • the appeal of menus in oracle forms

    Hello I created a simple menu (main Menu that calls two forms and vendor accounts).When I click on accounts he made a CALL_FORM (formname) So when I go to the form of accounts and then navigate to the suppliers form, then return to the form of accoun