Simple actionscript please help...

Heya ... hope someone can help me thanks :D,
I have a movie clip mc, inside it is another movie clip mc2,
inside that there is a dynamic text field = btnTitle (instance
name)
I am trying to load the variables into the text field but it
doesnt work....
this code is on the first frame _root.
I cannot change the structure of the the movie clips...
anybody ideas ... thanks

Hahaaaaa.... Just solved it :D

Similar Messages

  • html:select and html:options simple question  - please help

    Hi Friends,
    I am having a problem, please help me .I want to run a query and display all the lastnames of all the users in my database.Here are my files:
    UserForm.java
    public class UserForm extends ActionForm{
         private name firstName;
         private name lastName;
         //all getter and setters
    viewuser.jsp
    <html:select property="lastName">
        <html:options collection="users" property="lastName" labelProperty="lastName" />
    </html:select>
    and my Java Utility class method
    public ArrayList getusers() throws Exception {
             ArrayList aList = new ArrayList();     
              Connection con = ConnectionUtil.getConnection();
              PreparedStatement stmt = null;
              try {
                   stmt = con.prepareStatement("select last_name from USERS);     
                   ResultSet rs = stmt.executeQuery();
                      if (rs.next()) {
                          aList.add(rs.getString(1));
                      }else {
                           return null;
                      rs.close();
                      return aList;
              } catch (SQLException e) {
                   e.printStackTrace();
                   throw new ServiceProcessingException(e.getMessage());
              } finally {
                   ConnectionUtil.closeStatement(stmt);
                   ConnectionUtil.closeConnection(con);
         }My problem is what i need to do in my Action class,so that it sets the "users" variable
    properly and i would be able to read that variable in my jsp and display the lastname
    of all the users.I am tryin this but failing badly:
    public class UserAction extends Action{
      ArrayList userssList = Utility_class_obj.getUsers();
      request.getSession().getServletContext().setAttribute("users", usersList);Please Please help,I would really appreciate your help.
    Thanks

    Thanks a lot friend...this time i made it work my style,next time i will use tha mehod.But I think I am not doing it the right way,please correct me:
    This is the method in my utility class where i run the query and I doubt I am not doing it right here:
    PreparedStatement stmt = null;
    ViewForm vForm = null;
    try {
    stmt = con.prepareStatement("SELECT LAST_NAME FROM   USERS_ADD");     \
    ResultSet rs = stmt.executeQuery();          
    while(rs.next()) {
           vForm = new ViewForm(rs.getString(1));          
          aList.add(vForm);          
       rs.close();
       return aList;          }
    }And I made this constructor in my viewForm class:
    public ViewForm(String lastName){          this.setLastName(lastName);     }I do this in my Action class then:
    ArrayList pList = csDAO.getUsers();  
         if(pList  != null){         
         request.getSession().getServletContext().setAttribute("plist", pList);      
    }And finally this in my jsp:
        <html:select property="lastName"> 
        <html: options collection="plist" property="lastName" labelProperty="lastName" /> And it works,but i don't think I can keep adding constructors to my form class like that,and moreoever if I want to search by first name ,there would be a conflict between 2 constructors,so can someone please tell me the right way to do this.
    Thanks
    Mick

  • Help this newbie with a 1067 error code on a SIMPLE ActionScript please

    Hi, I am new to this. I am creating a presention in flash and I want to link to the narration mp3 files as oppsed to embedding them as they will change in the future..
    I have two different books with 2 different  pieces of script to use though the overall process is the pretty much same. For both I get the exact same error.
    See below:
    1120: Access of undefined property nar1.

    Thanks Ned.
    It's the posting. I had a nice little post written up for my initial request but when I posted-it truncated and I had to retype everything (it's the kind of morning I am having ) I will fix my typing.
    I suppose I could add the mp3 files to the library and update that way but I was hoping to set the files up so that files could be overwritten as the slides were changed or swapped out without the extra steps.

  • Help with Forte: very simple question, please help!

    I recently downloaded the community version of Forte (Sun One) but can't seem to get any new empty class programs to execute properly. I know something is probably not set up right, which is why I really need a little help to get started. Regardless of the code I try to execute, the output error is always:
    "java.lang.NoClassDefFoundError: (name of program)
    Exception in thread "main" "
    Please let me know what I'm not doing right. I would really appreciate anybody's thoughts on this problem because I would love to get Forte working so I can start learning Java. Thanks for your input!

    I would tell you that Forte is not a tool for the beginner. you should look at something simpler. Forte is a fully integrated development environment. I would look at a simple editor like emacs, available at gnu.org. The commands of this editor are quite difficult to get use to.
    As for setting the class varialbe. It depends on the O/s that you are using. win98/me is different than NT/xp. Need to know one or the other before explaining.
    email me if you have question. email address is in my profile.

  • I need help with a simple task (PLEASE HELP)

    hi, you know how you can make a button and link it to a
    different site with the actionscript in this program? well I need
    to know of a way like...to make a button and...link it to the next
    frame. ok, heres what im trying to make happen...the user presses a
    button in the flash program thing and a comment apperars. then they
    press it another time and a new one come up...and so on...I could
    make like 50 different frames with new comments on them and then
    make the button on each frame link to the next frame. is there a
    way to do that? if there is I REALLY need your help. please
    thanks :)

    no need to modify anything - look at the first code:
    on (release) {
    nextFrame();
    that's all you need on the button.
    If you want it to happen on click and not release:
    on (press) {
    nextFrame();
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    mybluehair wrote:
    > thank you so much. this will really help me. and, is
    there any way I can modify
    > that script so that its when the mouse is click, and not
    the arrow keys?
    >
    >
    >
    >
    quote:
    Originally posted by:
    Newsgroup User
    > on (release) {
    > nextFrame();
    > }
    >
    > from the help docs (F1):
    >
    > nextFrame function
    > nextFrame() : Void
    >
    > Sends the playhead to the next frame.
    >
    > Availability: ActionScript 1.0; Flash Player 2
    >
    > Example
    > In the following example, when the user presses the
    Right or Down arrow key,
    > the playhead goes to
    > the next frame and stops. If the user presses the Left
    or Up arrow key, the
    > playhead goes to the
    > previous frame and stops. The listener is initialized to
    wait for the arrow
    > key to be pressed, and
    > the init variable is used to prevent the listener from
    being redefined if the
    > playhead returns to
    > Frame 1.
    >
    > stop();
    >
    > if (init == undefined) {
    > someListener = new Object();
    > someListener.onKeyDown = function() {
    > if (Key.isDown(Key.LEFT) || Key.isDown(Key.UP)) {
    > _level0.prevFrame();
    > } else if (Key.isDown(Key.RIGHT) ||
    Key.isDown(Key.DOWN)) {
    > _level0.nextFrame();
    > }
    > };
    > Key.addListener(someListener);
    > init = 1;
    > }
    >
    >
    >
    > ******************************************
    > --> **Adobe Certified Expert**
    > --> www.mudbubble.com
    > --> www.keyframer.com
    >
    >
    >
    >
    > mybluehair wrote:
    > > hi, you know how you can make a button and link it
    to a different site with
    > the
    > > actionscript in this program? well I need to know
    of a way like...to make a
    > > button and...link it to the next frame. ok, heres
    what im trying to make
    > > happen...the user presses a button in the flash
    program thing and a comment
    > > apperars. then they press it another time and a new
    one come up...and so
    > on...I
    > > could make like 50 different frames with new
    comments on them and then make
    > the
    > > button on each frame link to the next frame. is
    there a way to do that? if
    > > there is I REALLY need your help. please
    > >
    > > thanks :)
    > >
    >
    >
    >
    >

  • A very simple question, please help.

    How would I output/print out a string in color rather then the standard black?
    If anyone can help me or point me in the right direction would be greatly appreciated.
    For example for extra clarification, if I want to print out a string "Hello World", how can I print it out in different colors such as in blue or red.
    Output to a JApplet ( TextArea)
    Thanks!
    Edited by: ff4930 on Nov 30, 2007 9:18 AM

    You can change the colour of all the text in a JTextArea by setting its foreground property:
    yourComponent.setForeground.setColor(Color.RED);If you just want have multiple colors in one JTextArea, that's not possible. You will have to use a more advanced component, like JEditorPane or JTextPane:
    http://java.sun.com/docs/books/tutorial/uiswing/components/editorpane.html
    In basic cases, if the text doesn't have to be editable by the user, you can use a JLabel and pass it simple html:
    String text = "<html><font color='red'>red text</font> " +
    "<font color='green'>green text</font> " +
    "<font color='blue'>blue text</font></html>";
    yourLabel.setText(text);

  • Help with disabled ipad mini not simple solution please help

    My 10 year old has disabled his ipad mini - the pc it was synced to is broken so have downloaded itunes to a different pc - plugged in the ipad and get to the point where the box says "to allow access, please repond on your ipad" - this does nothing as the ipad is disabled and cannot access to allow access - i am literally going insane with this if anyone can help it would be really appreciated  

    Hello Whitewargers,
    We've an article that provides the options available and the relevant steps for restoring access to your iPad.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/HT1212
    Cheers,
    Allen

  • Simple problem- please help!

    I wanted some advice on slide show/ paging. I created a html table with list of student in a particular class for example, each student id has hyperlink which goes to another jsp with a table which shows a student profile, there I have method that takes a student ref and reterives all student details.
    What I wanted was say if the user wanted see the next student, instead of hitting the back button and clicking on another student ref (which is what I have now) is to have a <b>pervious < and Next ></b> button so the user can iterate through the complete list, like a silde show, any idea how I can do that?
    I have the list of student in a ArrayList, I put it in a session variable, so I can access in next jsp page, how would I interate through the arraylist using the next and pervious buttons, can give you give a little sample code.
    Many thanks

    You already asked this before, why did you start a new thread on it ? Just to ignore the people that already tried to help you maybe ?

  • Simple question, please help

    I just need to know right now can SSL be used for secure FTP to send commands and data over separate channels, and if so, how? I want to replace a simple FTP socket connection with a secure one, nothing fancy. I don't want to use HTTP unless I absolutely have to. Any advice would be appreciated.

    Has anyone evaluated all the different options available and found the better alternatives? I have found SSH Communications Security's SSH Secure Shell, RSA Security's BSafe SSL-J, ValiCert's SecureTransport (a.k.a. FileDrive) and others. I haven't compared them in detail yet and was hoping to get some advice from others out there who are doing the same sort of thing.

  • I am a new in jbuilder 4, a simple question, please help me.

    I want to combine the scroll bar with textarea. I mean that If the content in textarea is very large, I can scroll bar to see it.
    I write the code like this:
    JTextArea jTextArea1 = new JTextArea();
    JScrollBar jScrollBar1 = new JScrollBar(jTextArea1); But the error message is :"Frame1.java": Error #: 300 : constructor JScrollBar(javax.swing.JTextArea) not found in class javax.swing.JScrollBar at line 21, column 32
    The following is the full code:
    public class Frame1 extends JFrame {
      JPanel contentPane;
      BorderLayout borderLayout1 = new BorderLayout();
      JTabbedPane jTabbedPane1 = new JTabbedPane();
      JPanel jPanel1 = new JPanel();
      JPanel jPanel2 = new JPanel();
      JPanel jPanel3 = new JPanel();
      BorderLayout borderLayout2 = new BorderLayout();
      JTextArea jTextArea1 = new JTextArea();
      JScrollBar jScrollBar1 = new JScrollBar();
      JPanel jPanel4 = new JPanel();
      JButton jButton1 = new JButton();
      BorderLayout borderLayout3 = new BorderLayout();
      JTextArea jTextArea2 = new JTextArea();
      JScrollBar jScrollBar2 = new JScrollBar();
      JPanel jPanel5 = new JPanel();
      JButton jButton2 = new JButton();
      /**Construct the frame*/
      public Frame1() {
        enableEvents(AWTEvent.WINDOW_EVENT_MASK);
        try {
          jbInit();
        catch(Exception e) {
          e.printStackTrace();
      /**Component initialization*/
      private void jbInit() throws Exception  {
        //setIconImage(Toolkit.getDefaultToolkit().createImage(Frame1.class.getResource("[Your Icon]")));
        contentPane = (JPanel) this.getContentPane();
        contentPane.setLayout(borderLayout1);
        this.setSize(new Dimension(513, 399));
        this.setTitle("File Integrity Check Tool");
        jPanel1.setLayout(borderLayout2);
        jButton1.setToolTipText("");
        jButton1.setText("Register Files");
        jButton1.addActionListener(new java.awt.event.ActionListener() {
          public void actionPerformed(ActionEvent e) {
            jButton1_actionPerformed(e);
        jPanel2.setLayout(borderLayout3);
        jButton2.setText("Check Files");
        jButton2.addActionListener(new java.awt.event.ActionListener() {
          public void actionPerformed(ActionEvent e) {
            jButton2_actionPerformed(e);
        jTextArea1.setEditable(false);
        jTextArea1.setMaximumSize(new Dimension(513, 399));
        jTextArea2.setEditable(false);
        contentPane.add(jTabbedPane1, BorderLayout.CENTER);
        jTabbedPane1.add(jPanel1, "Register Checkfile");
        jPanel1.add(jTextArea1, BorderLayout.CENTER);
        jPanel1.add(jScrollBar1, BorderLayout.EAST);
        jPanel1.add(jPanel4, BorderLayout.SOUTH);
        jPanel4.add(jButton1, null);
        jTabbedPane1.add(jPanel2, "Check Files");
        jPanel2.add(jTextArea2, BorderLayout.CENTER);
        jPanel2.add(jScrollBar2, BorderLayout.EAST);
        jPanel2.add(jPanel5, BorderLayout.SOUTH);
        jPanel5.add(jButton2, null);
        jTabbedPane1.add(jPanel3, "Help");
      /**Overridden so we can exit when window is closed*/
      protected void processWindowEvent(WindowEvent e) {
        super.processWindowEvent(e);
        if (e.getID() == WindowEvent.WINDOW_CLOSING) {
          System.exit(0);
      }

    yes, I done like this:
    package untitled1;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Frame1 extends JFrame {
      JPanel contentPane;
      BorderLayout borderLayout1 = new BorderLayout();
      JTabbedPane jTabbedPane1 = new JTabbedPane();
      JPanel jPanel1 = new JPanel();
      BorderLayout borderLayout2 = new BorderLayout();
      JTextArea jTextArea1 = new JTextArea();
      JScrollPane jScrollPane1 = new JScrollPane( jTextArea1);
      JPanel jPanel2 = new JPanel();
      JButton jButton1 = new JButton();
      /**Construct the frame*/
      public Frame1() {
        enableEvents(AWTEvent.WINDOW_EVENT_MASK);
        try {
          jbInit();
        catch(Exception e) {
          e.printStackTrace();
      /**Component initialization*/
      private void jbInit() throws Exception  {
        //setIconImage(Toolkit.getDefaultToolkit().createImage(Frame1.class.getResource("[Your Icon]")));
        contentPane = (JPanel) this.getContentPane();
        contentPane.setLayout(borderLayout1);
        this.setSize(new Dimension(400, 300));
        this.setTitle("Frame Title");
        jPanel1.setLayout(borderLayout2);
        jTextArea1.setText("jTextArea1");
        jButton1.setText("jButton1");
        contentPane.add(jTabbedPane1, BorderLayout.CENTER);
        jTabbedPane1.add(jPanel1, "jPanel1");
        jPanel1.add(jTextArea1, BorderLayout.CENTER);
        jPanel1.add(jPanel2, BorderLayout.SOUTH);
        jPanel2.add(jButton1, null);
        jPanel1.add(jScrollPane1, BorderLayout.EAST);
      /**Overridden so we can exit when window is closed*/
      protected void processWindowEvent(WindowEvent e) {
        super.processWindowEvent(e);
        if (e.getID() == WindowEvent.WINDOW_CLOSING) {
          System.exit(0);
    }But it is still not show the scroll bar on the right of textarea.
    what is the problem.

  • A simple question please help.

    Hi
    I have 2 textfields and a button. I want to input a number( diameter) in the first textfield  ( inputField) and by clicking on the button (myButton), I want to get the result (circonference) in the second textfield ( inputField1). diameter*3.14. I know it is a simple question, but it comes from a very simple mind. So have mercy on me.
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;
    import flash.text.TextFormatAlign;
    import flash.events.MouseEvent;
    var inputField:TextField = new TextField();
    var myFormat:TextFormat = new TextFormat();
    myFormat.size = 44;
    inputField.defaultTextFormat = myFormat;
    inputField.restrict = "0-9";
    inputField.maxChars = 6;
    inputField.multiline = false;
    inputField.textColor = 0x000000;
    inputField.border = true;
    inputField.width = 150;
    inputField.height = 50;
    inputField.x = 75;
    inputField.y = 50;
    inputField.borderColor = 0xFF0000;
    inputField.type = "input";
    addChild(inputField);
    var inputField1:TextField = new TextField();
    var myFormat1:TextFormat = new TextFormat();
    myFormat1.size = 44;
    inputField1.defaultTextFormat = myFormat;
    inputField1.maxChars = 1;
    inputField1.multiline = false;
    inputField1.textColor = 0x000000;
    inputField1.border = true;
    inputField1.width = 150;
    inputField1.height = 50;
    inputField1.x = 275;
    inputField1.y = 50;
    inputField1.borderColor = 0xFF0000;
    addChild(inputField1);
    myButton.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_2);
    function fl_MouseClickHandler_2(event:MouseEvent):void
       trace("Mouse clicked");

    use:
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;
    import flash.text.TextFormatAlign;
    import flash.events.MouseEvent;
    var inputField:TextField = new TextField();
    var myFormat:TextFormat = new TextFormat();
    myFormat.size = 44;
    inputField.defaultTextFormat = myFormat;
    inputField.restrict = "0-9";
    inputField.maxChars = 6;
    inputField.multiline = false;
    inputField.textColor = 0x000000;
    inputField.border = true;
    inputField.width = 150;
    inputField.height = 50;
    inputField.x = 75;
    inputField.y = 50;
    inputField.borderColor = 0xFF0000;
    inputField.type = "input";
    addChild(inputField);
    var inputField1:TextField = new TextField();
    var myFormat1:TextFormat = new TextFormat();
    myFormat1.size = 44;
    inputField1.defaultTextFormat = myFormat;
    inputField1.maxChars = 1;
    inputField1.multiline = false;
    inputField1.textColor = 0x000000;
    inputField1.border = true;
    inputField1.width = 150;
    inputField1.height = 50;
    inputField1.x = 275;
    inputField1.y = 50;
    inputField1.borderColor = 0xFF0000;
    addChild(inputField1);
    myButton.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_2);
    function fl_MouseClickHandler_2(event:MouseEvent):void
    inputField1.text=String(Math.PI*Number(inputField.text));

  • New at actionscript please help

    Can someone please explain this code to me in detail.
    this is the part I really don't understand. I know that this
    code work I just don't know how. Thanks
    function snow(a, n) {
    for (var i = 0; i < n; i++) {
    var star:MovieClip = this.createEmptyMovieClip("star" + i,
    i);
    star._x = Math.random( ) * 550;
    star._rotation = (Math.random( ) * 2 * a) - a

    Here's a detailed description line by line using comment
    lines (//):

  • Please help to find the correct answers

    Hi,
    Please send an url to study about the below questions with short and easily understandable explanation with simple example.Please help to improve my knowledge for the below concepts.
    1.     String
    2.     String Buffer
    3.     String Builder
    4.     finally
    5.     final
    6.     finalize
    7.     static
    8.     Abstract Class
    9.     Interface
    10.     Inheritance
    11.     Overloading
    12.     Overriding
    13.     Wrapper class
    14.     Collection
    15.     Array
    16.     Array List
    17.     Linked List
    18.     Vector
    19.     Hash Table
    20.     Hash Map
    21.     Hash Set
    22.     Tree Set
    23.     Set
    24.     List
    25.     Map
    26.     Itterator
    27.     Enumeration
    28.     Comparator
    29.     Comparable
    30.     Auto Boxing and Un Boxing
    31.     Generics
    32.     JDBC Drivers
    33.     Statement
    34.     Prepared Statement
    35.     Callable Statement
    36.     ResultSet
    37.     Stub and Skelton
    38.     Marshalling and UnMarshalling
    39.     Sterilization
    40.     Synchronization
    41.     Thread
    42.     Servlet Life Cycle
    43.     Generic Servlet
    44.     HttpServlet
    45.     RequestDispacher
    46.     Forward
    47.     Redirect
    48.     ServletContext
    49.     ServletConfig
    50.     Filter
    51.     Throttle Filter
    52.     GZip Filter
    53.     Session Handling
    54.     Jsp Life Cycle
    55.     JSP Action tags
    56.     JSP Include Directives
    57.     JSP: plug-in
    58.     MVC Pattern
    59.     Implementation of struts using mvc with flow
    60.     Hibernate
    61.     EJB
    62.     Session Bean
    63.     Entity Bean
    64.     Inner Join
    65.     Outer Join
    66.     Left outer Join
    67.     Right Outer Join
    68.     Stored Procedure and how to call in java
    Thanks in advance,
    Regards,
    Saravanan.K

    Note: This thread was originally posted in the [CLDC and MIDP|http://forums.sun.com/forum.jspa?forumID=76] forum, but moved to this forum for closer topic alignment.
    To the Original Poster: the forum does not function as your personal homework solving process. If you have specific questions about these subjects that's fine.
    Meanwhile I suggest you read [The Java Tutorials|http://java.sun.com/docs/books/tutorial/]
    Edited by: dcminter on 08-Sep-2009 15:02

  • Please help me un-drop this float!

    This newbie is sure it's something simple. The template for
    the home page that's still very much under construction came from
    DW CS3. All I wanted to do is to swap the order of the #menu div
    with the #mainContent div, so the flow of html is: the header
    <h1>, followed by the #mainContent div, followed by the #menu
    div. I want the #menu div to float on the left, and the
    #mainContent div to float right. Before I swapped these two divs,
    they floated correctly. After I swapped them, the #menu div drops
    down. I tried tweaking the sizes of both divs, to no effect. I
    added the float: left and float:right attributes, no no effect. I
    read the chapter on floating divs again, and sorry to report that I
    still can't make that dropped #menu float get up there to it's
    correct position. I'm sure it's something simple. Please help!
    You may see the page at:
    http://www.freywine.com/NewSiteExamples/index.html

    "brainfillet" <[email protected]> wrote in
    message
    news:g8pupd$lks$[email protected]..
    > This newbie is sure it's something simple. The template
    for the home page
    > that's still very much under construction came from DW
    CS3. All I wanted
    > to do
    > is to swap the order of the #menu div with the
    #mainContent div, so the
    > flow of
    > html is: the header <h1>, followed by the
    #mainContent div, followed by
    > the
    > #menu div. I want the #menu div to float on the left,
    and the
    > #mainContent div
    > to float right. Before I swapped these two divs, they
    floated correctly.
    > After I swapped them, the #menu div drops down. I tried
    tweaking the
    > sizes of
    > both divs, to no effect. I added the float: left and
    float:right
    > attributes,
    > no no effect. I read the chapter on floating divs again,
    and sorry to
    > report
    > that I still can't make that dropped #menu float get up
    there to it's
    > correct
    > position. I'm sure it's something simple. Please help!
    >
    > You may see the page at:
    >
    http://www.freywine.com/NewSiteExamples/index.html
    Replace the margin-left declaration in #mainContent with a
    width declaration
    (width:570px should do it).
    Thierry
    Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    http://developer.yahoo.com/
    helps you build applications and mashups

  • HT1800 How can I add a Epson Stylus SX445w to my mac Book Pro this is the second one I've tried and failing miserably...it should be so simple...spoken to the help line at Epson and they say it's down to Apple !! Somebody please help me

    How can I add a Epson Stylus SX445w to my Mac Book Pro
    This is the second one I've tried and failing miserably...it should be so simple...I've installed poken to the help line at Epson and they say it's down to Apple !! Somebody please help me

    Yes I did everything that I was instructed to do!
    Cheers
    Joyce

Maybe you are looking for

  • Link to excel documents

    is it possible to have a JButton which when pressed by the user opens an excel document how can i do this

  • Unable to Import Unicode (csv) file to BlackBerry Bold 9700

    Hi all I'm facing some problems with my new BlackBerry Bold 9700. I have Nokia mobile, I exported my contacts using PC-Suite 7. The exported file includes Arabic characters, so the charset used was in Unicode. I've changed the heading for important f

  • [CS4/5][JS] Script causes InDesign to crash

    Hello, I'm having a bit of an issue with some InDesign scripting i'm working on, and wonder if anyone else has had the same issue. I have a script that uses app.dialog to prompt for user information.  It then takes the result of that dialog, and uses

  • Edited images not updating...

    I went through every slide image and removed some errant marks, using the :Edit with..." function in Captivate and when I go back into Captivate, the image hasn't changed, so I close the file, reopen it, and it still doesn't update the image. I also

  • Help - I am one Angry Bird!!

    Good, glad that got your attention! I am on my 3rd reconditioned 3GS in 7 weeks due to various issues - the latest phone was having trouble synching and so I set up a new user in my windows vista - I then was advised to move my music files from the c