Arithmetic applied to a variable

I'm just back in Captivate development and here is something that I used to know how to do that I have a hard time to recreate. The interaction is simple, the learner suggested a number in a text box, click on submit and the number is multiplied by a static number, and the result is displayed. So far, here's what I can do:

I can create a variable and the number in the input text box appears on the screen. I can also create a standard action that uses the variable and do the math. I can't find a way for the output to the screen with a click of the submit text box button. Ideas, links, or other suggestions?

Yes, that's the answer... In the action of the text entry area, I configured: success: run advanced measures then Script: Total who has worked like a champ... Thanks for the comments!

Tags: Adobe Captivate

Similar Questions

  • Apply to a variable to APEX_ITEM. SELECT_LIST_FROM_QUERY

    OS = Windows 7 version

    Version of DB = 10G

    Apex Version = 3.2.1.00.11

    Hello

    Currently, I'm trying to use apex_item.

    I want the order of the SELECT_LIST_FROM_QUERY to display the users at the top of the drop folder.

    I created a view named dbv_team_list;

    select upper (parties.last) || ' ' || upper(parties.first) || ' - ' || skill.skill_level || ' - ' || team_list.status display
         , team_list.team_list_id return
      from dbx_team_list team_list
         , dbx_users users
         , sfm_common.sct_parties parties
         , dbx_skill_level skill
         , dbx_pay_rate pay_rate
    where team_list.user_id = users.user_id
       and users.par_id = parties.par_id
       and team_list.skill_level_id = skill.skill_level_id
       and team_list.pay_rate_id = pay_rate.pay_rate_id
       and team_list.effective_to is null;
    
    
    
    

    I want to use the query named dbv_team_list like this and add an order by (to obtain the registration of the user logged on to appear at the top of the list);

    select display, return from dbv_team_list order by (case return when 3 then 0 else 1 end) asc
    
    
    
    

    I formed what follows as a test to see if I need work and it does.

    SELECT APEX_ITEM.SELECT_LIST_FROM_QUERY(12,NULL,'select display, return from dbv_team_list order by (case return when 3 then 0 else 1 end) asc') "Name"
      FROM DUAL
    
    
    
    
    
    

    I created something called P19_USERNAME to store the value of the column in the view named «BACK» This value is a number.

    But when I try to put a variable in the code it returns an error. The following text shows what I tried so far and everyone here is the error code returned.

    Example 1

    SELECT APEX_ITEM.SELECT_LIST_FROM_QUERY(12,NULL,'select display, return from dbv_team_list order by (case return when :P19_USERNAME then 0 else 1 end) asc') "Name"
      FROM DUAL
    
    
    
    
    
    

    error report:

    ORA-06550: line 1, column 152:

    PL/SQL: ORA-00932: inconsistent data types: expected NUMBER obtained TANK

    ORA-06550: line 1, column 7:

    PL/SQL: SQL statement ignored

    Example 2

    SELECT APEX_ITEM.SELECT_LIST_FROM_QUERY(12,NULL,'select display, return from dbv_team_list order by (case return when NV('P19_USERNAME') then 0 else 1 end) asc') "Name"
      FROM DUAL
    
    

    Failed to parse the SQL query:

    ORA-00907: lack of right parenthesis

    Could someone tell me if this is possible and how would I make the code so it's works.

    Concerning

    Ben

    Benton says:

    But when I try to put a variable in the code it returns an error. The following text shows what I tried so far and everyone here is the error code returned.

    Example 1

    1. SELECT APEX_ITEM. SELECT_LIST_FROM_QUERY (12, NULL, "Select display, return from dbv_team_list by (case back when: end P19_USERNAME of another 1 then 0) CSA '") 'name '.
    2. OF THE DOUBLE

    error report:

    ORA-06550: line 1, column 152:

    PL/SQL: ORA-00932: inconsistent data types: expected NUMBER obtained TANK

    ORA-06550: line 1, column 7:

    PL/SQL: SQL statement ignored

    APEX are "you typed": all element values are of type VARCHAR2. The SQL CASE expression requires that the original expression and comparison expressions are of the same type. Here, the original expression seems to be a NUMBER, or the comparison of the expressions must also show NUMBERS. The APEX P19_USERNAME element is a VARCHAR2, so it must be explicitly converted or accessible using the function NV:


    SELECT APEX_ITEM.SELECT_LIST_FROM_QUERY(12,NULL,'select display, return from dbv_team_list order by (case return when to_number(:P19_USERNAME) then 0 else 1 end) asc') "Name"
      FROM DUAL
    


    Example 2

    1. SELECT APEX_ITEM. SELECT_LIST_FROM_QUERY (12, NULL, "Select display, return of the order of dbv_team_list (case back when NV('P19_USERNAME') then 0 1 other end) CSA") 'name '.
    2. OF THE DOUBLE

    Failed to parse the SQL query:

    ORA-00907: lack of right parenthesis

    Quotes inside strings must be escaped by doubling them:

    SELECT APEX_ITEM.SELECT_LIST_FROM_QUERY(12,NULL,'select display, return from dbv_team_list order by (case return when NV(''P19_USERNAME'') then 0 else 1 end) asc') "Name"
      FROM DUAL;
    

    However, the best approach when dealing with strings containing code is to use the alternative quoting mechanism:

    SELECT APEX_ITEM.SELECT_LIST_FROM_QUERY(12,NULL,q'{select display, return from dbv_team_list order by (case return when NV('P19_USERNAME') then 0 else 1 end) asc}') "Name"
      FROM DUAL;
    

    Also suggest you use does not RETURN as a means of identification as it is a keyword in PL/SQL.

  • By subtracting the Cp6 system variable?

    Hi all

    I shows the progress of the slide using the system variable $$cpInfoCurrentSlide$ $ $ $rdinfoSlideCount$ $

    But since I have a few slides 'ghosts' that are not actually part of the lesson (help of slides, etc.), I don't want to count them as part of the total number of slides.

    Unfortunately, Captivate is arithmetic applies to system variables (i.e. $$cpInfoCurrentSlide$ $ $$ rdinfoSlideCount$ $-3). That would make life so much easier in this case and many others.

    Anyway, I've tried (and failed) to create a new variable, assign the value of $$rdinfoSlideCount$ $ for the new variable and then subtract 3 from the new variable. Can someone explain please the right way to do this? Basically, I want to just display the value of $$rdinfoSlideCount$ $ minus 3.

    I couldn't find a close reference to what I'm looking for...

    http://forums.Adobe.com/message/4108450

    Anyone?

    Thank you

    Hello Doug,

    I agree, I wish that we could simply add expressions to variables as you suggested.

    Stem is correct on how it is done, but allow me to expand on his position.

    Steps to follow:

    1. go in project/Variables and create a new variable of user (a name that makes sense)

    2 save it (you don't need anything to other filled)

    3. go in Advanced Actions... and create a Standard Action and give it a name of Action that makes sense

    4. Add a new action, in the first column [action type] select Expression, in the columns section, select the user variable created in step 1 = variable (choose cpInfoSlideCount), select '-' and then select literal and enter the total number of slides that you do not want to remove the County.

    5. save it

    6. to view this new value, you must go to the slide and select Action: enter: perform advanced Actions and select Script (it is the name of your tip in step 3 Action

    7. Insert a text caption and add some text you need and then add select Insert Variable, which is the name chosen in step 1

    Fact.

    I hope I captured all the steps. I'm not near a computer and I'm half asleep. That's all for tonight.

    Take care of all, Shawn

  • read into the buffer variable published network shared

    I use a shared variable that is published in the network buffer to write data to an RT target and read data buffered by the host application.

    I followed a different behavior regarding data buffering using Variable vs reading read the shared Variable node.

    There is no problem the shared variable node read but using the results of reading variable function of loss of data, such as access without alkaline reserve. I can read only some of my data values.

    I see no difference in access in the buffer in LV2009 help.

    against

    Any help is appreciated

    Christian

    Hi Christian,

    The behavior you describe is because the client side PSP buffering is not applied to the Variable API shared in LabVIEW 2009.  It was a design decision, but eventually, we hope to include this feature in a future version of LabVIEW.  This bug here as you pointed out is the lack of documentation for it.  Corrective Action Request # 202159 has been filed for this issue.

    Let me know if you need assistance working around this issue.

    See you soon,.

  • Question in presentation Variable

    Hello world

    I created a variable for the week and the year and I'm trying to merge them to apply as a filter.

    To do this, I have converted the week num in char type. The week so not 1, 2, 3.12, 13 will be displayed as 01,02, 03... 12, 13.
    so I can add concatenate them with year and together there filter for a report.

    Reason for all this is. I need to display the results to a report based on the selection of values prompt like

    of the year of the week for the week year
    2010 50 2011 05

    Fact table and calendar are joined by the date fields.

    When the prompt values are selected and applied to the variable of presentation rather than spend '05' it's just by the way of "5". How to get this done. Are also tell me the work around to filter with cookers.

    I hope that I am clear,

    Thanks in advance

    Concerning
    Sandeep

    Hello

    I tried in my environment and syntax '2011' | right ("0" |) Cast (50 as CHARACTER (2)), 2) works very well.

    You can try with the integer data type:

    Cast ((2011*100+PRESENTATION_VARIABLE) as char (6)).

    Kind regards
    Gianluca

  • Binding type variable of function return type?

    Hi, is it possible to bind a type variable to a function return type, so that changes in type of variable according to the function return type definition?
    Something like what is happening with TYPE and % ROWTYPE.

    Thank you

    Veverke wrote:
    Hi, is it possible to bind a type variable to a function return type, so that changes in type of variable according to the function return type definition?

    Well, not directly. However, if the function returns SQL declared of type you could:

    1. create a dummy cursor that selects the function of double
    2. create a dummy record variable dummy cursor %
    3. create your variable or dummy record attribute type:

    SQL> desc f1
    FUNCTION f1 RETURNS VARCHAR2
     Argument Name                  Type                    In/Out Default?
     ------------------------------ ----------------------- ------ --------
     P_NUM                          NUMBER                  IN
    
    SQL> declare
      2      desired_variable f1%type;
      3  begin
      4      desired_variable := 1;
      5  end;
      6  /
        desired_variable f1%type;
                         *
    ERROR at line 2:
    ORA-06550: line 2, column 22:
    PLS-00206: %TYPE must be applied to a variable, column, field or attribute, not to "F1"
    ORA-06550: line 2, column 22:
    PL/SQL: Item ignored
    ORA-06550: line 4, column 5:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    
    SQL> declare
      2      cursor dummy_cursor is select f1(1) f1 from dual;
      3      dummy_record dummy_cursor%rowtype;
      4      desired_variable dummy_record.f1%type;
      5  begin
      6      desired_variable := 1;
      7  end;
      8  /
    
    PL/SQL procedure successfully completed.
    
    SQL>  
    

    SY.

  • Variable number of columns

    Hello world

    I am a novice for Oracle SQL. I need to create a report where the number of columns, 1-6, be won't know until the report is run. Each column is a COUNT (*) business for a month.

    The user will provide the beginning month & year and the number of months to report.

    My challenge is to summarize the activity as is indicate below with the growing months from left to right and totals for the line.

    My sql is too less. It's a good start, or I'm in foul territory. I should add that eventually there will be multiple lines with line subtotals and totals in case it makes a difference at this point.

    How to genereate the right number of columns with the correct titles for each month?

    Thanks in advance for your help,

    Lou

    The SQL, I have developed so far
    SELECT
    (COUNT (*) SELECT TABLE_NAME FROM WHERE TO_CHAR (DATE, 'YYYYMM') = '198801') ' 01/1988 ',.
    (COUNT (*) SELECT TABLE_NAME FROM WHERE TO_CHAR (DATE, 'YYYYMM') = '198802') ' 02/1988 ',.
    (COUNT (*) SELECT TABLE_NAME FROM WHERE TO_CHAR (DATE, 'YYYYMM') = '198803') ' 03/1988 ',.
    (COUNT (*) SELECT TABLE_NAME FROM WHERE TO_CHAR (DATE, 'YYYYMM') = '198804') ' 04/1988 ',.
    (COUNT (*) SELECT TABLE_NAME FROM WHERE TO_CHAR (DATE, 'YYYYMM') = '198805') ' 05/1988.
    (COUNT (*) SELECT TABLE_NAME FROM WHERE TO_CHAR (DATE, 'YYYYMM') = '198806') ' 06/1988 ',.
    (SELECT COUNT (*) FROM TABLE_NAME WHERE TO_CHAR(DATE,'YYYYMM') BETWEEN ' 198801 'and ' 198806') 'Total '.
    FROM DUAL;

    Product of the results of this
    01/1988 02/1988-03/04/1988 of 1988 05/1988-06/1988 total
    111 97 122 110 123 126 689

    If you use SQL * as the reporting tool, you can creatively apply the substitution variables and statements of column redefine your topics (assuming you are using my code above with variable bind this code will rewrite headers, but you can disable output while the configurations):

    var year varchar2(4)
    var month varchar2(2)
    var months number
    
    begin
      :year := &year;
      :month := &month;
      :months := to_number(&months);
    end;
    /
    
    column h1 new_value h1 noprint
    column h2 new_value h2 noprint
    column h3 new_value h3 noprint
    column h4 new_value h4 noprint
    column h5 new_value h5 noprint
    column h6 new_value h6 noprint
    
    select 'c1 heading "' || :year || '-' || to_char(to_number(:month)+0,'fm00') ||
           '"' || case when 1 > :months then ' noprint' else ' print' end h1
         , 'c2 heading "' || :year || '-' || to_char(to_number(:month)+1,'fm00') ||
           '"' || case when 2 > :months then ' noprint' else ' print' end h2
         , 'c3 heading "' || :year || '-' || to_char(to_number(:month)+2,'fm00') ||
           '"' || case when 3 > :months then ' noprint' else ' print' end h3
         , 'c4 heading "' || :year || '-' || to_char(to_number(:month)+3,'fm00') ||
           '"' || case when 4 > :months then ' noprint' else ' print' end h4
         , 'c5 heading "' || :year || '-' || to_char(to_number(:month)+4,'fm00') ||
           '"' || case when 5 > :months then ' noprint' else ' print' end h5
         , 'c6 heading "' || :year || '-' || to_char(to_number(:month)+5,'fm00') ||
           '"' || case when 6 > :months then ' noprint' else ' print' end h6 from dual;  
    
    col &h1
    col &h2
    col &h3
    col &h4
    col &h5
    col &h6
    

    Published by: Sentinel on January 29, 2009 11:26

  • ARM Embedded LV: Error: L6218E

    I have a simple program I wrote initially to operate on the cRIO. I'm now the porter to the ARM Keil MCB2300. I created a new project and configure the MCB2300 sucessfully (run several demos of specific LV ARM). I have added the original vi to my library project and deleted all references to the cRIO material. So basically I have a 'stand-alone' vi which may as well work on my host PC (i.e. without reference to any material, just a few loops and before panel buttons/lights)

    When I deploy it in my ARM Board I get the following errors:

    [11: 23:43] status: error
    which connects...
    .\Obj\LabVIEW.axf: error: L6218E: Undefined symbol FreeEventNodeData (called state_machine.o).
    .\Obj\LabVIEW.axf: error: L6218E: Undefined symbol FreeLVEventQ (called state_machine.o).
    .\Obj\LabVIEW.axf: error: L6218E: Undefined symbol LVFrontPanelUnlock (called state_machine.o).
    .\Obj\LabVIEW.axf: error: L6218E: Undefined symbol LVGetNextEvent (called state_machine.o).
    .\Obj\LabVIEW.axf: error: L6218E: Undefined symbol LVUpdateScreen (called state_machine.o).
    .\Obj\LabVIEW.axf: error: L6218E: Undefined symbol RemoveFPEventQ (called state_machine.o).
    .\Obj\LabVIEW.axf: not enough information to generate a file with your COMMENTS.
    .\Obj\LabVIEW.axf: not enough information for image list symbols.
    .\Obj\LabVIEW.axf: not enough information for the plan of the image in the list.
    .\Obj\LabVIEW.axf: finished: 3 information, 0 warning and error messages 6.
    Target not created

    Status: Build failure.

    The name of my vi is 'state_machine' I have no sous-de VI. I know that there are some features limited blocks of LV for the ARMS. I use:

    -While loops

    -structure of the event

    -case of structure

    -arithmetic compoud

    -local variables

    I can't imagine that these would cause the build fails. I don't want to have to re - write my full arm program, if I can avoid it.

    Thank you

    Jason

    Yes, it's the structure of the event. Looks like I'm not the first person to have this problem. The structure of the event is a pretty complicated operation. I guess that LV Embedded for ARM does not support the structure of the event. All these interruptions C nice-code conversion is complicated.

    To resolve this problem, I just rewrote my structure of the parallel event multiple while loops. Inside of each loop is a structure of business T/F. The case is then triggered by what triggered my event.

    Thus, for example, if I had a structure of event with 5 tests, I have 5 simultaneous while loops, each with a structure of T/F case inside of them. Each case structure is then triggered by the Boolean that initially triggered the event.

    Sucks, but...

  • tree does not make children lines

    Hello
    I am trying to build a layout simple tree of master and child vo
    There is a link between the objects in view. In addition, child VO has additional where the restriction applied by a variable binding filled by a value of pageFlowScope on the previous page.
    The problem is that a component of the tree is the display of master records and children lines are missing.

    Help, please.
    (JDev 11.1.2.2)

    How do you provide value for the binding variable?
    Try with the Expression value type and set the values as follows:

    adf.context.pageFlowScope.someValue

  • Math.COS, Math.sin = Math.HELP

    Hi all

    I was hoping to create a JS script to move objects from the common center based on their current location. I thought to use an element of single selected path as the center based on its position x / y and width/height. Using this reference point that the script would then move away all other elements of the path of this central point based on a desired amount and with uniform increases, account required to their current location of this Center. I was thinking about cos and sin would be my friend in this case, but they seem to have become my enemy instead. ;-)

    Does this sound feasible? What Miss me, hurt, misinterpretation? Here's an attempt at non-working, I can't fix things, maybe I was close and missed or maybe I am so far and its complex more than I thought. However at this point I'm confused through my various attempts which is only one of them.

    Thanks in advance for any help and health mental someone can provide.

    // Example failed code, nonworking concept
    var docID = app.activeDocument;
    var s0 = docID.selection[0];
    pID = docID.pathItems;
    var xn, yn;
    var stepNum = 20;
    for (var i = 0; i < pID.length; i++) {
        var p = pID[i];
        var dx = ((s0.position[0] + s0.width) / 2 - (p.position[0] + p.width) / 2);
        var dy = ((s0.position[1] + s0.height) / 2 - (p.position[1] + p.height) / 2);
        xn = Math.cos(Number(dx) * Math.PI / 180)+stepNum;
        yn = Math.sin(Number(dy) * Math.PI / 180)+stepNum;
        var moveMatrix = app.getTranslationMatrix(xn, yn);
        p.transform(moveMatrix);
        stepNum+=stepNum;
    }
    

    Hi W_J_T, here's a way to do what I think you want to do, I put comment the increment so everything will "explode" the same distance, do not know if it is you need.

    first of all, I suggest the calculation of the center of the object selected out of the loop, you only need to do the math once.

    In addition, (s0.position[0] + s0.width) / 2 has a problem, it will not give you the Center, check below

    // calculate Selection center position
    var cx = s0.position[0] + s0.width/2;
    var cy = s0.position[1] + s0.height/2;
    

    then we're going to loop through all the elements and calculate their Center

            // calculate pathItem's center position
            var px = p.position[0] + p.width/2;
            var py = p.position[1] + p.height/2;
    

    We will pass the calculation of the distance from the center of the selection in the center of each item, we don't need this method, other methods may use this information.

    now, your real question on Sin / Cos

    xn = Math.cos(Number(dx) * Math.PI / 180)+stepNum;

    Sin (angle) and cos (angle) expect angles in Radians, you not provide any angle in the formula above. We need calculate the angle between the selection and each path Center

            // get the angle formed between selection's center and current path's center
            var angle = get2pointAngle ([cx,cy], [px,py]);
    

    as soon as we have the angle we can apply to our variable 'Explosion', I guess is stepNum and get its x and is distance he needs to walk away selection

            // the distance to move is "stepNum" in the same direction as the angle found previously, get x and y vectors
            var dx = stepNum*Math.cos(angle);// distance x
            var dy = stepNum*Math.sin(angle);// distance y
    

    everything remains to be done is to move the paths, here is the whole thing

    // Explosion, AKA move all items away from selection
    // carlos canto
    // http://forums.adobe.com/thread/1382853?tstart=0
    
    var docID = app.activeDocument;
    var s0 = docID.selection[0];
    pID = docID.pathItems;
    
    var stepNum = 20; // this is the distance to "explode"
    
    // calculate Selection center position
    var cx = s0.position[0] + s0.width/2;
    var cy = s0.position[1] + s0.height/2;
    
    for (var i = 0; i < pID.length; i++) {
        var p = pID[i];
    
        // skip selected item
        if (!p.selected) {
            // calculate pathItem's center position
            var px = p.position[0] + p.width/2;
            var py = p.position[1] + p.height/2;
    
            // get the angle formed between selection's center and current path's center
            var angle = get2pointAngle ([cx,cy], [px,py]);
    
            // the distance to move is "stepNum" in the same direction as the angle found previously, get x and y vectors
            var dx = stepNum*Math.cos(angle);// distance x
            var dy = stepNum*Math.sin(angle);// distance y
    
            var moveMatrix = app.getTranslationMatrix(dx, dy);
            p.transform(moveMatrix);
            //stepNum+=stepNum;
        }
    }
    
    // return the angle from p1 to p2 in Radians. p1 is the origin, p2 rotates around p1
    function get2pointAngle(p1, p2) {
        var angl = Math.atan2(p2[1] - p1[1], p2[0] - p1[0]);
        if (angl<0) {   // atan2 returns angles from 0 to Pi, if angle is negative it means is over 180 deg or over Pi, add 360 deg or 2Pi, to get the absolute Positive angle from 0-360 deg
            angl = angl + 2*Math.PI;
        }
      return angl;
    }
    
  • HR HTML 9.02 and Source Control 3.1 will not save files in design mode, only the HTML view.

    We use RoboHelp 9.02 (just 9 and charged the next day so up-to-date, we 9,02) and Robo Source Control 3.1 and when we check a file and change the file, we can not save the file in Design view.  If we click on the HTML mode, we can save the file.  We have reproduced this on multiple files at the same time our computers accessing the server.  Now using RoboHelp HTML on a local project is functioning normally, only when we have access to the files on the server we select the HTML mode in order to save the topic.

    While this is an acceptable work around short term, we need this bug to get fixed unless someone knows of a checkbox somewhere that we must check in design mode to record and studied.

    I will be happy to provide you with any input and or test the additional fixes to help to fix this bug.  It is completely reproducible and constant on all tested subjects.  Source code control works insofar as this case the subject is verified by one the other cannot access the topic.  Once the topic is saved in HTML, then the subject can be archived and changes are visible by the other author.

    After the installation of Robo 9, Adobe Acrobat Professional 8 has been removed from the computer and MS Word 2000 did not work.  I've upgraded to Office/Word 2003 and I can now use Word 2003.  I have not attempted to reload Acrobat yet but that is next on my list.  Acrobat Professional was removed from these two computers during the installation.  Word 2000 exists only on the laptop.  I was in the queue to get updated later in the year, so they gave me a key and Word 03 seems to operate normally.  Did not check the Excel or PowerPoint 2000.

    Other news, you may be interested to know:

    • Both computers use Windows XP.
    • Both have office 2003.  -C' is because Word 2000 stopped working when Robo 9 has been installed.
    • Both have with max memory 32-bit operating systems.
    • Both have multiple monitors.
    • One is a laptop, the other is a desktop computer.
    • Both computers had 8.02 Robo? but RH8 was uninstalled before installing RH9.
    • 3.1 source code control has not been reinstalled on the server since version was the same that came with RH9
    • Source control has been reinstalled as a step of troubleshooting on the laptop without change.
    • RSO3 middle-tier service is running on all 3 computers and RSO3 server runs on the server pc.
    • Two users have administrator rights so all of the checkboxes are checked for access and control.

    Kind regards

    DV

    Having identified some problems in our global variable file in another project, I had a look at this project and found a few variables were empty, have a mystery character input or information applied to the variable fonts.  Rather than change back the variable only one digit or a character with no set form and text input in variables of the virgins, I deleted the unused variables of the project that just happened to 99% of the variables because we divided this part of the project in a booth along the project.  Remove the variables solved the problem where we had to switch from Design view to HTML view in order to save a topic.  I find this rather strange since none of the topics referenced stray variables.  Now we have only the variable of the version that refers to all subjects in the foot.  Everything seems to work fine now.  If you encounter this problem, have a good look at your file of global variables, line by line, to see if there is something other than text or numbers and delete everything except for the text.

    DV

  • Import from a Panasonic P2 camera

    Currently, when you import P2 files, to copy the video mxf files and audio card separately on HDD (shared cameras, so we cannot leave them in the edit Bay to draw from), although just import the video file in the body. The method that I managed to arrive is clumsy and pretty much work (if time wise, is a large economy more time real video spill). If we do not pull in the audio separately, then we have no audio in clips.

    Is there a faster way and best, I just have not yet figured out? I would really like to have only the traction of reporters into a single file for each clip, not three.

    Currently, when you import P2 files, to copy the video mxf files and audio card separately on HDD (shared cameras, so we cannot leave them in the edit Bay to draw from), although just import the video file in the body. The method that I managed to arrive is clumsy and pretty much work (if time wise, is a large economy more time real video spill). If we do not pull in the audio separately, then we have no audio in clips.

    Oh. Ouch. Ouch. Stop that

    Is there a faster way and best, I just have not yet figured out? I would really like to have only the traction of reporters into a single file for each clip, not three.

    Yes, a lot.

    I don't know how you have your hard drives organized, then apply your own variables here, but if I did that in a context of news, I'd do something like this:

    • Before you build a structure of folders on your hard drive in an organizational framework that makes sense to you. For example, to create a series of folders incremented by date, such as 20101109, 20101110, 20101111 or however else you like. Date would be good (depending on how long you keep your autour film), you always know where to find stuff that happened on a particular date.
    • If there are several cards turned in a given day, create additional folders inside, such as 001, 002, 003 and so on.
    • In each incremental file, copy EVERYTHING off of the P2 card. This means that the entire structure of folder content and everything under it. You want to keep this intact folder structure, and when it comes to copy, it's a heck of a lot easier to grasp something as a whole.
    • First, use the media browser (this file browser search thing down in the lower corner) to navigate your records date / incremental. When the first detects the P2 structure, it will automatically reverse the multimedia browser of P2, and you can see the photos (and clip names, if they were applied) appear in the list.
    • The journalist can double-click a clip to load it in the source monitor and preview it, and then there is movement in a bin or directly into a sequence (it is automatically added in the Panel project/bin). Loading in this clip reference brings all the components - which is another reason it is important to keep intact P2 folder structure.

    That's about all. At the file level, you can find a pattern of organization that makes sense for your operation. Let me know if that sense or if you need more details.

  • error of type PLSQL %

    DECLARE
    Ousmane VARCHAR2 (20) CONSTANT: = "ASIT DHAL ';
    Name1 ousmane % TYPE;
    BEGIN
    DBMS_OUTPUT. Put_line (name1);
    END;


    Why the above code indicates error?

    MU peleipua wrote:

    Why the above code indicates error?

    Because, as said error.

    % TYPE must be applied to a variable, column, field, or one attribute, not to 'OUSMANE.

    Because OUSMANE is a constant. If you remove the constant keyword, it compiles.

  • Must pass the overall throughput to form Tabualr region source

    Hi all

    I created a tabular presentation based on an SQL query. I have 2 global variables 1-DEPT-ID, PERM-DEPT-2:

    I try to do the following:

    If the DEPT-PERM = 1 then
    the SQL query in form tabular source region must retrieve all records in the table no matter what ever the DEPT ID is, but if the DEPT-PERM 2 then it should retrieve only the records that apply to the variable ID DEPT.


    Does any1 knows how can I do this in my source in the form of the region? He accepts the PL/SQL query?


    Thanks every1

    Kind regards

    ehammad

    Ehammad:

    What I suggested in my previous post will do exactly what you want.
    You must define "dept_id" and "dept_perm" as part of the request and the assumption is that they will have settled in some way before the user arriving at the page containing your tabular form.

    CITY

  • apply the equation of variable step size lms filter

    Hello world

    can someone apply equation of step size for lms size filter variable step using labview. snapshot of the equation is attached with question

    Yes I can - can you?

    Sorry to say, but nobody here is going to write your code for you. You have to have a go at it and then you can ask questions when / if you get stuck.

    The LabVIEW basics are a good place to start if you are really new to LabVIEW.

    -CC

Maybe you are looking for