Help with a simple break-code function

For a week I tried to understand a simple break-code function fror AS 3.0. I need something that makes a break as a code of a set amount of time. People have tried to help me on this forum, but I have not always been able to make the code work.

Here's what I have in this moment of pause-code (does not work):

var intID;
intID = setInterval (delay, 3000); This tells flash to wait 3 seconds
delay() {} function
clearInterval (intID);
_root.gotoAndPlay (1); or do something else...
}

The person who provided me with this code did not include the first line 'var intID', but as a new user of flash, I wasn't sure how else to declare intID. Could someone with some flash experience to guide me through the steps of creating a pause-code function or add to what I have already provided. When I use the code above in my flash document, the pause feature does not work. Essentially, he jumps on the setInterval and clearInterval functions only and cheek element root in delay(). I need code for AS 3.0 and I'm getting more and more desperate for an answer.

I hope it's understandable and I thank you for taking a peek
Sam

This isn't code as3.

Use the timer class to delay the execution of code in a function.

Tags: Adobe Animate

Similar Questions

  • help with a simple user interface for video flv with benchmarks AND buttons

    Hi all

    OK, I built a very simple FlashDrive using the componet video and I used in the flv file cue points, then I used simple buttons and findcuepoints code snipets for make my buttons go to a certain part of the movie.

    Everything works very well.

    Now what I do is when a certain amount of point play button stay an overstate and once made part of the video or another button is clicked on the first North of the State and the new part back button or the new button have the overstate.

    I think it will be an easy task, I'm not sure how to in this regard.

    Any help greatly appricaited.

    code below

    start_btn.addEventListener(MouseEvent.CLICK, fl_ClickToSeekToCuePoint);
    
    function fl_ClickToSeekToCuePoint(event:MouseEvent):void
    {
        var cuePointInstance:Object = vid.findCuePoint("ch1");
        vid.seek(cuePointInstance.time);
    }
    
    
    ch2_btn.addEventListener(MouseEvent.CLICK, fl_ClickToSeekToCuePoint_1);
    
    function fl_ClickToSeekToCuePoint_1(event:MouseEvent):void
    {
        var cuePointInstance:Object = vid.findCuePoint("ch2");
        vid.seek(cuePointInstance.time);
    
    }
    
    ch3_btn.addEventListener(MouseEvent.CLICK, fl_ClickToSeekToCuePoint_2);
    
    function fl_ClickToSeekToCuePoint_2(event:MouseEvent):void
    {
        var cuePointInstance:Object = vid.findCuePoint("ch3");
        vid.seek(cuePointInstance.time);
    }
    
    ch4_btn.addEventListener(MouseEvent.CLICK, fl_ClickToSeekToCuePoint_3);
    
    function fl_ClickToSeekToCuePoint_3(event:MouseEvent):void
    {
        var cuePointInstance:Object = vid.findCuePoint("ch4");
        vid.seek(cuePointInstance.time);
    }
    
    ch5_btn.addEventListener(MouseEvent.CLICK, fl_ClickToSeekToCuePoint_4);
    
    function fl_ClickToSeekToCuePoint_4(event:MouseEvent):void
    {
        var cuePointInstance:Object = vid.findCuePoint("ch5");
        vid.seek(cuePointInstance.time);
    }
    
    ch6_btn.addEventListener(MouseEvent.CLICK, fl_ClickToSeekToCuePoint_5);
    
    function fl_ClickToSeekToCuePoint_5(event:MouseEvent):void
    {
        var cuePointInstance:Object = vid.findCuePoint("ch6");
        vid.seek(cuePointInstance.time);
    }
    

    I try to help, but you will need to apply your neurons to make it work with what I have already explained (three times with what I propose below).  Try something like the following (I'm rename your buttons for ch1, ch2, ch3, ch4, ch5 and ch6 so that the same functions can be shared by all the buttons...)

    This affects the listeners to all 6 buttons

    for (var i: uint = 1; i<7;>

    This ["ch" + String (i)] .addEventListener (MouseEvent.CLICK, fl_ClickToSeekToCuePoint);

    }

    It deals with one of the 6 inclinometer when they are clicked

    function fl_ClickToSeekToCuePoint_1(event:MouseEvent):void

    {

    BTN var = event.currentTarget;

    var cuePointInstance:Object = vid.findCuePoint (btn.name);

    VID. Seek (cuePointInstance.Time);

    resetButtons();    What makes all the buttons back to normal

    btn.upState = btn.overState; What makes the States of change of the button clicked

    }

    function resetButtons (): void {}

    for (var i: uint = 1; i<7;>

    This ["ch" + String (i)] .upState = this ["ch" + String (i)] .hitTestState;

    }

    }

    To do this, your buttons need to have the same work as part of hit as they do under the top.

  • Need help with a loop of a function

    Hello experts,
    I'm in a bit of a mess of ideas,

    I have a form with different fields of research.

    based on the values that I'm passing, I'm back certain values in my form
    Here's my function
    CREATE OR REPLACE function LOTTO_EROUTES.f_forecast(p_ret_num        in varchar2, 
                                                        p_item_id        in number,
                                                        p_curr_date      in date,
                                                        p_expected_stock out number ,
                                                        p_actual_stock   out number,
                                                        p_inst_settled   out number,
                                                        p_prev_date      out date  ,
                                                        p_range          out number,
                                                        l_settled_avg    out number,
                                                        p_coefficient    out number                                                  
                                                        )
    return number is
    l_forecast_num number;
    l_curr_cdc  varchar2(6);
    l_prev_cdc varchar2(6);
    l_forecast_err varchar2(50) := 0;
    l_game_id number;
    begin
    
      select game_id,STOCK_COEFF_LEVEL_DAYS,IPS_SETTLED_RANGE_DAYS
      into l_game_id,p_coefficient,p_range
      from items
      where item_id =p_item_id;
    
    
    l_curr_cdc  := ltrim(rtrim(to_char(f_get_cdc_num(p_curr_date),999999)));
    
    l_prev_cdc := (l_curr_cdc - p_range);
    
    p_prev_date := f_get_cdc_date(l_prev_cdc);
    
    select count(serial_number) 
    into p_inst_settled
    from LOTTO_INSTANT_TRACK
    where game_id = l_game_id
    and retailer_num = p_ret_num
    and status = 'Settled'
    and cdc between l_prev_cdc and l_curr_cdc ;
    
    l_settled_avg := ceil(p_inst_settled / p_range);
    
    p_expected_stock := ceil(l_settled_avg * p_coefficient);
    
    select count(serial_number) 
    into p_actual_stock
    from LOTTO_INSTANT_track
    where game_id = l_game_id
    and retailer_num = p_ret_num
    and status like 'Confirmed';
    
    l_forecast_num := ceil((p_expected_stock - p_actual_stock));
    
    return l_forecast_num;
    
    exception
    when others then
    dbms_output.put_line(sqlerrm);
    return l_forecast_err;
    end;
    /
    Now I'm passing 1 single value for p_ret_num (retailer number) in my service, I appreciate to p_item_id and p-curr_date, which is by default sysdate.

    now, I should be able to convey all the dealer number and return these values accordingly.

    I think I have a LOV which will have the option 'ALL' through which the user will select and it should return all of its values.

    I know I should have a loop but don't know how to do this. Anyone can guide me please.

    Thank you

    Turning the LOV 0 value for * ALL * as you said in the previous thread here...
    Help in LOV

    The code calling the function will then look like this...

    declare
         CURSOR Fetch_Ret IS
              select retailer_num
              from lotto_retailers
              where agent_status_id = 2
              AND retailer_num = DECODE(:criteria.retailer_num,0,retailer_num,:criteria.retailer_num);
    
         default_date date := :oe_header.order_date;
    begin
         :oe_lines.order_date_disp := default_date;
    
         FOR Get_Ret IN Fetch_Ret LOOP
              :OE_LINES.FORECAST_CNT := f_forecast(  Get_Ret.retailer_num,
                                  :criteria.item_id,
                                  :OE_LINES.order_date_disp,
                                  :OE_LINES.expected_stock,
                                  :OE_LINES.current_retailer_stock,
                                  :OE_LINES.avg_calculated_amt,
                                  :OE_LINES.from_date,
                                  :OE_LINES.calc_stock_coefficient,
                                  :OE_LINES.avg_daily_sales,
                                  :OE_LINES.stock_coefficient_used
                                       );
    
              :OE_LINES.AVG_WEEKLY_SALES := (     :OE_LINES.avg_daily_sales * 7 );
         END LOOP;
    END;
    

    If the data block is tabular, then use GO_BLOCK outside the loop and the NEXT_RECORD integrated inside the loop.

    -Clément

  • Need help with a simple basketball game.

    Hi im new here and I need help with what makes this simple basketball game.

    Im trying to recreate this this video game. I'm not sure if it uses as2 or as3

    If someone could help me make a game like this or point me to a link on how to do it would be greatly appreciated.

    AS2 is used in the video.  If you have other issues, please post in the forum AS1/AS2.

  • Help with automated line breaks

    I import a file large tagged text created using XML and .xsl style sheets in CS4. The file is data directory of company that are transmitted as a paragraph in columns. We usually use Ventura to create this document and Ventura could process phone, fax, e-mail, and URL in one word and it breaks not between the lines. InDesign is to break these fields on new lines automatically as it strikes characters '-', ' @ 'and'. '.

    Is it possible in InDesign or my stylesheet .xsl to allow only line breaks on spaces and not others?

    For example, I get:

    ABC Company

    1234 main St, downtown, É.-u.

    01234, 555-555-5555, fax: 111.

    111-1111, info@abccompany.

    com, www.abccompany.com

    I want to:

    ABC Company

    1234 main St, downtown, USA

    01234, 555-555-5555, fax:

    111- 111-1111,

    info@abccompany. com,

    www.ABCCOMPANY.com

    I don't want to automatically add a line break before each element as the length would differ for each list and take too much space with forced line break.

    Thank you very much for your help!

    Ah. Try this GREP style, once again with No Break:

    [^ ]+

    This allows to keep whatever it is separated by spaces only together.

  • Need help with a simple calculation.

    I will apologize to the front. I have no knowledge of writing Javascripts. I can use them if someone writes to me, but that's all. I created a simple form with money dealing. I have boxes of different text for the user to enter a number based on what type of coin it is.Currency.jpg

    In the left column, they will enter a number. I would like for the right column counting from that. However, the quantity of money (ie. 100, 50, 20, etc.) is not a text field. It is simply the text entered in another program. I'm looking for is a way to do this without having to do the amounts in currency a text field. Something along the lines of X * 100 is.

    If you can give any help or suggestion, I'd be very happy.

    Thank you.

    You will have to hard code the quantity of money in the script.

    In the first line, create 2 text, Text1 and Text2 fields. Use what the calculation script personalized to Text2:

    If (this.getField ("Text1") ".value! == ' ') {}
    This.getField("Text1").value = Event.Value * 100;
    }

    Clears Text2 if nothing is in Text1
    else event.value = «»

    The second pair of text fields would be "50" instead of "100" in line 2, etc.

  • Need help with the Simple Question of coding (substring or charAt())

    Hello

    I have what I believe to be a simple matter of coding I was hoping that someone could help answer. I know how to do a decent amount of things but I'm pretty new to Livecycle and trying to change one of our PDF files so that if a certain field has a number starting with number 6 a certain button will become visible. I already have a set of code which is to control the visibility of this button, but I wanted to add this clause. Can someone help me to do this?

    Here are the existing code:

    If ((QuestionsPage2.COIQuestions.COIYN.rawValue == "1" & &))

    QuestionsPage2.EmailButtons.NSFCheck.rawValue == '1') & &

    (QuestionsPage2.ManagerSignature.ManagerDate.rawValue! = null & &)

    QuestionsPage2.ManagerSignature.ManagerCheckBox.rawValue! = null & &

    QuestionsPage2.ManagerSignature.ManagerSignature.rawValue! (= null))

    {

    QuestionsPage2.PasswordSection.RiskPassword.presence = "visible";

    QuestionsPage2.PasswordSection.PurchUseOnly.presence = "visible";

    QuestionsPage2.PasswordSection.HRPassword.presence = "visible";

    QuestionsPage2.EmailButtons.EmailContractsAndRisk.presence = "visible";

    }

    I would like to add at the top to look at the specific area of the first character to see if it is a 6 or not. Here's what I tried to do, but it did not work.

    If ((QuestionsPage2.COIQuestions.COIYN.rawValue == "1" & &))

    QuestionsPage2.EmailButtons.NSFCheck.rawValue == '1' & &

    ContractInfo.AgreementDetails.Org.substring (0.1)! = '6' )

    The type of field, that I'm looking is a field "Digital field" 4 characters.

    Can someone help me fix my code to make it work?

    Thank you!!

    you don't need to make such a work autour, everything you did not notice, this is NumericField isn't a string is always a numeric (number)

    If you can use substring on a whole or decimal number... unless it's a chain... then use the toString() after the .rawValue like this

    ContractInfo.AgreementDetails.Org. rawValue.toString (). Substring (0.1)! = « 6 »

    It should work.

  • Please help with some simple AS2

    Hello

    I have a puzzle that I adapted in AS2. It is perfect for my needs, with one exception. It has a 'Start' button that erases the image of the puzzle, so you can start to assemble. I don't need the 'Start' button and am currently placing the script from the 'Start' button in the timeline, so that the picture of the completed puzzle is automatically cleared, ready to start assembling the four parts. The code original source from headache and Tunis is located here:

    http://www.ActionScript.org/resources/articles/13/1/jigsaw-puzzle/Page1.html

    This is the script that is currently on the button:

    We (Release)

    {

    for (i = 1; i < = n; i ++)

    {

    ["p" + i] this.joined_mc ._visible = false;

    }

    }

    and the button is inside a clip on the main stage.

    Please can someone help me on this point - would be really grateful!

    Thank you

    Ed.

    If it's a simple button (not a movieclip button) and attach the button containing the chronology:

    for (i = 1; i<>

    {

    ["P" + i] this.joined_mc ._visible = false;

    }

  • Help with «throw exception error native function»

    Can someone help me find a soultion error with dreamweaver mx2004. I use the software successfully for several years and everything has started to develop a new site with .htm files.

    When connecting to a css file, I get the following error when I swith from design mode, the system displays the error code, then crashes, but only on a single page, another page using the same css file works fine! I'm totally baffled...

    The error is:

    When executing command DW_DesignView in toolbars.xml, the following JavaScript error occurred: exception throw in native function


    I hope that its not me, but it just may be, please help.

    If this is the case with a single file, there is something wrong with this file. Or to be more precise, there is something in this file that gives indigestion to Dreamweaver. You must check the file with the validator W3C CSS (http://jigsaw.w3.org/css-validator/).

    There is a known issue with Dreamweaver CS3, for which a file that is exactly 8 KB or multiples of it causes Dreamweaver to crash. I've never heard of him with Dreamweaver MX 2004, but if the file is valid, try to open it in a text editor and add something, as a CSS comment. This increases the size of the file and get rid of the problem.

    If these ideas do not resolve the problem, I'm afraid, I'm out of ideas. Adobe will not help you because your version of Dreamweaver is no longer supported.

  • Help with error in the Code generated by the WSDL Wizard

    I have generated the code the wizard of webservice and then wrote a simple mxml file to test the code. I get this error:

    1061: call to a getClass method maybe not defined through a reference with static type class.

    It occurs in the following code:

    /**
    * Internal event handler for handling a call to success from the server
    * The result is decoded using schema settings and operation, then the
    * events transmitted the real front that the user works in the application
    * @private
    */

    private void processResult(result:Object,wrappedData:Object):void
    {
    var token: AsyncToken = wrappedData.returnToken;
    var currentOperation:WSDLOperation = wrappedData.operation;
    var decoder: SOAPDecoder = new SOAPDecoder();


    decoder.resultFormat = "object";
    decoder.ignoreWhitespace = true;
    decoder.makeObjectsBindable = true;
    decoder.wsdlOperation = currentOperation;
    decoder.schemaManager = currentOperation.schemaManager;


    var object: body = result.message.body;
    var stringResult:String = String (body);

    If (stringResult == null | stringResult == "")
    return;


    var soapResult:SOAPResult = decoder.decodeResponse (result.message.body);
    If (soapResult.isFault)
    {
    defects of the var: Array = soapResult.result in the table;

    for each (var soapFault:Fault in error)
    {
    var soapFaultEvent:FaultEvent = FaultEvent.createEvent (soapFault, token, null);
    token.dispatchEvent (soapFaultEvent);
    }
    } else {}
    result = property decoder.decodeResponse (result.message.body);


    If (result is ArrayCollection collection)
    {
    do you need to perform an upcast to specific type here
    var arrayTypedClass: Class = SchemaTypeRegistry.getClass(currentOperation.outputMessage.parts[0].type);

    result = new arrayTypedClass (result.source);
    }


    event: ResultEvent var = ResultEvent.createEvent (result, token, null);
    token.dispatchEvent (event);
    }
    }

    The statement where the error occurs is in bold above. The comment above this line says I should perform an upcast to a specific type here, but I don't know what that means. What specific type? How to determine what type of perform an upcast to?

    Any help would be appreciated.

    TIA,
    Randy

    Hi Martin,

    The error you have shown, it seems, that you have upgraded your SDK version, but not the Builder. The problem you are having is because of one of the classes (SchemaTypeRegistry) SDK has been updated static to a dynamic class. Therefore, using the call getClass() on it will not longer work. In addition, the lines that register type mappings do not work.
    We have updated the generated code, but it seems that you are using an older version. Now for the correction of your code, you should:
    1. locate all occurrences where the class of SchemaTypeRegistry is called a static class.
    2. replace the SchemaTypeRegistry by calls to SchemaTypeRegistry.getInstance () method, like this:
    SchemaTypeRegistry.registerClass (params) becomes SchemaTypeRegistry.getInstance () .registerClass (params)

    The problem is that when you re - generate the code, you will have to re - again all these changes.

    Hope this helps,
    Cristian

  • Help with a simple StreamConnection to retrieve HTTP content

    Hi all

    I'm new to the BlackBerry development and tries to retrieve the content of a Web site and exit in a RichTextField, based on the example provided in the BB Developer's Guide. The code snippet I tested is below, but when I click on the app in the Simulator, nothing happens (it stays on the screen for downloads). Subscribe to the code of connection allows me to display the application user interface.

    class MyProgramClass extends MainScreen {
    
        public MyProgramClass() {
            super();
            String progTitle = "My Program\n\n";
            setTitle(new LabelField(progTitle, LabelField.ELLIPSIS | LabelField.USE_ALL_WIDTH));
    
            RichTextField myField = new RichTextField();
            add(myField);
    
            try {
                StreamConnection streamConn = null;
                String myURL = "http://www.google.com/";
                streamConn = (StreamConnection) Connector.open(myURL);
    
                InputStream contentIn = streamConn.openInputStream();
                byte[] data = new byte[256];
                int length = 0;
    
                StringBuffer raw = new StringBuffer();
                while ( -1 != (length = contentIn.read(data)) ) {
                    raw.append(new String(data, 0, length));
                }
    
                myField.setText(raw.toString());
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    

    I thought that it might be necessary to simulate next to the MDS emulator, but I managed to get the response of a given URL code so I guess that the connection is not not a question.

    I understand that it would be preferable to apply it in a separate thread, but I don't think that this would be necessary, as a simple test? My environment is the most recent (since last week) SDK and BlackBerry plugin for eclipse and the 5.0 Bold 9700 simulator (apps: 5.0.0.535).

    Any help would be greatly appreciated

    Thank you

    Will be

    You must specify whatr type of connection you will use: change your code for:

    public class MyProgramClass extends MainScreen {
    
        public MyProgramClass() {
            super();
            String progTitle = "My Program\n\n";
    
            setTitle(new LabelField(progTitle, LabelField.ELLIPSIS
                    | LabelField.USE_ALL_WIDTH));
    
            final RichTextField myField = new RichTextField("Waiting for google.com...");
            add(myField);
    
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                public void run() {
                    try {
                        StreamConnection streamConn = null;
                        String myURL = "http://www.google.com;deviceside=true";
                        streamConn = (StreamConnection) Connector.open(myURL);
    
                        InputStream contentIn = streamConn.openInputStream();
                        byte[] data = new byte[256];
                        int length = 0;
    
                        StringBuffer raw = new StringBuffer();
                        while (-1 != (length = contentIn.read(data))) {
                            raw.append(new String(data, 0, length));
                        }
    
                        myField.setText(raw.toString());
                    } catch (IOException e) {
                        e.printStackTrace();
                        myField.setText(e.toString());
                    }
    
                }
            });
    
        }
    }
    

    And check out the http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is...

  • Need help with a PL/SQL code

    Hello

    I am trying to execute the following PL/SQL code, which translates errors, obviously I'm not doing things, but it gives you an idea what I'm trying to do:

    DECLARE

    INT var_count;

    SELECT COUNT (*) IN var_count

    FROM sys.all_tables WHERE OWNER = 'SAKILA' AND table_name = "ACTOR";

    If var_count > 0 then

    BEGIN

    DROP TABLE "ACTOR";

    END;

    /

    Erros:

    SELECT COUNT (*) IN var_count

    *

    ERROR at line 3:

    ORA-06550: line 3, column 1:

    PLS-00103: encountered the symbol "SELECT" at the expected in the following way:

    Start function < an ID > pragma procedure subtype type

    < between double quote delimited identifiers > delete the current cursor

    There is before

    The symbol 'start' has been substituted for "SELECT" to continue.

    ORA-06550: line 7, column 1:

    PLS-00103: encountered the symbol "DROP" when expecting one of the following conditions:

    (begin case declare exit for goto if loop mod null pragma

    raise return select update while < ID >

    < between double quote delimited identifiers of > < a variable binding > < <

    continue the narrow current delete fetch locking insert open rollback

    savepoint sql set run commit forall fusion pipe purge

    Your help to create it in a right way will be appreciated.

    Thank you very much.

    Tonya.

    Try the following:

    My = $ora $csr-> prepare (q {}

    DECLARE

    INT var_count;

    BEGIN

    SELECT COUNT (*) IN var_count

    FROM sys.all_tables WHERE OWNER = 'SAKILA' AND table_name =: ts;

    If var_count > 0 then

    RUN IMMEDIATELY 'DROP TABLE' |: ts | "CASCADE CONSTRAINTS;

    end if;

    END;

    });

  • Help with incredible registration / Product Code procedure

    I bought 13 items first packaged and by trying to find/use the process series/product code number.

    I've been to the https://redeem.licenses.adobe.com/getserial site where you are supposed to enter a redemption code that 'Help' are 24 alphanumeric characters and located on the box or sleeve.

    There are six boxes in the entrance which can only mean that 4 characters should be in each box.

    There is no code redemption on the box and the sleeve has a number that does not match the format or the number of characters specified above.

    There is a single item of on handle and box 8-digit numbers that can not be.

    Under the sleeves Figure 8 number is a code that do not meet the 24 characters or groups of 4 required model.

    The code looks exactly like this, except that I substituted XXX instead of two sets of letters below (because if it is a product code, I won't post).

    DHS/A, PRE, 13.0, MAC, GEN, XXX, LRE

    / WWF/D/XXX

    Now there is no point for me and I don't see how there is nothing I can get above that meet the entry requirements for the product to https://redeem.licenses.adobe.com/getserial code entry

    It must be the most hostile registration procedure that I've met in all my 25 years of experience with computers and software.

    firedeva

    If you bought the box of first 13 items, you can expect something like that

    1. a box rectangular thin hard cover (colorful Adobe) in which is inserted a white rectangular box.

    2 in this rectangular box white installation discs, one for Windows and one for Mac - each drive is in its own envelope.  There is probably a manual mini in this area also.

    3. make sure the white rectangular box. On the back of this box must be a label. This label must contain the serial number of the product for the two installation disks.

    xxxx - xxxx-xxxx-xxxx-xxxx-xxxx

    The serial number is clearly identified as serial number.

    You know very well if the seller has sold you the product with a redemption code?

    RTA

  • Please help with installing simple label

    Hi guys,.
    I know that it will be simple for most of you. Used good ol PageMaker ' years. Has started with the ID of a couple of years, but have not made a lot with it. Now have CS6 and I wanted to address labels [Avery 5160 - 30 labels/page]. I remember this question once before w/CS3 and people said I had need of a later version that would allow me to 'merge' repeated on the page of the label without having to duplicate the text and graphics 30 times.
    Could someone give me the specific steps to follow to do this? It's all there in the original label of text and graphics. How I can repeat this 29 times without going through the bureaucracy to fool the text & chart [I did ].
    What I did was, group the text and graphic, it fool 2 times in a row, then fool the line again and again until the page was filled with 30 labels.
    Yes, I know I am a fool, and in "pain repetition" but having been a member of Adobe forums since the 90's I LOVE FORUMS! We all have helped so much. And that's where I get my answers.
    Thanks in advance,
    Ellen

    Printing labels on a personal printer can be a little tricky because the paper is sucked in most home printers, there is a bit of drift. What I mean is that if you print multiple copies of something in a paper stock that had graphic top brands, you will see that you cannot ensure that each sheet is printed in exactly the same position. For this reason, you'd better not try to print too close on the edges of each label. What I recommend is that you set up 30 text blocks and them all together in the string or use the fusion of data to set up your labels, you apply a line of half a percentage point for executives, print a map and see how close frames line up with the edges of your labels. You need to maybe move the Group of labels to the top, bottom, left, or right to bring it in the stadium, but once you set for your printer, you can take off the lines and define a quantity of text box so that if they drift a little, none will be cut off.

    Also, when you ask about it, you can select a single object or group and go to Edit > step and repeat and check the boxes create as a grid and Preview to 30 labels off alone and see how they will lay in the page. Just put your horizontal and vertical offset to the size of your label.

    Is that help, or do you need instructions on how to do a data merge?

  • Help with 2 simple scripts

    I am looking for 2 very simple scripts, we're for a specific cluster 1, I want to list all the VMS that have 4 GB of memory or more.

    Then a 2nd script for a specific cluster1, want to list VM which do not have the VM tools installed or are out of date and select the name, the tool vmware status and memory.

    Can someone help please

    Here is a line that I tried on a single host... and must work if you connect on a VC as well... people it will list all virtual machines with more than 4 GB of memory:

    Get - VM | Where-Object {$_.} MemoryMB - gt 4096}

    If you want just the name and memory, then:

    Get - VM | Where-Object {$_.} MemoryMB - gt 4096} | Select Name, MemoryMB

    For the other for the VMtools...

    Get-VM | Get-View | Select-Object @{N="Name";E={$_.Name}},@{Name="ToolsStatus";E={$_.Guest.ToolsStatus}}
    

    Concerning

Maybe you are looking for