Recommended Posts

Originally posted by @ce

Im not too sure if this was asked ananswered yet but since I dont feel like reading all the pages I will ask anyways.

Winamp Skin? or suggestions for a skin that will match?

well id suggest some of the 'BLackcomb' or 'Longhorn' skins, as its the same type of blue methinks as most of them...

hi the new active desktop is really nice :)

good work

ok 2 things eheh :

i have the .html file as my wallpaper, but the links arent working...

also there is a very slight mismatch of the 'up' and 'over' states of the My Documents button in the flash....

apart from that its lookin brilliant! :)

have u any idea why my links arent working?

For some reason my copy of the theme seems to still have some of the bugs it had before.. BTW.. as I said last night the links are off slightly from the desktop background... Plus the links do not work all the time( not sure why) and when they do work it loads it as the background...

The theme has alot of improvements! I like it alot... Some how I think the problems are the result of my windows xp or an older version of styles xp which version are you using?

Suggestion: the roll over on the start menu overlaps the yellow.. it kinda makes it look like a mistake.. Can It be fixed?

And on the left side tool bar in a folder where it tells u the specs.. May I suggest changing the colour? it kinda blends with the bar...

Thats it for now.

Thx,

Thantos

Ok I've adjusted the desktop to my size (1024 x 768) and with alot of work i have adjusted the size of the flash bar and moved it so that is it is synchronized with the background.. however now when I try to test the buttons it says something cannot locate pls check the link... Wht I would like to know is how can I edit the links on the swf file??

BTW I have Swish 2.0 and Macromedia Flash MX 6.0

Any help would be appreciated :)

OSiris needs to post the .fla then we can edit the link can you send me the 1024x768 file I can't see the text when it is at 1280 x1024. THere is a program that decodes swf file but i can't remember what it is called.

P.S. this is my favorite style and i love it woo hoo

lol damn you noticed the my documents thing lol.

Okay now as for the flash, just import the .swf file, with swish just goto import and your all set.

Now, I need to talk to K420 he sounds like hes onto somethign with those linlks.

Originally posted by k420

ok so for the links to be fixed on flash the on release get url command in flash must be pointed to C:WINDOWSexplorer.exe for eample.

Yeah or C:WINDOWSSystem32rundll32.exe shell32.exe,* (where * is the rest of the command). However that is basing it on the user having that exact Windows directory. For instance mine is E:WINDOWS (don't ask, long story).

Osiris, this is what I posted earlier, and what k420 is referring to (I think lol).

Originally posted by jesterzwild

Took some searching but here are the shortcuts to get to My Computer and Control Panel. These are strictly the commands you would enter if you created a shortcut to these, but I assume you could use them still (not sure how you are doing this in Flash). You should be able to use the commands by themselves but if not try adding this prefix: "%windir%" or "%windir%System32".

My Computer:

Explorer ::{20D04FE0-3AEA-1069-A2D8-08002B30309D}

Network Neighborhood:

Explorer ::{208D2C60-3AEA-1069-A2D7-08002B30309D}

Recycle Bin:

Explorer ::{645FF040-5081-101B-9F08-00AA002F954E}

Control Panel:

Explorer ::{20D04FE0-3AEA-1069-A2D8-08002B30309D}::{21EC2020-3AEA-1069-A2DD-08002B30309D}

rundll32.exe shell32.dll,Control_RunDLL

Those numbers aren't links they are hexidecimal (or something like that) strings, you find them in the registry. I don't believe (but don't exlude it as a possibility) that those by themselves will link to the destination (my computer etc). the two possibilities I see are either to continue and explore to find a generic address to those locations or to use html (it can be easily edited) and use flash or something else for on mouse and click effects.

They are not links, but instead are the addresses of those folders. As far as I know they are accurate and I have gotten them to work in the Run dialog box and by using a Shortcut. However they will not work as links or as something typed into the Address field in Windows Explorer.

The problem with using them as links is that you are actually executing an .exe file (Explorer.exe and rundll32.exe with shell32.exe) instead of navigating to a destination folder.

I had used them in Visual Basic and C++ programming and offered them as a possible method if possible. Hmm... just had a thought, can you include something like VBScript into a Flash file? or does Flash have its own scripting language? or does it have one at all?

Originally posted by jesterzwild

They are not links, but instead are the addresses of those folders. As far as I know they are accurate and I have gotten them to work in the Run dialog box and by using a Shortcut. However they will not work as links or as something typed into the Address field in Windows Explorer.

The problem with using them as links is that you are actually executing an .exe file (Explorer.exe and rundll32.exe with shell32.exe) instead of navigating to a destination folder.

I had used them in Visual Basic and C++ programming and offered them as a possible method if possible. Hmm... just had a thought, can you include something like VBScript into a Flash file? or does Flash have its own scripting language? or does it have one at all?

Flash has its own scripting language.

Originally posted by codyg11

Flash has its own scripting language.

Hmm, I will have to find out if there is an equivalent command/procedure as there is in the languages I know to be able to do this.

The VB procedure would be as follows for the Control Panel:

Call Shell("rundll32.exe shell32.dll,Control_RunDLL", vbNormalFocus)

Does anyone know of something similiar in Flash? or is this impossible?

Update:

I think I may have found a solution. In Flash there is something called the fscommand. From what I've gathered the use goes as follows,

fscommand (filename)

So maybe something like (for the Control Panel) this would work,

fscommand (C:WINDOWSSystem32rundll32.exe shell32.dll,Control_RunDLL)

I am going to keep researching this, hopefully this will work and Osiris can get it working!

The script in Flash is called "ActionScript."

Yes, there is something similar to the call function in VB, but I am not sure if you call a file on the hard drive with it.

You have a "call" function in Flash MX. The syntax is as follows:

on (release) {

call();

}

You also have a "call function" where you can specify and object, function, and its parameters:

From the Reference in Flash MX

allows you to use parameter fields to call a user-defined function in normal mode in the Actions panel.

Unfortunately, I don't think that this scripting language will let you work with outside files. Please correct me if I am wrong.

Edit: This is the definition of the "fscommand" function, according to the ActionScript dictionary in Flash Help:

Action; allows the Flash movie to communicate with either the Flash Player, or the program hosting the Flash Player, such as a Web browser. You can also use the fscommand action to pass messages to Macromedia Director, or to Visual Basic, Visual C++, and other programs that can host ActiveX controls.

I think this would be the syntax:

on(release){

fscommand("command" , "parameters")

}

Check this tutorial out, http://www.actionscripts.org/tutorials/beg...les/index.shtml, I think it may help. The only bad part is that is uses two different procedures for 9x/ME and NT/2K/XP, and apparently uses the "DOS" or Command Prompt.

I think we may overwhelm Osiris with all this information lol :D

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • I have a Motorola, one of the lower end ones, it works fine. It is possible to get rid of the Gemini app and also to disable googles assistant , but A.i is still apps. I try to avoid all LLM A.I, is i can, I use no Ai duck duck go.
    • Free Software Foundation Europe pushes EU to force Google to allow AI uninstalls on Android by Paul Hill Credit: Pexels Users should be able to fully uninstall AI-based features from Android devices and be able to access interoperability functions, free from Google’s verification requirements, the European Commission has heard as part of an Android interoperability consultation under the Digital Markets Act. These measures were proposed by the Free Software Foundation Europe (FSFE) last week when it submitted its documentation. The FSFE noted that Google had started silently installing AI models without telling users. It noted that the EU’s DMA requires companies like Google to allow users to uninstall pre-loaded software from their devices, but in the case of the AI models Google is installing, they reinstall if you delete them, contravening the DMA. To get Google back under control, the FSFE has told the European Commission that there needs to be improvements within the Android Open Source Project (AOSP). First, it said that users should be able to fully remove pre-loaded AI components from their devices, with companies being prohibited from silently reinstalling or reactivating them. Second, access to Android interoperability features should not be contingent on registration, authorization, or contractual relationships with Google. This pertains to Google’s attempt to force developers to register with Google, even to publish apps to alternative app stores like F-Droid. Discussing its submission, Lucas Lasota, FSFE Legal Programme Manager, said: Google is planning to roll out its Android Developer Certification in September 2026. This will force every Android app developer to register with Google before their software can be installed on certified Android devices, but it should affect those who have removed Google Apps from their device. The program is controversial because it entails the signing of contracts and payment of account fees to Google, as well as the handing over of the identities of developers. It said: The FSFE said that if the Commission’s draft measures remain unchanged, then Google will be allowed to make developers verify their identity. The FSFE believes that asking developers to register is contrary to the text and spirit of the law. In summary, the FSFE has told the Commission that no developer should need a Google account, a Play Store presence, or any agreement with Google to access Android’s interoperability features.
  • Recent Achievements

    • Conversation Starter
      sumytbe earned a badge
      Conversation Starter
    • One Year In
      B4dM1k3 earned a badge
      One Year In
    • One Year In
      DarkWun earned a badge
      One Year In
    • Dedicated
      Almohandis earned a badge
      Dedicated
    • Dedicated
      JuvenileDelinquent earned a badge
      Dedicated
  • Popular Contributors

    1. 1
      +primortal
      519
    2. 2
      +Edouard
      189
    3. 3
      PsYcHoKiLLa
      87
    4. 4
      Michael Scrip
      81
    5. 5
      Steven P.
      72
  • Tell a friend

    Love Neowin? Tell a friend!