Flex Regex Help

Hi there,
I have a regular expression that is used to validate names in my application. It's intended to only allow alphanumeric names and spaces. My trouble started when I tried to modify it to also accept other unicode characters (umlauts and whatnot) On the java side of my app the following regex works great:
"^(\\p{L}+\\p{M}*|\\d+)+\\s*((\\s+\\p{L}+\\p{M}*)*|(\\s+\\d+))*$"
But due to, I'm guessing, lack of support for \p in AS3's regex engine this doesn't work. Does anyone know how to modify this regular expression to allow flex to recognize valid unicode characters?
Here's one that I also thought would work but didn't maybe this will be helpful as a starting point.
"^(\\w+|\\d+|[\\x00-\\x80]+)+\\s*((\\s+\\w+)*|(\\s+\\d+)|(\\s+[\\x00-\\x80]+)*)*$"
Thanks in advance for any help.

http://examples.adobe.com/flex3/componentexplorer/explorer.html
http://examples.adobe.com/flex3/consulting/styleexplorer/Flex3StyleExplorer.html#

Similar Messages

  • Is there an emailing function I can use in Flex? Help this poor noob.

    My boss just gave me a Flex project that displays a database worth of data in the browser. After making a selection (a selection counts as picking any number of columns or rows), a user can right click on the table where the selection was made and click the "Email Selected" menu option on the right click menu. This has all been done for me.
    My job is to take all the selected rows (irrespective of what columns have been selected) and take their "E-mail" field (i.e.,  the address that is in the column called "Email") and send an email to all these addresses (populate the BCC field with the email addresses), I guess in their default email client. Right now all that happens is a pop up comes up (similar to the JavaScript Alert) that says "Lets email these guys!" and I am supposed to make it a mailto popup. Any ideas? I am a complete novice in every respect to Flex and Flash programming, so saying I am in over my head right now is an understatement.
    I would really, really, really appreciate any help with this.
    (If you need more info on what it is that I am doing, please don't hesistate to ask for a clarification)
    EDIT #1: After some researching it turns out I am working with a datagrid and I just tried using the selectedIndex property of the datagrid that I am working off, but it only returns the row of the first selected row of the multirow selection. How would I know the row number of the first and last row selected?

    There is a tutorial here on using APA format with Microsoft Word on a Mac:
    http://www.youtube.com/watch?v=IAhHWNcU3vM

  • Flex 3 :Help needed in implementing View States

    Hi 
    I am new to Flex , i am trying to understand View States , tried for one hour but got confused .
    (Basically by seeing the examples i understood the concept , but failed to implement ) 
    Please help .
    Assume my requirement is at the load of the page , i want to show an Login Button and a Chnage State Button (common button) only .and when the Change State button is clicked on ,i want to show the Register Button .
    So for this i made two Forms , and a common button .
           <mx:Form id="RegForm">
                <mx:Button label="RegFormButton" id="RegFormButton"/>
            </mx:Form>
            <mx:Form id="loginForm">
                        <mx:Button label="LoginButton" id="loginButton"/>
            </mx:Form>
    <!-- A common button for both the States-->
      <mx:Button label="Change State"
                  click=""/>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" currentState="Register">
    <mx:states>
    <mx:State name="Register">         
    <mx:SetProperty   target="RegForm"   value="Register"/>
    </mx:State>
    <mx:State name="loginForm">
    <mx:SetProperty   target="loginForm"   value="Login"/>
    </mx:State>
    </mx:states>
    ( I think some how i can write the Logic to chnage to the current state to loginForm when user clicks with some inline code , but please tell me At the start of the page please tell me why I am not able to show the Register.

    sorry for posting a dumb question .
    I realized my mistake .

  • [regex help]Find EXACT characters in a String.

    Ok, i got this so far ...
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    public class Testing2 {
        public static void main(String[] args) {
            Pattern p = Pattern.compile("[wati]");
            String text = "water";
            Matcher m = p.matcher(text);
            if (m.find()) {
                System.out.print("Found !");
    }With that code i got a match, but i ONLY want to find a match if the String matches the EXACTS characters in the Pattern ...
    in this case i got, 'w' 'a' 't' 'i', 'w' 'a' 't', are in water, but 'i' NOT, so i don't want to have a match !
    i don't know how to acomplish this :(
    hope you can help me, thanks in advance :D

    Username7260 wrote:
    Ok, i got this so far ...
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    public class Testing2 {
    public static void main(String[] args) {
    Pattern p = Pattern.compile("[wati]");
    String text = "water";
    Matcher m = p.matcher(text);
    if (m.find()) {
    System.out.print("Found !");
    }With that code i got a match, but i ONLY want to find a match if the String matches the EXACTS characters in the Pattern ...
    in this case i got, 'w' 'a' 't' 'i', 'w' 'a' 't', are in water, but 'i' NOT, so i don't want to have a match !
    i don't know how to acomplish this :(AFAIK there's no syntax in regular expressions to accomplish this. Try turning your string into a character array, sorting it, and then do a simple comparison.

  • CF 9.01 Upgrade breaks Flex Gateway - Help!!!!

    I have an AIR app which is using DataServicesMessaging with subtopics enabled.  I can create the Consumer in AIR but when I subscribe, I get the following error:
    "Error","cfthread-0","08/31/10","21:03:35",,"CATALOG_ATTRIBUTES_831AE0FE-B7D2-90A5-87AD-CA C5E01116D9: Event handler exception."
    flex.messaging.MessageException: Event handler exception.
    at coldfusion.flex.CFEventGatewayAdapter.allowSend(CFEventGatewayAdapter.java:376)
    at flex.messaging.services.messaging.SubscriptionManager.addSubtopicSubscribers(Subscription Manager.java:330)
    at flex.messaging.services.messaging.SubscriptionManager.addSubtopicSubscribers(Subscription Manager.java:311)
    at flex.messaging.services.messaging.SubscriptionManager.getSubscriberIds(SubscriptionManage r.java:264)
    at flex.messaging.services.MessageService.pushMessageToClients(MessageService.java:495)
    at coldfusion.flex.CFEventGatewayAdapter.send(CFEventGatewayAdapter.java:250)
    at coldfusion.eventgateway.flex.FlexMessagingGateway.outgoingMessage(FlexMessagingGateway.ja va:204)
    at coldfusion.runtime.CFPage.SendGatewayMessage(CFPage.java:269)
    at cfCatalogService2ecfc315059253$func_CFFUNCCFTHREAD_CFCATALOGSERVICE2ECFC3150592531.runFun ction(C:\inetpub\wwwroot\staging9sites\staging9si\com\pmdm\suppliers\services\CatalogServi ce.cfc:110)
    at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472)
    at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368)
    at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55)
    at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321)
    at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220)
    at coldfusion.runtime.UDFMethod.invokeCFThread(UDFMethod.java:201)
    at coldfusion.thread.Task.invokeFunction(Task.java:274)
    at coldfusion.thread.Task.run(Task.java:140)
    at coldfusion.scheduling.ThreadPool.run(ThreadPool.java:201)
    at coldfusion.scheduling.WorkerThread.run(WorkerThread.java:71)

    Rakshith,
    Thanks for your help!  Here's what I've got in my messaging-config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <service id="message-service"
        class="flex.messaging.services.MessageService"
        messageTypes="flex.messaging.messages.AsyncMessage">
        <adapters>
            <adapter-definition id="cfgateway" class="coldfusion.flex.CFEventGatewayAdapter" default="true" />
            <adapter-definition id="actionscript" class="flex.messaging.services.messaging.adapters.ActionScriptAdapter"/>
            <adapter-definition id="jms" class="flex.messaging.services.messaging.adapters.JMSAdapter"/>
        </adapters>
        <!-- ======================================== -->
        <!--  ColdFusion Messaging Gateway            -->
        <!-- ======================================== -->
        <destination id="ColdFusionGateway">
            <adapter ref="cfgateway" />
            <properties>
                <!--
                    Star ('*') means gatewayid is found in the 'gatewayid' message header.
                    To restrict this destination to a specific gateway, enter its ID here
                -->
                <gatewayid>PMSIMessages</gatewayid>
    <server>
    <durable>false</durable>
    <allow-subtopics>true</allow-subtopics>
    </server>
                <!--
                    If ColdFusion is running on a different host, enter that here.
                    Default is to expect ColdFusion and Flex to share the same web application.
    You must enter 'localhost' if CF and Flex are not in the same web app.
                <gatewayhost>10.1.1.1</gatewayhost>
                -->
                <!--
                    List the IP addresses of CF machines allowed to send messages to this destination
                    If not set, the default is to allow only this computer to connect.
                <allowedIPs>10.1.1.1,10.2.2.2</allowedIPs>
                -->
                <!--
                    Credentials to pass along in the headers as CFUsername/CFPassword.
                    It is generally better to use setRemoteCredentials() API on client.
                <remote-username></remote-username>
                <remote-password></remote-password>
                -->
                <!--
                    You can add general Flex Messaging network and server properties here.
                 -->
            </properties>
    <!-- You should use the ColdFusion specific channels -->
            <channels>
                <channel ref="cf-polling-amf"/>
            </channels>
        </destination>
        <destination id="clientNotifierGateway">
        <adapter ref="actionscript"/>
        <channels>
        <channel ref="java-amf"/>
        </channels>
         </destination>
    </service>
    Here's my gateway CFC:
    <cfcomponent output="false">
       <cffunction name="onIncomingMessage" access="remote" returntype="any">
             <cfargument name="event" type="struct" required="true"/>
    <cfscript>
          x = structNew();
          x['body'] = event.data;
          x['destination'] = "ColdFusionGateway";
          x['headers'] = structNew();
          x.headers['username'] = "System";
          x.headers['DSSubtopic'] = event.data.headers.DSSubtopic;
          x.lowercasekeys = "yes";
          </cfscript>
      <cfreturn x/>
    </cffunction>
    <cffunction name="allowSend" access="public" returntype="boolean">
    <cfargument name="subtopic" type="any" required="true"/>
    <cfreturn true/>
    </cffunction>
    <cffunction name="allowSubscribe" access="public" returntype="boolean">
    <cfargument name="subtopic" type="any" required="true"/>
    <cfreturn true/>
    </cffunction>
    </cfcomponent>
    Jeff

  • Flex Project Help

    Ok on my flex app I have a place where they create a new
    client with session's, and each client has the ability to buy
    different add ons. I'm using a repeater to pull the add ons from
    the database then when checked, and submitted it will Insert the
    information back to the database. What I have, so far is when you
    click the submit button I get no errors, but it doesn't submit
    anything. My <cfmail looks like this.
    INSERT INTO
    glb_order_details
    (sessions,order_id,hosting_notification,product_id)
    SELECT '1',407,1, id
    FROM glb_products
    WHERE id IN(0)
    As you can see I'm trying to pull the product id from
    glb_products, but its choking on that. Here is my cfc query.
    <cffunction name="NewSessionTotal" access="remote"
    returntype="void">
    <cfargument name="sessions" default="" type="String"
    required="no">
    <cfargument name="order_id" default="" required="no">
    <cfargument name="hosting" default="" required="no">
    <cfargument name="product_idlist" default=""
    required="no">
    <cfquery name="SessionTotal" datasource="omnitrac">
    INSERT INTO
    glb_order_details
    (sessions,order_id,hosting_notification,product_id)
    SELECT
    '#arguments.sessions#',#arguments.order_id#,#IIF(arguments.hosting,DE("1"),DE("0"))#,
    id
    FROM glb_products
    WHERE id IN(#ListAppend(arguments.product_idlist,0)#)
    </cfquery>
    </cffunction>
    And here is my flex app code.
    var SelectedSalesProducts:Array=new Array();
    var SelectedSalesProductslist:String="";
    for (var i:int = 0; i < gsalesproducts.length; i++){
    if(fff0
    .selected){
    SelectedSalesProducts.push(r0.dataProvider.getItemAt(i).id);
    this.dataManager.NewSessionTotal(this.nsessiontotal.text,order_id,hosting.selected,Select edSalesProductslist);
    I know its the product_id code that cause everything to choke
    up, but I been working on this for 4 days and cannot find a
    solutions. Any help would be great.

    I found what was wrong. Here, is the fix :) in the flex app I
    needed to add this line
    SelectedSalesProductslist=SelectedSalesProducts.join(",");
    I forgot to join my string, and array. Also the biggest thing
    I missed was on this line
    SelectedSalesProducts.push(r0.dataProvider.getItemAt(i).id);
    Instead of id it actually needed to be product_id

  • Need flex time help, lots of songs, lots of BPM's multiple tempos

    Newbie here, trying to finally make the switch from Pro Tolls to Logic and flex time really sold me but I'm having some growing pains that I need to speed up for my current project.
    I have about 20 songs that I need to:
    first, find the bpm for each (quickly)
    second, be able to mark them in a way that the bpm for each song would change to match the tempo track (which will fluctuate through out the editing process)
    third, some how still have control of the anchor point in flex time which seems to get locked
    In the end I am trying to create a remix of multiple songs that start off with different bpm's and fluctuating tempo.
    I am able to do most of this but I think I am missing some steps, or perhaps the order of steps, that would make this process go much faster. I have worked other programs such as Ableton Live and elastic time in Pro Tools and at times it seems I can handle whole songs better in those programs than in Logic but I'm sure it more user error than the actual program.
    I welcome any and all suggestions. Thanks.

    Received this advice and responded on another forum but still need help.
    Thanks for the response!
    Had a few problems trying your suggestions.
    *"Finding BPM: select the audio region and choose from the local Arrange area menu: Audio > Detect Tempo."*
    Since it is a whole song and not just a part, such as drums, with well defined transients, it either can't detect the tempo or when it does it is wrong.
    *"Make it follow the tempo track: Use Flex Time (in the track parameters, choose a Flex mode). "*
    This would be fine if I didn't have to redefine all the transient markers as correct flex markers. Since Flex Time has problems defining the correct transient markers for complete songs it can be very time consuming.
    Maybe I'm still missing something?
    *"Third: what anchor? Do you mean the transient? Or the flex markers? You can move the transients in the Sample editor, and the Flex markers right on the track in Flex view (Click the Flex button in your toolbar)."*
    The audio region anchor in the sample edit window, the orange arrow. I think this is some how turned off after turning on flex time and I am unable to move it. I use this to line up the first beat if there is something before the music starts, such as someone speaking or a lead in with a different tempo than the song tempo, that I would still like to keep. That way I can move the region in the arrange window and it will line up according to the first beat and not the beginning of the region. Am I making any sense?

  • In need of Regex help

    Hi,
    I've never used Regex before, and since I currently need to use it for a command-line parser in my server application I thought that I should try to see if anyone feels kind enough to take a couple of minutes and help me out (The regex tutorial is way complicated to get down and study for this tiny purpose).
    I need a regex that will be used with String.split to chop up an input string.
    If the string looks like: get 2.worm from bag
    the result should be:
    get
    2.worm
    from
    bag
    If the string looks like: cast "magic missile" 3.turtle
    the result should look like:
    cast
    magic missile
    3.turtle
    In short, it should never return any whitespace if it is not delimitered with ":s.
    Does it make any sense?
    Grateful for any help I can get.
    Sincerely
    /Viktor Klang

    Try this:
    import java.io.IOException;
    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    public class Parser {     
         private static String REGEX          = "([^\\s\"]+)|(\"[^\"]+\")";
        private static String INPUT          = "cast \"magic missile\" 3.turtle";
        private Pattern pattern;
        private Matcher matcher;
        private List lineParts = new LinkedList();
         public void processString(String input) {
            String token = null;
              Integer value = null;
            while ( matcher.find() ) {
                 token = input.substring( matcher.start(), matcher.end() );
                 token = token.replaceAll( "\"", "" );
                 lineParts.add( token );
         public void printResults() {
              Object token = null;
              Integer value = null;
              for (Iterator iter = lineParts.iterator(); iter.hasNext();) {
                   String element = (String) iter.next();
                   System.out.println( element );
         public void doIt() throws IOException {
              pattern = Pattern.compile( REGEX );          
              matcher = pattern.matcher( INPUT );
              processString( INPUT );
              printResults();
         public static void main(String[] args) throws IOException {
              Parser parser = new Parser();
              parser.doIt();
    }

  • VerifyError: Error #1053: Illegal override of z in mx.core.UIComponent in adobe flex  pease help me!

    While I tried to run already existing adobe AIR application in Flex Builder3 using  Flex SDK4. I got this error
    VerifyError: Error #1053: Illegal override of z in mx.core.UIComponent in adobe flex
    please anyone help me to solve it

    Try setting your target player for 10 in your compiler options. It might be compiling for flash player 9.

  • RegEx help requested.

    Hello, All.
    I am new to Java and I am not much familiar with Java regExp package as well. I am looking into it though. I have a specific question related to Reg Exp creation.
    We are in need of parsing a string like "XXX > 6 && YYY> 10" [Meaning variable XXX is greater than 6 and variable YYY is greater than 10 ] please note that this string/condition is dynamic and we need to support the normal operators and AND and OR operator for clubbing the condition.
    We are just thinking that whether regex will solve our problem? if so how it can be recommended used and what would be the sample of regex grammer?
    Thanks a lot in advance for your help.
    Best Regards,
    Prasanna.

    novice_questions wrote:
    Thanks for your reply. It may not have brackets in side the expression.
    LHS = will contain alphabets/digits and . [xxx.a1]
    RHS = [0-9]
    Operator can be [>,<]
    But this expression can be combined [AND,OR]
    like [exp]+[AND,OR][exp] ..some thing like this.
    Thanks,
    Prasanna.As already mentioned: you can't use regex for this. You either have to write your own parser or, if the expression stay as simple as you posted, use the existing script engine from Java 1.6.
    Here's a small demo:
    import javax.script.*;
    public class Test {
        public static void main(String[] args) throws Exception {
            ScriptEngine engine = new ScriptEngineManager().getEngineByName("js");
            String expression = "a > 2 && b < 2";
            engine.put("a", 3);
            engine.put("b", 1);
            System.out.println(engine.eval(expression));
    }

  • Regex help

    Hello i need some help with regex to do the following
    String to get:
    http://www.domain.com/images/pic.jpg
    String to search:
    <img src="
    http://www.domain.com/images/pic.jpg"
    width="202" height="62" />
    Using the following regex expression:
    <img src="([^>]*[^/]?)>
    So far when i run this it grabs the following:
    http://www.domain.com/images/pic.jpg"
    width="202" height="62" /
    Any help is very much appreciated.

    Mrs. Man wrote:
    > Hello i need some help with regex to do the following
    >
    > String to get:
    >
    http://www.domain.com/images/pic.jpg
    >
    > String to search:
    > <img src="
    http://www.domain.com/images/pic.jpg"
    width="202" height="62" />
    >
    > Using the following regex expression:
    > <img src="([^>]*[^/]?)>
    <img src="([^"]*)"
    Mack

  • Regex help wanted

    OK - I have a CSV file where each cell value is surrounded by double-quotes. What's more, the values can have commas in them (which are not escaped in anyway). The values can also be empty. So if I have the line
        "a,b","c","","d,e,f"I want to get 4 cells here:
        a,b
        c
        <the empty String>
        d,e,fand I'm trying to do this with java.util.regex - I've tried using (\".*\") - and then getting the groups returned (as the cells) but this matches no groups!
    Yes I've read the docs for Pattern, yes I've searched around (etc etc) and yes I've asked my colleagues; we're all useless at regex. Any help would be great!

    sabre150 - thanks, this is a great help. I've used groups before and, quite frankly, I'm not sure how because now they don't seem to be working how I thought they did:
                String line = "\"a,b\",\"c\",\"\",\"d,e,f\"";
                Pattern pattern = Pattern.compile("\"([^\"]*)\"");
                Matcher matcher = pattern.matcher(line);
                //This just returns 1 instead of the 4 I was expecting
                //group(1) is null
                int groupCount = m.groupCount();
                String[] cells = new String[groupCount];
                for (int i = 1; i <= groupCount; i++) {
                    cell[i-1] = m.group(i);
                }Is how I've been using the group facility on the Matcher. Trouble is, it doesn't work; evidently it doesn't behave as I was expecting it to! Could you elaborate on how it works and how (if at all possible) I can get the pattern to tell me how many cells it will find up front?

  • Regex help for URL rewriting

    I have the following regular expression for rewriting a URL (from existing code which I had to make some quick changes)
    String     regex = "s#(href|src|url|action|background)=(\"?)(/|" + "http:originalserver.com" +"/|http.?://" + "originalserver.com"+ ")([^\">]*?)(\"?)#$1=$2" + "myserver.com" + "/$4$5#gis";
    which does a URL rewrite and changes the URL from something like
    src="http://originalserver.com/images/someimage.gif" to
    src="http://myserver.com/proxy/images/someimage.gif"
    Now I want to change this regex to add some parameters to the URL. ie.
    case 1:
    href="http://www.originalserver.com/index.htm"
    to
    href="http://www.originalserver.com/index.htm?myParam1=myValue1
    case 2:
    href="http://www.originalserver.com/index.htm?originalP1=originalV1"
    to
    href="http://www.originalserver.com/index.htm?originalP1=originalV1&myParam1=myValue1"
    How can I change the regex to do this. As I have to do this fast and not an expert in Regex, any help would be appreciated.

    Hi,
    try this :
    - first set delimiter (? or &) to append your parameters :
    char delimiter = '\?';
    String myParams = "myParam1=myValue1";
    Pattern p = Pattern.compile( "\?" );
    Matcher m = p.matcher( url );
    if( m.matches() )
    delimiter = '\&'; // not sure ampersand needs to be "backslashed"
    - then use the modified regex
    String regex = "s#(href|src|url|action|background)=(\"?)(/|" + "http:originalserver.com" +"/|http.?://" + "originalserver.com"+ ")([^\">]*?)(\"?)#$1=$2" + "myserver.com" + "/$4$5" + delimiter + myParams + "#gis";

  • Regex help for SQL update statement

    Hello,
    need help from IPS regex guru - trying to build the signature to detect SQL update statement in HTTP requests.
    1) Am I correct with regex below specified as Request-Regex?
    [Uu][Pp][Dd][Aa][Tt][Ee]([%]20|[+])[\x20-\x7e]+[Ss][Ee][Tt]([%]20|[+])[\x20-\x7e]+=
    2) How do I make sure that it detects 'Update' in URI and Arguments only and not in the body on entire webserver response (currently looks like the case)?

    1) It looks correct to me
    2) Typically, the "service HTTP" engine is used to inspect requests and the "TCP string" engine is used to inspect HTTP server responses. If you only want to inspect requests, use the service HTTP engine.

  • Flex 15D Help reinstalling - Boot from USB

    I'm hoping someone can help.
    I have a Flex 15D (no optical drive) shipped with Windows 8.1
    At present it is completely unresponsive, taking anything up to 5 minutes to recognise that I have clicked anything, open the task manager, etc.  The task manager doesn't show anything heavy running, AV has scanned the PC and there are no infections. so I decided to go back to scratch and restart.
    OneKey simply tell me that the recovery partition has become corrupted and can't be used.
    I then bought a copy of Windows 8.1 from Microsoft, followed their instructions to create a bootable USB key and get windows 8.1 set up from the DVD onto it, but the Lenovo won't boot from USB.  I have been in the BIOS, boot from USB is set, but the boot options give me the OS booter only.
    Third attempt i went out and bought a USB DVD drive, connected that and tried to install a brand new Windows 8.1, but again the Lenovo won't acknowledge that there is a DVD drive attached (although it sees and uses it perfectly when it does finally boot into windows).
    Can anyone give me any help as to how I could reinstall the laptop?
    Thanks
    Moderator Note; subject edited

    Looks like you'll have to remove the hard drive, put it in a usb caddy and use another computer to get your data.

Maybe you are looking for

  • Can Album art be removed once it has been assigned?

    There is much art for many albums that I wish to replace, however I only seem to be able to assign a second set of art for a given song or album that is only displayed when i click the arrows above the art in the bottom left corner of Itunes. I was w

  • What is the use of Tcode : FBE1  ?

    Hi, What is the use of Tcode : FBE1  ? with example please. Regards.

  • Flash CS6 Text Disappearing

    I have been using Flash CS6 running on a Windows 7 work laptop since January. Not a single problem until last week. Say I have a text box inside a banner symbol. The text says "WELCOME".  Normally you click the symbol to edit in place, click the text

  • Deltas in generic extraction

    how can we set delta updates in generic extraction?can any one help in this

  • Can't change Desktop Picture

    Hey. I'm having difficulties changing desktop pictures after I reinstalled OS X. Somehow it's stuck at the one I set before I reinstalled (using the archive & install option). I ran my periodics and repaired permissions, but it still won't work. What